Prashant
Prashant

Reputation: 2192

PDFView Display image Cocoa

In my application, I want to have the capability to zoom on images. I have tried with IKImageView but it is causing some problem on 10.5. Specifically after the first image, everything shows up as white. Since Preview app is able to display images(png,jpg), I was thinking of using PDFView. But the problem is, when I pass the path of the image to the PDFDocument, it throws an exception. It says, PDF header not found. Is it possible to display .jpg, .png files using PDFView ?.

Upvotes: 0

Views: 459

Answers (2)

stevex
stevex

Reputation: 5819

You could also use a UIWebView, which can display PDFs, JPGs, PNGs and various other things.

Upvotes: 0

NSResponder
NSResponder

Reputation: 16861

Is it possible to display .jpg, .png files using PDFView ?.

No. A PDFView is for PDF files. If you want to show other image formats, use an NSImageView.

Upvotes: 1

Related Questions