我在打印具有 8 位 Alpha 通道的图像和文本时遇到了一些问题。
看起来大多数打印机驱动程序会错误地渲染 Alpha 通道,添加一些抖动模式而不是混合各个图层。
例如,这个问题末尾的代码会产生类似这样的内容(注意左侧方框中的抖动):Virtual PDF printer - Laser printer
到目前为止,只有 XPS 虚拟打印机可以正常工作。
为了避免这种情况,我一直在做的是在中间位图上打印,但是对于 1200 DPI 的标准 11x8.5'' 页面,仅用于存储该位图就需要大约 400 MB 的 RAM,我现在想知道哪个是打印此类对象的正确方法。
谢谢
using System;
using System.Drawing;
using System.Drawing.Drawing2D;
using System.Drawing.Printing;
using System.Windows.Forms;
class Program
{
static void Main(string[] args)
{
PrintDocument printDoc = new PrintDocument();
printDoc.PrintPage += new PrintPageEventHandler(printDoc_PrintPage);
PrintDialog print = new PrintDialog();
print.Document = printDoc;
if (print.ShowDialog() == DialogResult.OK)
printDoc.Print();
}
static void printDoc_PrintPage(object sender, PrintPageEventArgs e)
{
//draw directly on the print graphics
e.Graphics.TranslateTransform(50, 50);
drawStuff(e.Graphics);
//draw on an intermediate bitmap
e.Graphics.ResetTransform();
using (Bitmap bmp = new Bitmap((int)e.Graphics.DpiX, (int)e.Graphics.DpiY))
{
bmp.SetResolution(e.Graphics.DpiX, e.Graphics.DpiY);
using (Graphics g = Graphics.FromImage(bmp))
{
g.ScaleTransform(e.Graphics.DpiX / 100, e.Graphics.DpiY / 100);
drawStuff(g);
}
e.Graphics.DrawImageUnscaled(bmp, new Point(175, 50));
}
}
private static void drawStuff(Graphics graphics)
{
Brush b1 = new SolidBrush(Color.LightGray);
Brush b2 = new SolidBrush(Color.FromArgb(50, Color.Black));
graphics.FillRectangle(b1, new Rectangle(0, 0, 100, 100));
graphics.FillRectangle(b2, new Rectangle(25, 25, 50, 50));
}
}