1.实现
2.在截图过程中对参数设置不正确程序运行会产生异常
3.补充,如何生成一张空白图片
4.参考
场景:本地存在要处理的图像,尝试截取图像的一部分内容另行存储
import java.awt.Color;
import java.awt.Graphics;
import java.awt.image.BufferedImage;
import java.io.File;
import java.io.IOException;
import javax.imageio.ImageIO;
/**
* 实现截取已存在图片的一部分
*
本例子为从原图的0.2倍宽和高处开始截取
*
提示:截取的起点结合截取长度和高度不应超过原图所在的坐标范围
* @author yangcongcong
*
*/
public class DrawPic {
public static void main(String[] args) {
//原图片
String soursePicPath = "D:/File/javaPic.png";
File sourcePic = new File(soursePicPath);
try {
BufferedImage pic1 = ImageIO.read(sourcePic);
int width = pic1.getWidth();
int height = pic1.getHeight();
//参数依次为,截取起点的x坐标,y坐标,截取宽度,截取高度
BufferedImage pic2 = pic1.getSubimage(width/5, height/5, width-width/5, height-height/5);
//将截取的子图另行存储
File desImage = new File("D:/File/subjavaPic.png");
ImageIO.write(pic2, "png", desImage);
} catch (IOException e1) {
e1.printStackTrace();
}
}
}
效果图示例:依次为原图和截取后的结果图
例如:
//截图起点的x坐标设置不正确
BufferedImage pic2 = pic1.getSubimage(width+1, height/5, width-width/5, height-height/5);
会产生如下异常:
图片的坐标系如下:
设置参数时,不能超过原图片的坐标范围。
BufferedImage bi = new BufferedImage(200, 200, BufferedImage.TYPE_INT_BGR);
//要生成的空白图片的路径
final File file = new File("D:/File/javaPic000.png");
try {
if(file.exists()) {
file.delete();
file.createNewFile();
}
}catch(IOException e) {
e.printStackTrace();
}
Graphics g = bi.getGraphics();
//将图片设置为白色图片
Color color = new Color(255,255,255);
g.setColor(color);
g.fillRect(0, 0, bi.getWidth(), bi.getHeight());
可以接着进行涂画
//g.setColor(new Color(66, 37, 188));
//g.drawLine(0, 100, 100, 100);
g.dispose();
try {
ImageIO.write(bi, picType, file);
} catch (IOException e) {
e.printStackTrace();
}
http://www.voidcn.com/article/p-yuvqgefh-btn.html java图像裁剪
https://blog.csdn.net/xing8831925/article/details/88950513 java 创建新的图片,底色自己设定
https://blog.csdn.net/zhouyingge1104/article/details/80995845 Java创建图片并绘图