Pdf thumbnails / Pdf to jpg

Martin Zellerphp 2 Comments

Do you want to create thumbnails for pdf files with PHP (or C#)? You can simply do this with ghostscript. Here’s the php way (it is very easy to convert this code to C#): First install ghostscript on your server. Download: http://ghostscript.com/releases/ Then write your code: [php]$pathToPdf = "C:\….\PdfFile.pdf"; $pathToJpg = "C:\….\generatedThumbnail.jpg"; $gsCall = "\"C:\….\gs\gs8.70\bin\gswin32.exe\" -q -dBATCH -dMaxBitmap=300000000 -dNOPAUSE -dSAFER …

PDF: direct printing with .NET

Martin Zeller.net 47 Comments

  In this article I will show you the results of my search to find a way to print a pdf with .NET. My task was to find a simple solution for an intranet web application where the user gets pdf reports (ActiveReports). Depending on configuration settings these pdf files should be displayed in the browser and be printed immediately …