首先要了解的是java在图像这一块非常弱。用java实现截图倒不难,原理吗就是把当前屏幕存成一个图,然后获取鼠标拉去的想去位置然后把截取的图保存到panel里边,再生成图片即可。那么这里要说什么呢?好吧下面就说几个将网页保存为图片的框架:
1、html2image
网上炒这个还不少呢。我说这个就是原声的java代码进行封装的一个jar包。效果非常差,代码就不贴了网上好多。
2、cobra
如果你不知道这个的话,你应该听说过lobobrowser,纯java实现的浏览器,测试了下,除了启动慢的要死其他还可以。
这个代码截取还是不错的,不说了直接上代码:
packagehtmlToImage;
importjava.awt.image.BufferedImage;
importjava.awt.image.RenderedImage;
importjava.io.File;
importjavax.imageio.ImageIO;
importjavax.swing.JFrame;
importjavax.swing.JPanel;
importjavax.swing.SwingUtilities;
importorg.lobobrowser.html.gui.HtmlPanel;
importorg.lobobrowser.html.test.SimpleHtmlRendererContext;
importorg.lobobrowser.html.test.SimpleUserAgentContext;
publicclassCobraTest {
publicstaticvoidmain(String[] args)throwsException {
JFrame window =newJFrame();
HtmlPanel panel =newHtmlPanel();
window.getContentPane().add(panel);
window.setSize(600,400);
window.setVisible(true);
newSimpleHtmlRendererContext(panel,newSimpleUserAgentContext())
.navigate("http://www.elsyy.com/");
System.out.println("10");
Thread.sleep(10000);
BufferedImage image =newBufferedImage(panel.getWidth(),
panel.getHeight(), BufferedImage.TYPE_INT_ARGB);
// paint the editor onto the image
SwingUtilities.paintComponent(image.createGraphics(), panel,
newJPanel(),0,0, image.getWidth(), image.getHeight());
// save the image to file
ImageIO.write((RenderedImage) image,"png",newFile("html.png"));
System.out.println("www");
}
}
但是这个框架应该有个限制,css3应该支持不了。
3、cssbox
这个非常不错。如果网站不做故意限制的话,截图非常完美
packagehtmlToImage;
importjava.io.File;
importjava.io.FileOutputStream;
importorg.fit.cssbox.demo.ImageRenderer;
publicclassCssBox {
publicstaticvoidmain(String[] args)throwsException {
ImageRenderer render =newImageRenderer();
System.out.println("kaishi");
String url ="http://www.elsyy.com/";
FileOutputStream out =newFileOutputStream(newFile("D:"+File.separator+"html.png"));
render.renderURL(url, out, ImageRenderer.TYPE_PNG);
System.out.println("OK");
}
}
4、java原生代码
packagehtmlToImage;
importjava.awt.image.BufferedImage;
importjava.awt.image.RenderedImage;
importjava.io.File;
importjava.net.URL;
importjavax.imageio.ImageIO;
importjavax.swing.JEditorPane;
importjavax.swing.JPanel;
importjavax.swing.SwingUtilities;
/**
* 原理就是在现在的awt或者swing上显示网页然后将内容保存为一个图片
* 没办法控制延迟啊。
* @author zlqiao
*
*/
publicclassJavaCoreApi {
publicstaticvoidmain(String[] args)throwsException {
//load the webpage into the editor
//JEditorPane ed = new JEditorPane(new URL("http://www.google.com"));
JEditorPane ed =newJEditorPane(newURL("http://www.baidu.com"));
System.out.println("10");
Thread.sleep(10000);
ed.setSize(1000,1000);
//create a new image
BufferedImage image =newBufferedImage(ed.getWidth(), ed.getHeight(),
BufferedImage.TYPE_INT_ARGB);
//paint the editor onto the image
SwingUtilities.paintComponent(image.createGraphics(),
ed,
newJPanel(),
0,0, image.getWidth(), image.getHeight());
//save the image to file
ImageIO.write((RenderedImage)image,"png",newFile("html.png"));
System.out.println("ok");
}
}
以上就是介绍的几个网页另存为图片的Java框架,希望对你有帮助吧,如果想了解更多编程语言教程知识请登录e良师益友网。