|
PdfTemplate t = cb.createTemplate(600, 800);
Image caesar = Image.getInstance("caesar_coin.jpg");
cb.addImage(caesar, 100, 0, 0, 100, 260, 595);
t.setGrayFill(0.75f);
t.moveTo(310, 112);
t.lineTo(280, 60);
t.lineTo(340, 60);
t.closePath();
t.moveTo(310, 790);
t.lineTo(310, 710);
|