Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm working on a port of a Delphi app to OSX using FireMonkey. Part of the app displays PDF's, currently using the Acrobat viewer control or Gnostice components under Windows. These options aren't available in FireMonkey for OSX, so I was wondering if anyone had any ideas how to handle this. I have used the Quartz PDFKit PDFView in a Cocoa app but can't see how I could use this in a FireMonkey app.

share|improve this question
1  
Well, if there is no FM PDF viewer available, what I would do is a library that opens an external window with the Quartz one, to be called from the FM app. You loose the skin stuff, but you gain the functionality. May be it helps. – someone Jan 12 '12 at 3:43
I'm assuming you can still write custom (OS X specific) code in this environment? Would it be a solution to convert the PDF page you want to display to an image in such custom code and display the image in your FireMonkey created user interface? Creating PDF to images should be fairly simple and this would have the advantage that you don't have to do anything outside your interface... You could even do the same thing on Windows using a library that can convert PDF to images - both open source and commercial libraries are available for that... And that would leave you with cross-platform code:) – David van Driessche Nov 29 '12 at 18:09
1  
Chris Rolliston has a detailed article on his blog about creating a FireMonkey PDF viewer using Core Graphics link...exactly what I was looking for. – Kevin McBrearty Nov 29 '12 at 22:51

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.