Printing to NSData
Printing to NSData
- Subject: Printing to NSData
- From: "Gerriet M. Denkmann" <email@hidden>
- Date: Sat, 19 Sep 2009 10:35:39 +0700
I am doing:
NSPrintOperation *po = [ NSPrintOperation printOperationWithView:
textView printInfo: printInfo ];
...
PDFDocument *pdfFile = [ [ PDFDocument alloc ] initWithURL: pdfUrl ];
... do some post-processing here
Works fine, but looks rather inefficient, as file-IO is probably the
slowest thing which can be done.
So I tried:
PDFOperationWithView:insideRect:toData:printInfo: (identical printInfo
as before)
...
PDFDocument *pdfFile = [ [ PDFDocument alloc ] initWithData: pdfData ];
... do some post-processing here
but the result is just one (very long) page.
Is this a bug or did I miss some magical incantation here?
Kind regards,
Gerriet.
_______________________________________________
Cocoa-dev mailing list (email@hidden)
Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden