Resize an image on the fly? #2351
Answered
by
br3aker
dave-yotta
asked this question in
Q&A
-
Looks like I'm looking for a way to resize a large image (to a much smaller image) keeping a smaller buffer, without any seeking. I could probably devise something that has a limited quality by skipping most of the pixels depending on the stride in the pixel format; would rather use a library to do this - is it something I can do with ImageSharp? |
Beta Was this translation helpful? Give feedback.
Answered by
br3aker
Feb 8, 2023
Replies: 1 comment 12 replies
-
If you are using JPEG images - yes, ImageSharp now supports really fast downscaled jpeg decoding with scalings 1/2, 1/4 and 1/8 from #2076. |
Beta Was this translation helpful? Give feedback.
12 replies
Answer selected by
dave-yotta
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
If you are using JPEG images - yes, ImageSharp now supports really fast downscaled jpeg decoding with scalings 1/2, 1/4 and 1/8 from #2076.