Replies: 1 comment 1 reply
-
I see from your code, the big image, the decoded image block and the encoded bytes for the block in an unknown format. I'mnot sure how you intend to load the block image without decodeing those bytes. Can your |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello, I'm making a html rendering tool recently, and having need to combine few images together, currently I do it like this:
But as I measured, this is extremely memory inefficient, as it has 2 (3) copy of the image block, the raw image, the decoded image, and the big image.
I wonder is it possible to directly load the image onto the big image? Like once I get the image block then I load it onto the bigger image directly, no need for creating copies of the image block
Beta Was this translation helpful? Give feedback.
All reactions