也列出如下:
嘗試 {
String targetImg = "D:/Blue Hills.jpg";
// String pressImg = "D:/20130311220300.jpg";
String pressImg = "D:/html_original.jpg";
文件 f1 = 新文件(targetImg);
影像 src = ImageIO 讀取 (f1);
int 寬度 = src.getWidth(null);
int 高度 = src . getHeight ( null ) ;
BufferedImage 映像 = new 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, (寬度-+pao_width)/2, (高度-pao_height)/2,pao_width,pao高度, null);
//g.drawImage(src_pao,100,100,寬度,高度,空);
g.dispose();
FileOutputStream out = new FileOutputStream(targetImg);
JPEGImageEncoder 編碼器 = JPEGCodec.createJPEGEncoder(out);
編碼器.編碼(圖像);
關閉();
System.out.println("輸出車牌!!");
} catch (異常 e) {
// TODO : 處理異常
System.out.println("娛樂法術!!");
e.printStackTrace();
} }