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 (Cocoa-dev@lists.apple.com)
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:
http://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com
This email sent to arch...@mail-archive.com