我的C#应用程序中有一些奇怪的打印质量问题。我有一个XPS文件(它基本上只是一个1页图像,最初是扫描的黑白图像),我正在尝试通过C#应用程序打印到IBM InfoPrint大型机驱动程序。我已经打印到许多其他打印驱动程序,从来没有遇到过问题,但是这个驱动程序使用它创建的AFP文件给我带来了可怕的质量。如果我在Microsoft XPS查看器应用程序中打开相同的文件并打印到同一驱动程序,质量看起来很好。
尝试解决问题我尝试了3种或4种不同的C#应用程序打印方法。原始代码做了类似的事情(为了简洁起见):
System.Windows.Xps.XpsDocumentWriter writer = PrintQueue.CreateXpsDocumentWriter(mPrintQueue);
mCollator = writer.CreateVisualsCollator();
mCollator.BeginBatchWrite();
ContainerVisual v = getContainerVisual(xpsFilePath);
//tried all sorts of different options on the print ticket, no effect
mCollator.Write(v,mDefaultTicket);
那段代码(我已经被截断了)当然可能会有一些奇怪的问题,所以我尝试了一些更简单的东西:
LocalPrintServer localPrintServer = new LocalPrintServer();
PrintQueue defaultPrintQueue = LocalPrintServer.GetDefaultPrintQueue();
PrintSystemJobInfo xpsPrintJob = defaultPrintQueue.AddJob("title", xpsDocPath, false);
相同的结果。
我甚至尝试使用WCF打印对话框,质量相同(http://msdn.microsoft.com/en-us/library/ms742418.aspx)。
我尚未尝试的一个领域是使用旧式底层打印API,但我不确定为什么会有不同的行为。我有另一个选择,我的原始文档是PDF,我有一个很好的第三方库,可以让我成为一个EMF文件。但是,每次我尝试将该EMF文件流式传输到我的打印机时,都会出现乱码。
有关此质量丢失,如何修复或如何将EMF文件流式传输到打印驱动程序的任何想法,将非常感谢!
更新: 另一个说明。这个不错的示例应用程序:http://wrb.home.xs4all.nl/Articles_2010/Article_XPSViewer_01.htm经历了相同的质量损失。我现在还进行了测试,我直接打开PDF并将位图渲染到打印文档,结果图像的模糊度也相同。如果我在Acrobat中打开PDF并打印它们看起来很好。
答案 0 :(得分:1)
因此,要解决此问题,IBM Infoprint驱动程序(至少在此处使用的方式)似乎具有完全不同的质量,具体取决于您在C#中的打印方式。
我正在使用这个问题:
System.Windows.Documents.Serialization.Write(Visual, PrintTicket);
我完全改变了我的方法,完全删除了XPS,并获得了我的文档的emf(windows元文件)再现,然后使用windows print事件处理程序将该emf文件发送到Windows打印机:
using (PrintDocument pd = new PrintDocument())
{
pd.DocumentName = this.mJobName;
pd.PrinterSettings.PrinterName = this.mPrinterName;
pd.PrintController = new StandardPrintController();
pd.PrintPage += new PrintPageEventHandler(DoPrintPage);
pd.Print();
}
(我在这里显然省略了很多代码,但你可以找到如何相对容易地使用这种方法的例子)
在我的测试中,大多数打印驱动程序对这两种打印方法都同样满意,但IBM Infoprint驱动程序对质量非常敏感。一种可能的解释是,Infoprint打印机需要配置一个奇怪的固定DPI,它可能会做一个相对较差的转换工作。
编辑:请求了更详细的示例代码,所以在这里。请注意,获取EMF文件是此方法的预先要求。在这种情况下,我正在使用ABC PDF,它允许您通过相对简单的调用从PDF生成EMF文件。
class AbcPrintEmf
{
private Doc mDoc;
private string mJobName;
private string mPrinterName;
private string mTempFilePath;
private bool mRenderTextAsPolygon;
public AbcPdfPrinterApproach(Doc printMe, string jobName, string printerName, bool debug, string tempFilePath, bool renderTextAsPolygon)
{
mDoc = printMe;
mDoc.PageNumber = 1;
mJobName = jobName;
mPrinterName = printerName;
mRenderTextAsPolygon = renderTextAsPolygon;
if (debug)
mTempFilePath = tempFilePath;
}
public void print()
{
using (PrintDocument pd = new PrintDocument())
{
pd.DocumentName = this.mJobName;
pd.PrinterSettings.PrinterName = this.mPrinterName;
pd.PrintController = new StandardPrintController();
pd.PrintPage += new PrintPageEventHandler(DoPrintPage);
pd.Print();
}
}
private void DoPrintPage(object sender, PrintPageEventArgs e)
{
using (Graphics g = e.Graphics)
{
if (mDoc.PageCount == 0) return;
if (mDoc.Page == 0) return;
XRect cropBox = mDoc.CropBox;
double srcWidth = (cropBox.Width / 72) * 100;
double srcHeight = (cropBox.Height / 72) * 100;
double pageWidth = e.PageBounds.Width;
double pageHeight = e.PageBounds.Height;
double marginX = e.PageSettings.HardMarginX;
double marginY = e.PageSettings.HardMarginY;
double dstWidth = pageWidth - (marginX * 2);
double dstHeight = pageHeight - (marginY * 2);
// if source bigger than destination then scale
if ((srcWidth > dstWidth) || (srcHeight > dstHeight))
{
double sx = dstWidth / srcWidth;
double sy = dstHeight / srcHeight;
double s = Math.Min(sx, sy);
srcWidth *= s;
srcHeight *= s;
}
// now center
double x = (pageWidth - srcWidth) / 2;
double y = (pageHeight - srcHeight) / 2;
// save state
RectangleF theRect = new RectangleF((float)x, (float)y, (float)srcWidth, (float)srcHeight);
int theRez = e.PageSettings.PrinterResolution.X;
// draw content
mDoc.Rect.SetRect(cropBox);
mDoc.Rendering.DotsPerInch = theRez;
mDoc.Rendering.ColorSpace = "RGB";
mDoc.Rendering.BitsPerChannel = 8;
if (mRenderTextAsPolygon)
{
//i.e. render text as polygon (non default)
mDoc.SetInfo(0, "RenderTextAsText", "0");
}
byte[] theData = mDoc.Rendering.GetData(".emf");
if (mTempFilePath != null)
{
File.WriteAllBytes(mTempFilePath + @"\" + mDoc.PageNumber + ".emf", theData);
}
using (MemoryStream theStream = new MemoryStream(theData))
{
using (Metafile theEMF = new Metafile(theStream))
{
g.DrawImage(theEMF, theRect);
}
}
e.HasMorePages = mDoc.PageNumber < mDoc.PageCount;
if (!e.HasMorePages) return;
//increment to next page, corrupted PDF's have occasionally failed to increment
//which would otherwise put us in a spooling infinite loop, which is bad, so this check avoids it
int oldPageNumber = mDoc.PageNumber;
++mDoc.PageNumber;
int newPageNumber = mDoc.PageNumber;
if ((oldPageNumber + 1) != newPageNumber)
{
throw new Exception("PDF cannot be printed as it is corrupt, pageNumbers will not increment properly.");
}
}
}
}