sumim #2485(2007/08/24 15:00 GMT) [ Smalltalk ] Rating1/1=1.00
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
| file pdfWriter page text textState textPositioning | file := FileStream fileNamed: 'doukaku50.pdf'. pdfWriter := PDFWriter on: file. pdfWriter compressionOff. page := pdfWriter defaultPage. text := PDFTextObject for: page pageDescription. textState := PDFTextState for: text. textState fontPitch: 140. textState font: (PDFFont type1Helvetica). textPositioning := PDFTextPositioning for: text. textPositioning coordinate: (PDFPoint x: 10 y: 250). text addOperator: textPositioning. text addOperator: textState. text write: 'Hello, world!'. page addTextObject: text. pdfWriter close. file close
Rating1/1=1.00-0+
[ reply ]
sumim
#2485()
[
Smalltalk
]
Rating1/1=1.00
Rating1/1=1.00-0+
[ reply ]