I want to load and draw pdf files graphically using C#. I don't need to edit them or anything, just render them at a given zoom level.
The pdf libraries I have found seem to be focussed on generation. How do I do this?
Thanks.
|
|
There are a few other choices in case the Adobe ActiveX isn't what you're looking for (since Acrobat must be present on the user machine and you can't ship it yourself). For creating the PDF preview, first have a look at some other discussions on the subject on StackOverflow:
In the last two I talk about a few things you can try:
|
||||
|
|
|
This looks like the right thing: http://code.google.com/p/lib-pdf/ |
|||
|
|
|
Disclaimer: I work for Atalasoft We have a PDF Rasterizer that can do this for .NET |
|||
|
|
|
ABCpdf will do this and many other things for you. Not ony will it render your PDF to a variety of formats (eg JPEG, GIF, PNG, TIFF, JPEG 2000; vector EPS, SVG, Flash and PostScript) but it can also do so in a variety of color spaces (eg Gray, RGB, CMYK) and bit depths (eg 1, 8, 16 bits per component). And that's just some of what it will do! For more details see: http://www.websupergoo.com/abcpdf-8.htm Oh and you can get free licenses via the free license scheme. There are EULA issues with using Acrobat to do PDF rendering. If you want to go down this route check the legalities very carefully first. |
|||
|
|
|
Here is my answer from a different question. First you need to reference the Adobe Reader ActiveX Control Adobe Acrobat Browser Control Type Library 1.0 %programfiles&\Common Files\Adobe\Acrobat\ActiveX\AcroPDF.dll Then you just drag it into your Windows Form from the Toolbox. And use some code like this to initialize the ActiveX Control.
Make sure when your Form closes that you dispose of the ActiveX Control
otherwise Acrobat might be left lying around. |
|||
|
|
|
The easiest lib I have used is Paolo Gios's library. It's basically
This is a great tutorial to get you started. |
|||
|
|
You could google for PDF viewer component, and come up with more than a few hits. If you don't really need to embed them in your app, though - you can just require Acrobat Reader or FoxIt (or bundle it, if it meets their respective licensing terms) and shell out to it. It's not as cool, but it gets the job done for free. |
|||
|
|
|
Use the web browser control. This requires Adobe reader to be installed but most likely you have it anyway. Set the UrL of the control to the file location. |
|||||||
|
|
Dynamic PDF Viewer from ceTe software might do what you're looking for. I've used their generator software and was pretty happy with it. |
|||
|
|