How to save a JPG file like done with System.Drawing namespace? #2331
-
I cannot figure out how to save a byte[] representing an image to JPG format like done with System.Drawing namespace.
|
Beta Was this translation helpful? Give feedback.
Answered by
JimBobSquarePants
Jan 26, 2023
Replies: 1 comment 2 replies
-
You can’t compare the output of encoders like that especially lossy ones. Minute differences in color transformation can lead to differences and the order of segments within an image is not guaranteed as the specification does not require many to be so. Plus you have different quality defaults and metadata handling strategies. |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
ilCosmico
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can’t compare the output of encoders like that especially lossy ones. Minute differences in color transformation can lead to differences and the order of segments within an image is not guaranteed as the specification does not require many to be so. Plus you have different quality defaults and metadata handling strategies.