将QR码作为位图添加到ABCPDF文档中
Doc pdf = new Doc();
pdf.Rendering.AntiAliasImages = false;
...
pdf.AddImageBitmap(bmp, true);
当渲染为PDF文件时,图像将显示为抗锯齿:
直接打印到打印机时,QR码也可以:
我的问题是:我在做什么错了?
答案 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导出到图像时适用。)