Resample questions
Posted: 2019-03-16T17:12:35-07:00
I am using Q16-AnyCPU version to resample a 24-bit TIFF image
The problem is that the output image is not 24-bit but 8-bit, and the loaded image is also 8-bit. What am I doing wrong?
That's the command I need to implement:
convert input.tif -units PixelsPerInch -filter Point-resample 600 -type TrueColor output.tif
Code: Select all
using (var image = new MagickImage(imageFileName))
{
image.Resample(new PointD(600));
image.Write(outputFile);
}
That's the command I need to implement:
convert input.tif -units PixelsPerInch -filter Point-resample 600 -type TrueColor output.tif