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

New Post: EPS to PNG conversion - Different than ImageMagick CLI

$
0
0
Actually I am not able to trace download link for release, so I mentioned Assembly version, assembly file version is "6.8.5.4". API I am using has MagickNET.Version property.

I should have mentioned commands in earlier post, sorry for that

convert -geometry 1024x768 -density 1024 "Sample.eps" -trim "L.png"

Following are statements I am executing, I have simplified it for you and applying density, trimming operation are configuration driven.
            using (MagickImage img = new MagickImage(sourcepath))
            {
                img.ImageType = type;
                if (sizeInRatio)
                {
                    img.Scale(new Percentage(width.Value), new Percentage(height.Value));
                }
                else
                {
                    img.Scale(width.Value, height.Value);
                }
                img.Write(destinationpath);
            }
            using (MagickImage img = new MagickImage(destinationpath))
            {                
                if (density > 0)
                {
                    img.Density = new MagickGeometry(density, 0);
                }
               if (trim)
               {
                     img.Trim();
               }
               img.Write(destinationpath);
            }

Viewing all articles
Browse latest Browse all 3693

Trending Articles



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