我在打印具有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));
}
}
答案 0 :(得分:0)
您可以使用iTextSharp等库吗?该库有许多不同的类,可以处理图像和字体。