将 JTextPane 的内容输出为图片

本文介绍了一个使用Java实现的截图工具类ImageOutput,该工具能够将JTextPane组件的内容按页面输出为JPG格式的图片文件。文章详细展示了如何通过Graphics2D进行绘制,并处理了分页逻辑,确保可以完整地输出长文档。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

import java.awt.image.BufferedImage; import java.io.File; import java.io.IOException; import java.util.logging.Level; import java.util.logging.Logger; import javax.imageio.ImageIO; import java.awt.Dimension; import java.awt.Graphics; import java.awt.Graphics2D; import javax.swing.JTextPane; import javax.swing.plaf.basic.BasicEditorPaneUI; /** * <p>ImageOutput.java</p> * <p>Created on May 14, 2011, 7:53:17 PM</p> * <p>Copyright (c) 2007-2011. The CUCKOO Workgroup, P.R.China</p> * @author Ren Jian * @version 4.1 */ class ImageOutput { private JTextPane panel; ImageOutput(JTextPane panel) { this.panel = panel; } void output(String outputFile) { int width = panel.getWidth(); int height = panel.getHeight(); int pageIndex = 1; boolean isContinue = true; while (isContinue) { try { BufferedImage image = new java.awt.image.BufferedImage(width, height, java.awt.image.BufferedImage.TYPE_INT_RGB); Graphics g = image.getGraphics(); g.setClip(0, 0, width, height); isContinue = paint(g, height, pageIndex); g.dispose(); ImageIO.write(image, "JPG", new File(outputFile)); pageIndex++; } catch (IOException ex) { Logger.getLogger(ImageOutput.class.getName()).log(Level.SEVERE, null, ex); } } } boolean paint(Graphics g, int height, int pageIndex) { Graphics2D g2d = (Graphics2D) g; Dimension d = ((BasicEditorPaneUI) panel.getUI()).getPreferredSize(panel); double panelHeight = d.height; double pageHeight = height; int totalNumPages = (int) Math.ceil(panelHeight / pageHeight); g2d.translate(0f, -(pageIndex - 1) * pageHeight); panel.paint(g2d); boolean ret = true; if (pageIndex >= totalNumPages) { ret = false; return ret; } return ret; } }

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值