在 Java 中裁剪图像

发布于 2024-12-12 01:42:39 字数 1437 浏览 0 评论 0原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

做个少女永远怀春 2024-12-19 01:42:39

您通常会

  1. 创建一个具有所需宽度和高度的新 BufferedImage(下面的 dst)。
  2. 获取其 Graphics 对象
  3. 加载原始 .jpeg 图像(下面的 src
  4. 将其所需部分绘制到 BufferedImage
  5. 写入缓冲使用ImageIO将图像输出到文件。

在代码中:

Image src = ImageIO.read(new File("duke.jpg"));

int x = 10, y = 20, w = 40, h = 50;

BufferedImage dst = new BufferedImage(w, h, BufferedImage.TYPE_INT_ARGB);
dst.getGraphics().drawImage(src, 0, 0, w, h, x, y, x + w, y + h, null);

ImageIO.write(dst, "png", new File("duke_cropped.png"));

鉴于此 .jpg...

在此处输入图像描述

.. .它生成这个.png:

在此处输入图像描述

You'd typically

  1. Create a new BufferedImage (dst below) with the desired width and height.
  2. Get hold of it's Graphics object
  3. Load the original .jpeg image (src below)
  4. Paint the desired part of that, onto the BufferedImage
  5. Write the buffered image out to file using ImageIO.

In code:

Image src = ImageIO.read(new File("duke.jpg"));

int x = 10, y = 20, w = 40, h = 50;

BufferedImage dst = new BufferedImage(w, h, BufferedImage.TYPE_INT_ARGB);
dst.getGraphics().drawImage(src, 0, 0, w, h, x, y, x + w, y + h, null);

ImageIO.write(dst, "png", new File("duke_cropped.png"));

Given this .jpg...

enter image description here

...It generates this .png:

enter image description here

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文