0

我正在开发一种使用佳能 selpy cp800 轻松进行图片打印的工具。使用以下方法打印图像:

Private Sub BtnPrintClick(sender As Object, e As System.EventArgs) Handles ptnPrint.Click
    If PrintDialog1.ShowDialog() = DialogResult.OK Then
        pdPrintImage.Print()
    End If
End Sub

Private Sub PdPrintImagePrintPage(sender As Object, e As System.Drawing.Printing.PrintPageEventArgs) Handles pdPrintImage.PrintPage
    e.Graphics.DrawImage(_dPictures(_sPictures(_iActiveImage)).Picture, e.Graphics.VisibleClipBounds)
End Sub

_dPictures(_sPictures(_iActiveImage)).Picture --> image 类型的对象

我没有对这张图片做任何事情。它仅使用 Image.FromFile() 方法加载。

在下图中,您可以看到我的问题。这是使用此方法打印的图像的扫描(顶部)和使用 windows 图片查看器打印的相同图像的扫描。你看,你看到的第一张图像背景和阴影中的色调错误。

在此处输入图像描述

有没有人想办法解决这个问题?

4

2 回答 2

1

如果这不是 Boo 提到的有点深度的问题,那么设置其中一个或两个可能会有所帮助

e.Graphics.InterpolationMode = Drawing2D.InterpolationMode.HighQualityBicubic
e.Graphics.SmoothingMode = Drawing2D.SmoothingMode.HighQuality

在执行 .DrawImage 之前。

于 2012-05-25T18:08:47.897 回答
-1

我取得的最佳质量如下: 1)我使用组件 iTextsharp 将图片放入 pdf。2)打印pdf

于 2015-03-04T09:57:35.630 回答