| // 出力先を指定し、文書をPDFとして出力
PdfWriter pw = PdfWriter.getInstance(doc, new FileOutputStream(pdf));
// 出力開始
doc.open();
// 日本語フォントの設定
// MS GOTHIC
Font font = new Font(
BaseFont.createFont(
"C:\\WINDOWS\\Fonts\\MSGOTHIC.TTC,0",
BaseFont.IDENTITY_H,
BaseFont.EMBEDDED));
// MS P GOTHIC
Font font2 = new Font(
BaseFont.createFont(
"C:\\WINDOWS\\Fonts\\MSGOTHIC.TTC,1",
BaseFont.IDENTITY_H,
BaseFont.EMBEDDED));
// *****************************************************************
// 座標指定する為のオブジェクト
// *****************************************************************
// 一番上のレイヤー
PdfContentByte pcb = pw.getDirectContent();
// 一番上のレイヤーに直線を引く
pcb.moveTo( 250, 10 );
pcb.lineTo( 250, 800 );
pcb.stroke();
ColumnText ct = new ColumnText(pcb);
Phrase myText = null;
// MS GOTHIC
myText = new Phrase("ABCDEFGHIJKLMN",font);
ct.setSimpleColumn(
myText,
100,0, // ページの左下の座標
300, 820, // ページの右上の座標
0,
Element.ALIGN_LEFT
);
ct.go();
myText = new Phrase("漢字表示",font);
ct.setSimpleColumn(
myText,
100,0, // ページの左下の座標
300, 810, // ページの右上の座標
0,
Element.ALIGN_LEFT
);
ct.go();
// MS P GOTHIC
myText = new Phrase("ABCDEFGHIJKLMN",font2);
ct.setSimpleColumn(
myText,
100,0, // ページの左下の座標
300, 800, // ページの右上の座標
0,
Element.ALIGN_LEFT
);
ct.go();
myText = new Phrase("漢字表示",font2);
ct.setSimpleColumn(
myText,
100,0, // ページの左下の座標
300, 790, // ページの右上の座標
0,
Element.ALIGN_LEFT
);
ct.go();
int top = 750;
myText = new Phrase("left:"+doc.getPageSize().getLeft(),font2);
ct.setSimpleColumn(
myText,
100,0, // ページの左下の座標
300, top, // ページの右上の座標
0,
Element.ALIGN_LEFT
);
ct.go();
top -= 10;
myText = new Phrase("right:"+doc.getPageSize().getRight(),font2);
ct.setSimpleColumn(
myText,
100,0, // ページの左下の座標
300, top, // ページの右上の座標
0,
Element.ALIGN_LEFT
);
ct.go();
top -= 10;
myText = new Phrase("top:"+doc.getPageSize().getTop(),font2);
ct.setSimpleColumn(
myText,
100,0, // ページの左下の座標
300, top, // ページの右上の座標
0,
Element.ALIGN_LEFT
);
ct.go();
top -= 10;
myText = new Phrase("bottom:"+doc.getPageSize().getBottom(),font2);
ct.setSimpleColumn(
myText,
100,0, // ページの左下の座標
300, top, // ページの右上の座標
0,
Element.ALIGN_LEFT
);
ct.go();
// 真ん中のレイヤー( 画像レイヤーの上 )
Paragraph pg = new Paragraph("標準", font);
doc.add(pg);
doc.add(pg);
doc.add(pg);
doc.add(pg);
doc.add(pg);
// 空文字は無視されるので " "
pg = new Paragraph(" ");
doc.add(pg);
doc.add(pg);
Paragraph p = new Paragraph();
for (int i = 0; i < 25; i++) {
p.add(
new Chunk(
"一般テキスト 一般テキスト 一般テキスト"
,font
)
);
}
doc.add(p);
// 真ん中のレイヤー( 画像レイヤー )
Image img = Image.getInstance("sample.png");
img.setAbsolutePosition(120, 500);
doc.add(img);
// 一番上のレイヤー( 灰色の小さな円 )
pcb.setRGBColorFill(0xAA, 0xAA, 0xAA);
pcb.circle(250.0f, 500.0f, 50.0f);
pcb.fill();
pcb.sanityCheck();
// 一番下のレイヤー( 赤いおおきな円 )
PdfContentByte cbu = pw.getDirectContentUnder();
cbu.setRGBColorFill(0xFF, 0x00, 0x00);
cbu.circle(250.0f, 500.0f, 100.0f);
cbu.fill();
cbu.sanityCheck();
// 一番上のレイヤーに直線を引く
pcb.moveTo( 255, 10 );
pcb.lineTo( 255, 800 );
pcb.stroke();
// 出力終了
doc.close();
String command =
"RunDLL32.EXE shell32.dll,ShellExec_RunDLL \"" +
System.getProperty("user.dir") + "\\" + pdf + "\"";
Process process = Runtime.getRuntime().exec(command);
| |