I have problem when using ImageMagick COM object from my application. When it is called from my code it causes a CPU load of 100% during conversion. I use IM to convert TIFF:s to fax comliant TIFF:s.
The command I use is
Code: Select all
ImageMagickObject.MagickImage magick = new ImageMagickObject.MagickImage();
object[] conversionString = { inFileName, "-quiet", "-scale", size, "-density", "200", "-monochrome", "-compress", "fax", outFileName };
object result = magick.Convert(ref conversionString);
My questions is if there is any way to configure convert.exe not to use all CPU? I have no problem to wait for the conversion to take longer time. More important is for my voice application to have some CPU..