如何将buffereimage转换为javext .io. image



我需要使用image.setCorners()来倾斜图像,这可以使用JavaXT库来完成。然而,我有BufferedImage形式的图像,而不是保存文件。

那么我如何将BufferedImage转换为javaxt.io.Image,以便我可以对其执行倾斜操作。

下面是我用来倾斜图像的代码:

javaxt.io.Image image = new javaxt.io.Image("image1.jpg");
System.out.println(image.getWidth() + "x" + image.getHeight());
int width = image.getWidth();
int height = image.getHeight();
image.setCorners(0, 0,             //UL
                 width, 10,        //UR
                 width, height-10, //LR
                 0, height);       //LL

javaxt.io.Image类有如下构造函数:

public Image(java.awt.image.BufferedImage bufferedImage)

所以你可以这样做:

javaxt.io.Image image = new javaxt.io.Image(bufferedImage);

相关内容

  • 没有找到相关文章

最新更新