当要求不要ABC PDF抗锯齿图像时

时间:2018-12-14 11:32:08

标签: c# abcpdf

将QR码作为位图添加到ABCPDF文档中

Doc pdf = new Doc();
pdf.Rendering.AntiAliasImages = false;
...
pdf.AddImageBitmap(bmp, true);

当渲染为PDF文件时,图像将显示为抗锯齿:

enter image description here

直接打印到打印机时,QR码也可以:

enter image description here

我的问题是:我在做什么错了?

1 个答案:

答案 0 :(得分:1)

您需要根据图像的大小和分辨率来调整Doc.Rect的大小,例如

// Set PDF image size from image size and resolution (PDF coord space is 72dpi)
doc.Rect.Height = bmp.Height * 72 / bmp.VerticalResolution;
doc.Rect.Width = bmp.Width * 72 / bmp.HorizontalResolution;
doc.AddImageBitmap(bmp, true);

Rendering类属性仅在从PDF导出到图像时适用。)