Re: PDF on a NSView
Re: PDF on a NSView
- Subject: Re: PDF on a NSView
- From: Ali Ozer <email@hidden>
- Date: Wed, 9 Jan 2002 08:41:58 -0800
>
> Is it possible to render a PDF file on a NSView? I hope you can help
>
> me or point me to the proper documentation.
>
>
Didn't check the code or run it but something like this could work. I'm
>
quite sure there's an easier solution.
Yes, there is an NSPDFImageRep, for instance:
NSPDFImageRep *rep = [NSPDFImageRep imageRepWithContentsOfURL:url]; /*
retain if needed */
[rep drawInRect:rect];
For multipage PDFs you can choose what page you want.
Ali