我需要在打印机上打印图像和一些数据,在java(Swing)中,但都是徒劳的。我只能处理数据,但不能处理图像。我有一个abc.png文件和6个jTextBoxes,必须在打印机上打印该值。我正在使用FileWriter和PrinterJob类来实现该作业。数据和图像可以单独打印,但不能一起打印。有人可以给我一些建议。
感谢。
打印图像代码:
try {
PrintRequestAttributeSet pras = new HashPrintRequestAttributeSet();
pras.add(new Copies(1));
PrintService pss[] = PrintServiceLookup.lookupPrintServices(DocFlavor.INPUT_STREAM.GIF, pras);
if (pss.length == 0)
throw new RuntimeException("No printer services available.");
PrintService ps = pss[0];
System.out.println("Printing to " + ps);
DocPrintJob job = ps.createPrintJob();
FileInputStream fin = new FileInputStream("C://a.gif");
Doc doc = new SimpleDoc(fin, DocFlavor.INPUT_STREAM.GIF, null);
//Doc doc1=new SimpleDoc();
job.print(doc, pras);
//fin.close();
} catch (IOException ie) {
ie.printStackTrace();
} catch (PrintException pe) {
pe.printStackTrace();
}
打印文字代码:
只需在FileInputStream中传递硬盘上文件的位置。
答案 0 :(得分:1)
一种解决方案可能是创建包含原始图像和文本的第二个图像。
这样的事可能有用吗? (未经测试):
public Image addTextToImage(BufferedImage i, String[] text) {
final int VERTICLE_PADDING_PIXELS = 5;
final int LEFT_MARGIN_PIXELS = 5;
FontMetrics fm = i.createGraphics().getFontMetrics();
int width = i.getWidth();
int height = i.getHeight()
+ (text.length * (fm.getHeight() + VERTICLE_PADDING_PIXELS));
for (String s : text) {
width = Math.max(width, fm.stringWidth(s) + LEFT_MARGIN_PIXELS);
}
BufferedImage result = new BufferedImage(i.getHeight(), width, height);
Graphics2D g = result.createGraphics();
g.drawImage(i, 0, 0, null);
for (int x = 0; x < text.length; x++) {
g.drawString(text[x], LEFT_MARGIN_PIXELS, i.getHeight() + (x + 1) *VERTICLE_PADDING_PIXELS + x*fm.getHeight());
}
return result;
}