2

这似乎是转换位图像素格式的标准方法,但在转换为黑白格式时结果很差:

    // convert to black & white bitmap
    FormatConvertedBitmap monoBitmap = new FormatConvertedBitmap(bitmap, PixelFormats.BlackWhite, null, 0);

    // save black & white bitmap to file
    fileName = string.Format("{0}.bmp", data.SelectedProduct.Code);
    bitmapEncoder = new BmpBitmapEncoder();
    bitmapEncoder.Frames.Add(BitmapFrame.Create(monoBitmap));
    using (Stream stream = File.Create(fileName))
    {
        bitmapEncoder.Save(stream);
    }

生成的图像文件非常粗糙且像素化。我需要将它发送到行式打印机,所以我需要锋利的边缘。

转换前的原件看起来不错(它的 32BPP 颜色),如果我使用 IrfanView 之类的工具将原件手动转换为黑白,它的效果也比 .NET 所做的要好得多。

在 .NET 而不是 FormatConvertedBitmap 中是否有另一种选择?

4

1 回答 1

2

它正在使用PixelFormats.BlackWhite,它在生成的图像中仅使用黑色和白色,如果有较暗的像素包围着明亮的像素,这可能会使它看起来有颗粒感。如果您将图像转换为使用灰色阴影,我想效果会更好。为了做到这一点,您使用这一行代码而不是您发布的代码中的那一行:

FormatConvertedBitmap monoBitmap = new FormatConvertedBitmap(bitmap, PixelFormats.Gray32Float, null, 0);

这应该将图像转换为仅使用灰色阴影,因此不需要颜色来打印它。

让我知道这是否是您想要达到的效果。

PixelFormats您可以在此处找到有关课程的更多信息:http: //msdn.microsoft.com/en-us/library/system.windows.media.pixelformats.aspx

于 2012-05-02T07:00:02.447 回答