我需要用Java打印图像。因此我实现print()
了Printable
接口方法。但是打印机始终只打印一些原始图像。如何使图像适合打印区域(A4),以便打印机能够打印整个图像,而不是整个图像?现在我的代码如下:
public int print(Graphics graphics, PageFormat pageFormat, int pageIndex) throws PrinterException {
if (pageIndex >= images.size()) {
return Printable.NO_SUCH_PAGE;
}
RenderedImage image;
Graphics2D graphics2D = (Graphics2D) graphics;
image = new NullOpImage((RenderedImage) images.get(pageIndex), null, null, OpImage.OP_IO_BOUND);
double x = (pageFormat.getImageableWidth() - image.getWidth())/2 + pageFormat.getImageableX();
double y = (pageFormat.getImageableHeight() - image.getHeight())/2 + pageFormat.getImageableY();
graphics2D.drawRenderedImage(image, AffineTransform.getTranslateInstance(x, y));
return PAGE_EXISTS;
}
您需要按比例缩小图像以适合可用区域。
private int currentPage = -1;
private Image cachedScaledImage = null;
public double getScaleFactor(int iMasterSize, int iTargetSize) {
double dScale = 1;
if (iMasterSize > iTargetSize) {
dScale = (double) iTargetSize / (double) iMasterSize;
} else {
dScale = (double) iTargetSize / (double) iMasterSize;
}
return dScale;
}
public double getScaleFactorToFit(BufferedImage img, Dimension size) {
double dScale = 1;
if (img != null) {
int imageWidth = img.getWidth();
int imageHeight = img.getHeight();
dScale = getScaleFactorToFit(new Dimension(imageWidth, imageHeight), size);
}
return dScale;
}
public double getScaleFactorToFit(Dimension original, Dimension toFit) {
double dScale = 1d;
if (original != null && toFit != null) {
double dScaleWidth = getScaleFactor(original.width, toFit.width);
double dScaleHeight = getScaleFactor(original.height, toFit.height);
dScale = Math.min(dScaleHeight, dScaleWidth);
}
return dScale;
}
public int print(Graphics graphics, PageFormat pageFormat, int pageIndex) throws PrinterException {
if (pageIndex >= images.size()) {
return Printable.NO_SUCH_PAGE;
}
RenderedImage image;
Graphics2D graphics2D = (Graphics2D) graphics;
int width = (int)Math.round(pageFormat.getImageableWidth());
int height = (int)Math.round(pageFormat.getImageableHeight());
if (currentPage != pageIndex || cachedScaledImage == null) {
currentPage = pageIndx;
image = new NullOpImage((RenderedImage) images.get(pageIndex), null, null, OpImage.OP_IO_BOUND);
BufferedImage imageCopy = new BufferedImage(image.getWidth(), image.getHeight(), BufferedImage.TYPE_INT_ARGB);
Graphics2D g2d = imageCopy.createGraphics();
g2d.drawImage(imageCopy, 0, 0, null);
g2d.dispose();
double scaleFactor = getScaleFactorToFit(new Dimension(image.getWidth(), image.getHeight()), new Dimension(width, height));
int imageWidth = (int)Math.round(image.getWidth() * scaleFactor);
int imageHeight = (int)Math.round(image.getHeight() * scaleFactor);
double x = ((pageFormat.getImageableWidth() - imageWidth) / 2) + pageFormat.getImageableX();
double y = ((pageFormat.getImageableHeight() - imageHeight) / 2) + pageFormat.getImageableY();
cachedScaledImage = imageCopy.getScaledInstance(imageWidth, imageHeight, Image.SCALE_SMOOTH);
}
graphics2D.drawRenderedImage(cachedScaledImage, AffineTransform.getTranslateInstance(x, y));
return PAGE_EXISTS;
}
有没有一种方法我可以在Java中操纵一个PrinterJob而不是实际打印到打印机上,这样我就可以获得每一页的图形对象?我尝试将PrintService设置为null,但Java不允许这样做。 这样,我就可以检索文档的准确打印预览,而不必在不同的上下文中从头重新构建PrinterJobs函数。 下面是我的程序中打印函数的代码: 你已经可以看到图形对象被记录了,这样我就可以在另一个组件中绘制它们了,
编辑:所以在一天的混乱之后。我的问题是spintf。我最初认为我的循环是错误的。
问题内容: 我在以下div中有一个背景图片,但是该图片被截断了: 有没有一种方法可以显示背景图像而不将其剪切掉? 问题答案: 您可以使用])属性来实现此目的,大多数浏览器现在都支持该属性。 缩放背景图像以适合div: 要缩放背景图像以覆盖整个div:
我使用PdfiumViewer来打印PDF文件: 在我的,,和事件中,我没有执行任何操作,只是对文件进行一些日志。 PDF文件已打印,但文档每页的左右边距都被剪掉了,因此我正在尝试将每个PDF文档页面与默认打印机中当前默认选择的纸张尺寸相匹配。我该怎么做?
大家好,我刚刚读完Android Studio中新打印系统的官方文档(https://developer.android.com/training/printing/photos.html)但我没能成功。我基本上复制粘贴了以下代码: 但是Android打印用户交互界面没有出现。 我的工作范围是设置打印机(在那里我将打印我的所有照片),一旦设置完成,我会给打印机打印位图。我将非常感谢所有回答我的人,
使用JasperReport生成图像,然后尝试在Zebra打印机GC420T上打印该图像。生成图像但不打印。我已经重新检查了连接和端口。我读过这个SO链接和校准一个,但没有工作。 代码: 我阅读了EPL 2手册,并将图像转换为二进制图形数据,以便立即打印。 代码: 在将图像转换成二进制图形数据后,它就不打印数据了。 如何让打印机打印图像?