我正在尝试使用Magick.Net调整图像大小。但是我压缩的图像具有更大的尺寸和32的bitdepth,而原始图像的bitdepth为2.我想保留或减少bitdepth。 这是我的代码。
var imageMacig = new MagickImage(filePath);
//Percentage p = new Percentage(60);
//imageMacig.Threshold(p); // 60 is OK
imageMacig.VirtualPixelMethod = VirtualPixelMethod.Transparent;
imageMacig.Depth = 1;
imageMacig.FilterType = FilterType.Quadratic;
imageMacig.Transparent(MagickColor.FromRgb(0,0,0));
imageMacig.Format = MagickFormat.Png00;
imageMacig.Resize(newWidth, newHeight);
imageMacig.Write(targetPath);
imageMacig.Dispose();
originalBMP.Dispose();
答案 0 :(得分:3)
您要获得两种以上的颜色,因为您要调整图像大小。这将添加一个alpha通道,这将产生大量的半透明像素。如果要返回2种颜色,则应将图像的ColorType更改为BiLevel。将格式设置为MagickFormat.Png8将确保您的图像将被写为2位png。以下是如何做到这一点的示例:
using (var imageMagick = new MagickImage(filePath))
{
imageMagick.Transparent(MagickColor.FromRgb(0,0,0));
imageMagick.FilterType = FilterType.Quadratic;
imageMagick.Resize(newWidth, newHeight);
imageMagick.ColorType = ColorType.Bilevel;
imageMagick.Format = MagickFormat.Png8;
imageMagick.Write(targetPath);
}