Help me with JPEG settings
Posted: 2013-02-27T06:03:25-07:00
I am using http://imagemagick.codeplex.com/ in my asp.net project.
I am resizing and saving JPEG images exported from Photoshop and upload them to a CDN after doing as follows:
testimage.Compression = CompressionType.JPEGCompression;
testimage.Filter = FilterType.LanczosFilter;
testimage.Quality = compressionLevel; // set to 85
testimage.Write(imagestream, "jpg");
I wanted to know what is the best settings to use for JPEG compression ,which filter I should use?
In general, When I export the JPEG from Photoshop with 80% quality, I get a lower quality compare to if I use imagemagick with 80% quality.
Can you help me with this. Thanks.
I am resizing and saving JPEG images exported from Photoshop and upload them to a CDN after doing as follows:
testimage.Compression = CompressionType.JPEGCompression;
testimage.Filter = FilterType.LanczosFilter;
testimage.Quality = compressionLevel; // set to 85
testimage.Write(imagestream, "jpg");
I wanted to know what is the best settings to use for JPEG compression ,which filter I should use?
In general, When I export the JPEG from Photoshop with 80% quality, I get a lower quality compare to if I use imagemagick with 80% quality.
Can you help me with this. Thanks.