또한 아래에 나열되어 있습니다 :
노력하다 {
String targetImg = "D:/Blue Hills.jpg";
// 문자열 pressImg = "D:/20130311220300.jpg";
String pressImg = "D:/html_original.jpg";
파일 f1 = 새 파일(targetImg);
이미지 소스 = ImageIO.읽기(f1);
int 너비 = src.getWidth(null);
int 높이 = src.getHeight(null);
BufferedImage 이미지 = 새로운 BufferedImage (너비, 높이, BufferedImage.TYPE_INT_RGB);
그래픽 g = image.createGraphics();
g.drawImage(src, 0, 0, 너비, 높이, null);
파일 f2 = 새 파일(pressImg);
이미지 src_pao = ImageIO.read(f2);
int width_pao = src_pao.getWidth(null);
int height_pao = src_pao.getHeight(null);
g.drawImage(src_pao, (width-+pao_width)/2, (height-pao_height)/2,pao_width,pao height, null);
//g.drawImage(src_pao, 100, 100, 너비, 높이, null);
g.dispose();
FileOutputStream out = new FileOutputStream(targetImg);
JPEGImageEncoder 인코더 = JPEGCodec.createJPEGEncoder(out);
인코더.인코드(이미지);
종료.닫기();
System.out.println("번호판 출력!!");
} 잡기(예외 e) {
// TODO : 예외 처리
System.out.println("엔터테인먼트 주문!!");
e.printStackTrace();
} }