นอกจากนี้ยังมีรายการ ด้านล่าง:
พยายาม {
สตริง targetImg = "D:/Blue Hills.jpg";
// สตริง pressImg = "D:/20130311220300.jpg";
สตริง pressImg = "D:/html_Original.jpg";
ไฟล์ f1 = ไฟล์ใหม่ (targetImg);
รูปภาพ src = ImageIO . อ่าน (f1) ;
int width = 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, null);
/ / g . DrawImage ( src_pao , 100 , 100 , ความกว้าง , ความสูง , null );
g.ทิ้ง();
FileOutputStream out = FileOutputStream ใหม่ (targetImg);
ตัวเข้ารหัส JPEGImageEncoder = JPEGCodec.createJPEGEncoder (ออก);
encoder.encode (รูปภาพ);
ออก.ปิด();
System.out.println("ออกป้ายทะเบียน!!");
} จับ (ข้อยกเว้นจ) {
// TODO : จัดการข้อยกเว้น
System.out.println("คาถาบันเทิง!!");
e.printStackTrace();
-