Quantcast
Channel: magick Discussions Rss Feed
Viewing all articles
Browse latest Browse all 3693

New Post: JPEG Progressive Format Option

$
0
0
Thank you very much for quick answer!

Are you sure this feature works as expected?
I'm setting Interlace property to NoInterlace, saving my Image and everything is fine. When I open this image again, I see the Interlace property becomes NoInterlace, but when I open this image in Photoshop I see that Format Option didn't change.
What's the magic here?

I attached my method below.
public static void ChangeJpegFormatOption(string sourcePath)
        {
            using (var magickImage = new MagickImage(sourcePath))
            {
                if (magickImage.Interlace == Interlace.Jpeg)
                {
                    magickImage.Interlace = Interlace.NoInterlace;
                    SaveImage(sourcePath, magickImage);
                }
            }
        }

Viewing all articles
Browse latest Browse all 3693

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>