以下にもリストされています。
試す {
文字列 targetImg = "D:/Blue Hills.jpg";
// String pressImg = "D:/20130311220300.jpg";
String pressImg = "D:/html_original.jpg";
ファイル f1 = 新しいファイル(targetImg);
画像 src = ImageIO を読み取ります (f1) ;
int width = src.getWidth(null);
int 高さ = src ;
BufferedImage image = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB);
グラフィックス g = image.createGraphics();
g.drawImage(src, 0, 0, width, height, 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 , width , height , null );
g.dispose();
FileOutputStream out = 新しい FileOutputStream(targetImg);
JPEGImageEncoder エンコーダ = JPEGCodec.createJPEGEncoder(out);
エンコーダ.エンコード(画像);
out.close();
System.out.println("ナンバープレートを出力!!");
} catch (例外 e) {
// TODO : 例外を処理します
System.out.println("エンターテイメントの呪文!!");
e.printStackTrace();
} }