-
What are the differences between using .thumbnail and .resize? Does .thumbnail attempt to use the EXIF thumbnail if it exists and is large enough? Thanks |
Beta Was this translation helpful? Give feedback.
Answered by
dlemstra
Dec 21, 2020
Replies: 1 comment
-
You can find the answer to your first question here: https://imagemagick.org/Usage/resize/. The thumbail from the exif data will not be used. You could use |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
LeahPike
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can find the answer to your first question here: https://imagemagick.org/Usage/resize/. The thumbail from the exif data will not be used. You could use
ThumbnailLength
andThumbnailOffset
to create a thumbnail from theExifProfile
class yourself. I could probably add a method for that in the future.