开源Java库,用于在服务器端生成网页缩略图 [已关闭]

2022-09-04 04:03:29

我正在寻找一个开源Java库来为给定的URL生成缩略图。我需要捆绑此功能,而不是调用外部服务,例如Amazonwebsnapr

http://www.webrenderer.com/ 在这篇文章中提到过:服务器生成的网络屏幕截图,但它是一种商业解决方案。

我希望有一个基于Java的解决方案,但可能需要考虑执行一个外部进程,如khtml2png,或者集成像html2ps这样的东西。

有什么建议吗?


答案 1

首先想到的是使用AWT捕获屏幕抓取(请参阅下面的代码)。您可以考虑捕获JEditorPaneJDIC WebBrowser控件或SWT浏览器(通过AWT嵌入支持)。后两个嵌入了原生浏览器(IE,Firefox),因此引入了依赖关系;JEditorPane HTML 支持在 HTML 3.2 停止。可能这些都无法在无头系统上工作。

import java.awt.Component;
import java.awt.Graphics2D;
import java.awt.image.BufferedImage;
import java.io.File;
import java.io.IOException;

import javax.imageio.ImageIO;
import javax.swing.JLabel;

public class Capture {

    private static final int WIDTH = 128;
    private static final int HEIGHT = 128;

    private BufferedImage image = new BufferedImage(WIDTH, HEIGHT,
            BufferedImage.TYPE_INT_RGB);

    public void capture(Component component) {
        component.setSize(image.getWidth(), image.getHeight());

        Graphics2D g = image.createGraphics();
        try {
            component.paint(g);
        } finally {
            g.dispose();
        }
    }

    private BufferedImage getScaledImage(int width, int height) {
        BufferedImage buffer = new BufferedImage(width, height,
                BufferedImage.TYPE_INT_RGB);
        Graphics2D g = buffer.createGraphics();
        try {
            g.drawImage(image, 0, 0, width, height, null);
        } finally {
            g.dispose();
        }
        return buffer;
    }

    public void save(File png, int width, int height) throws IOException {
        ImageIO.write(getScaledImage(width, height), "png", png);
    }

    public static void main(String[] args) throws IOException {
        JLabel label = new JLabel();
        label.setText("Hello, World!");
        label.setOpaque(true);

        Capture cap = new Capture();
        cap.capture(label);
        cap.save(new File("foo.png"), 64, 64);
    }

}

答案 2

你本质上是在要求一个完整的渲染引擎,可以通过Java访问。就个人而言,我会省去麻烦,并呼吁一个孩子的过程。

否则,我遇到了这个纯Java浏览器:Lobo


推荐