不確定な長さのテキスト ファイルを PDF ページに書き込んでいます。ファイルのテキストがページに収まらない場合は、2 つ目の PDF ページを追加する必要があります。ただし、次のページで描画を開始するための描画/グラフィック コンテキストを取得できないようです。新しいページは問題なく生成されますが、空白のままです。
これが私のコードです:
public static FileInfo writeTextToPDF(FileInfo input) {
if(!input.Exists)
return default(FileInfo); //Return null if there is no log to be written
UIGraphics.BeginPDFContext (input.FullName + ".pdf", RectangleF.Empty, default(NSDictionary));
UIGraphics.BeginPDFPage ();
using (CGContext g = UIGraphics.GetCurrentContext()) {
const int marginTop = 12; //Margin to leave at the top of the page
const int marginLeft = 12; //Margin to leave at the left of the page
const int lineSpacing = 4; //Space between lines
const int fontSize = 8; //Change this to change the font size
var yOffset = -marginTop - fontSize; //This is easier for drawing than translating a CTM all the time
g.ScaleCTM (1, -1);
//Write the title
g.SelectFont ("Helvetica", fontSize * 2, CGTextEncoding.MacRoman);
g.ShowTextAtPoint (marginLeft, yOffset, input.Name);
yOffset -= fontSize * 2 + lineSpacing * 2;
g.SelectFont ("Helvetica", fontSize, CGTextEncoding.MacRoman);
using (var fs = input.OpenText()) {
string text = fs.ReadLine ();
while(text != null) {
g.ShowTextAtPoint (marginLeft, yOffset, text); //Draw it 12 points from the left
yOffset -= fontSize + lineSpacing; //Move down another line
text = fs.ReadLine (); //Get the next line
if(-yOffset >= UIGraphics.PDFContextBounds.Height) {
// Start a new page if needed
//g.EndPage ();
UIGraphics.BeginPDFPage ();
yOffset = -marginTop - fontSize;
}
}
}
}
UIGraphics.EndPDFContent ();
return new FileInfo (input.FullName + ".pdf");
}
私は何を間違っていますか?