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

New Post: Magick.NET performance

$
0
0
Hi,

I'm evaluating Magick.NET to see if we can replace our current image manipulation tool, and I've noticed that Magick.NET seems to have poorer performance than our current tool. In one situation we are loading a TIFF, resizing it, and converting it to PNG. Is there anything we can do in terms of configuration (or code changes) to improve the performance of Magick.NET?

I have tried both the 32bit version and the 64bit version.
        MagickReadSettings settings = new MagickReadSettings
        {
            FrameIndex = 0
        };
        string filePath = "C:\\TwoPageTIFF.tif";
        MagickImage image = new MagickImage(filePath, settings);
        MagickGeometry geometry = new MagickGeometry(1000, 1332);
        image.Resize(geometry);

        image.Format = MagickFormat.Png;
        byte[] result = image.ToByteArray();
Thank you!

Viewing all articles
Browse latest Browse all 3693

Trending Articles



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