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.
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);
}