Tagged Questions

Ghostscript is a suite of software based on an interpreter for Adobe Systems' PostScript and Portable Document Format (PDF) page description languages.

learn more… | top users | synonyms

12
votes
7answers
867 views

What “thread safe” really means…In Practical terms

Dear all, please bear with my newbie questions.. I was trying to convert PDF to PNG using ghostscript, with ASP.NET and C#. However, I also read that ghostscript is not thread safe. So my questions ...
8
votes
2answers
7k views

How can I extract embedded fonts from a PDF as valid font files?

I'm aware of the pdftk.exe utility that can indicate which fonts are used by a PDF, and wether they are embedded or not. Now the problem: given I had PDF files with embedded fonts -- how can I ...
8
votes
2answers
8k views

Converting a PDF to PNG

I'm trying to convert a PDF (at least the cover of one, I'm successfully extracting the first page of the PDF with pdftk) to a PNG. I'm using imagemagick to do the converstion: convert cover.pdf ...
7
votes
4answers
5k views

Convert a PDF to a Transparent PNG with GhostScript

I am attempting, unsuccessfully, to use Ghostscript to rasterize PDF files with a transparent background to PNG files with a transparent background. I've searched high and low for questions from ...
7
votes
5answers
4k views

Converting a multiple-page PDF to a single image

I'm attempting to convert a PDF into a single image using GhostScript. Only the first page is converted, while my intention is to generate a horrendously tall PNG/JPG image with all the pages ...
6
votes
5answers
359 views

How do extract text layer and background layer from pdf?

In my project I've to do a PDF Viewer in HTML5/CSS3 and the application has to allow user to add comments and annotation. Actually, I've to do something very similar to crocodoc.com. At the beginning ...
6
votes
5answers
743 views

Recommendations for PDF text extraction

can anyone recommend a library/API for extracting the text and images from a PDF? We need to be able to get at text that is contained in pre-known regions of the document, so the API will need to give ...
6
votes
3answers
388 views

How to determine string height in PostScript?

I need to determine the height of a string (in given scale and font) in postscript. /Helvetic-Oblique findfont 10 scalefont setfont 10 10 1 0 360 arc fill 10 10 moveto (test) dup stringwidth pop 2 ...
6
votes
2answers
11k views

ImageMagick/Imagick convert PDF to JPG using native PHP API

I’m attempting to convert PDF files into PNGs. It works great from the command line (I do have GhostScript 8.64 installed). But from PHP I’m having a problem: code: $im = new Imagick($pdf_file); // ...
5
votes
1answer
460 views

Using Ghostscript in server mode to convert PDFs to PNGs

while i am able to convert a specific page of a PDF to a PNG like so: gs \ -dSAFER \ -dBATCH \ -dNOPAUSE \ -sDEVICE=png16m \ -dGraphicsAlphaBits=4 \ -sOutputFile=gymnastics-20.png \ ...
5
votes
2answers
4k views

Ghostscript Multipage PDF to PNG

I've been using ghostscript to do pdf to image generation of a single page from the pdf. Now I need to be able to pull multiple pages from the pdf and produce a long vertical image. Is there an ...
5
votes
3answers
9k views

GhostScript command line parameters to convert EPS to PDF

Just installed GhostScript 8.54 for Windows. Does anyone know of the minimum parameters to pass to gswin32c.exe to make it convert, say, someFile.eps to someFile.eps.pdf?
4
votes
2answers
159 views

PDF Optimization Acrobat vs. Ghostscript

I have a PDF file that I would like to optimize. I am receiving the file from an outside source so I don't have the means to recreate it from the beginning. When I open the file in Acrobat and query ...
4
votes
3answers
2k views

Converting PDF to CMYK (with identify recognizing CMYK)

I am having much trouble to get ImageMagick's identify to, well, identify a PDF as CMYK. Essentially, let's say I'm building this file, test.tex, with pdflatex: ...
4
votes
1answer
184 views

How do you convert PDFs to PNGs with ghostscript?

I'm usually able to use ghostscript to convert PDFs to PNGs with the command: gs \ -q \ -dNOPAUSE \ -dBATCH \ -sDEVICE=pnggray \ -g2550x3300 \ -dPDFFitPage \ -sOutputFile=output.png \ ...
4
votes
3answers
94 views

Compressing JPG page to PDF with various compressions/settings

I would like to take a single page jpg, and experiment with various pdf compression settings and other settings (to analyse resultant pdf size and quality) - can anyone point me towards decent tools ...
4
votes
2answers
451 views

is it possible to check if pdf is password protected using ghostscript?

is it possible to check if pdf is password protected using ghostscript? what would be the command? I know you can strip pdf password using ghostscript, but all I want to do is just checking if PDF ...
4
votes
4answers
5k views

using imagemagick or ghostscript (or something) to scale PDF to fit page?

I've been bashing my head against this to no avail. I need to shrink some large PDFs to print on an 8.5x11 inch (standard letter) page. Can imagemagick/ghostscript handle this sort of thing, or am I ...
4
votes
3answers
818 views

Validating a Postscript without trying to print it?

Saving data to Postscript in my app results in a Postscript file which I can view without issues in GhostView, but when I try to print it, the printer isn't able to print it because it seems to be ...
3
votes
2answers
410 views

How to convert PDF to low-resolution (but good quality) JPEG?

When I use the following ghostscript command to generate jpg thumbnails from PDFs, the image quality is often very poor: gs -q -dNOPAUSE -dBATCH -sDEVICE=jpeggray -g465x600 -dUseCropBox -dPDFFitPage ...
3
votes
2answers
135 views

How to convert PDF to an Image without text

I would like to know if its possible to convert a PDF to and image without fonts. My goal is to have only the image without text ? And if yes, can I do it with ImageMagick/GhostScript ? Here an ...
3
votes
3answers
680 views

PDF compare on linux command line

I'm looking for a Linux command line tool to compare two PDF files and save the diffs to a PDF outfile. The tool should create diff-pdf's in a batch-process. The pdf files are construction plans, so ...
3
votes
1answer
226 views

How to get GhostPDL progress notifications while converting XPS to PDF?

As of now, I'm using Process to call GhostPDL to convert my XPS files into PDF files. The problem is that sometimes these conversions take a while. Currently I'm using a notification to let the user ...
3
votes
3answers
231 views

Font metrics for the “base 14” fonts in the PDF specification

I've been writing software to parse content from PDFs, specifically text broken into regions. For this I need font metrics such as glyph displacements, font-wide ascent, descent and glyph bounding ...
3
votes
1answer
341 views

pdf thumbnail imagemagick php not working

I am using imagemagick and ghostscript in my windows pc running php5 in apache. I tried <?php $im = new imagick('test.pdf[0]'); $im->setImageFormat( "jpg" ); header( "Content-Type: image/jpeg" ...
3
votes
1answer
418 views

Creating JPG thumbnails of PDF with Imagmagick

I'm using Imagemagick to create thumbnails images of pdf files with this command: convert 'input.pdf[0]' -resize "100x140>" -colorspace 'rgb' 'output.jpg' 2>/dev/null Some of the PDFs are in ...
3
votes
3answers
1k views

ImageMagick or GhostScript: convert a multi-page TIFF to a multi-page PDF

I need to convert a multi-page TIFF to a multi-page PDF. I have access to ImageMagick and GhostScript (in *nix environment). How do I do this? Thanks. UPDATE: It turns out that my test file was ...
3
votes
2answers
923 views

Any tips for speeding up GhostScript?

I have a 100 page PDF that is about 50 MBs. I am running the script below against it and it's taking about 23 seconds per page. The PDF is a scan of a paper document. gswin32.exe -dNOPAUSE -dBATCH ...
3
votes
1answer
1k views

How do I embed fonts in an existing PDF?

Background: I have PDF's I am programmatically generating. I need to be able to send the PDF directly to a printer from the server (not through an intermediate application). At the moment I can do ...
3
votes
2answers
799 views

XPS document to PDF,DOC [closed]

Which one is the best third party libary to convert XPS to PDF and XPS to DOC.
3
votes
1answer
711 views

PDF on Linux: Combine font subsets and replace Type 3 with Type 1

I have a PDF file that I'd like to post-process on Linux. In particular I'd like to: Replace Type 3 fonts with Type 1 fonts Replace multiple subsets of the same font with a single subsets (the ...
3
votes
2answers
463 views

How can I shift page images in PDF files more to the left or to the right?

We have a bunch of scanned pages (about 600) for which every PDF viewer displays the image with zero margin on the right edge, but about 2 inch margin on the left. (Presumably while scanning, there ...
3
votes
3answers
869 views

Get the layout mode (landscape or portrait) of a pdf from php/linux

Given a PDF, how can one get the layout mode of a PDF (or relative width/height) using a PHP lib or linux command line tool? Using http://www.tecnick.com/public/code/cp%5Fdpage.php?aiocp%5Fdp=tcpdf ...
3
votes
8answers
10k views

Ghostscript PDF -> TIFF conversion is awful for me, people rave about it, I alone look sullen

My stomach churns when I see this kind of output. and this was my command as suggested by http://stackoverflow.com/questions/75500/best-way-to-convert-pdf-files-to-tiff-files#221341 gswin32c.exe ...
2
votes
2answers
75 views

can I use Ghostscript to overlay a text (fax) header onto a PDF and/or TIFF?

I'm writing an application that faxes a document (many supported types) provided by the end user. A requirement is that the end user can also provide text to be used as part of a custom fax header. ...
2
votes
4answers
138 views

batch convert and crop postscript to pdf

I know barely enough to survive in this digital world. I have many one-page postscript files (graphs/images) I wish to convert to pdf and automatically crop to a narrow box. I'm on windows right now ...
2
votes
2answers
71 views

alternative solution to convert PDFs to JPG

I've run my course with ImageMagick and Ghostscript. I left it alone to get on with other areas of development and for the entire day I've been trawling forums trying to get ImageMagick to work on my ...
2
votes
2answers
92 views

Smooth PostScript animations

I would like to run animations in PostScript smoothly. To see what I want, let me switch to PostScript directly. Call ghostscript, and 200 dup scale .5 setgray 0 0 3 3 rectfill We have now a gray ...
2
votes
3answers
124 views

Postscript: Drawing a Gradient

I'm learning Postscript I'm trying to create a method for that would draw a vertical gradient. Here is my code: %!PS-Adobe-3.0 %%%%%%%%%%%%%%%%%%%%%%% % draw a RECTANGLE /Rect { /h exch def % ...
2
votes
1answer
315 views

Ghostscript under linux: Times too wide

How to make Times working for printing under linux? I have debian wheezy linux, ghostscript, cups, mscorefonts installed. But when i do print, i get Times too wide, comparing to windows one -- letter ...
2
votes
1answer
157 views

ghostscript BoundingBox values

I'm just asking myself, what are those bbox values printed out by: gs -dSAFER -dNOPAUSE -dBATCH -sDEVICE=bbox myfile.pdf %%BoundingBox: 46 911 1668 4537 %%HiResBoundingBox: 46.080002 911.520035 ...
2
votes
3answers
272 views

What is the equivalence of the setting resolution 72 in ghostview, when using ghostscript?

When I use ghostsview to convert a postscript file to tiff I use the format 72, but if I want to have the same format when using ghostscript which resolution should I use? for example gswin32c.exe -q ...
2
votes
1answer
612 views

PDF to tiff ImageMagick problem

I'm trying to convert pdfs to tiff images for following OCR. I use "-density 300x300 -depth 8" as parameters. The first problem is that from 500 KB pdf file i get 72 MB tiff file. The second problem ...
2
votes
1answer
2k views

Cropping a PDF / Adding crop box using Ghostscript

I have a few hundred PDFs that I need to crop - I'm willing to either crop the actual documents or simply add a crop box to each so the correct viewable area shows when the PDF is opened. How can I ...
2
votes
1answer
228 views

Find string and convert to ASCII with PostScript

I am a total newbie when it comes to postscript programming and I was trying to find a solution to my problem with the help of the geniuses in here. I am a student that is currently working with a ...
2
votes
1answer
485 views

Ghostscript initialization fails with simple Ghost4J sample code

I am using Ubuntu 10.10 amd64, Sun JDK 6.0.24 and the default ghostscript package. Now, I am trying to get the "Render a PDF document using SimpleRenderer" sample from the Ghost4J page working. While ...
2
votes
2answers
1k views

Cannot get PB 10.5 to save as PDF on Windows 7

I have an application built in 10.5 that was able to successfully create PDFs using SaveAs on Windows XP. When I moved to Windows 7 (32-bit), it failed by returning -1 and a zero length file. I have ...
2
votes
1answer
1k views

Ghostscript pdf total pages

I'm using Ghostscript library API (wrapping from C#) to print PDF documents from my application. With the '-dFirstPage' and '-dLastPage' parameters i'm able to select page's interval to be printed, ...
2
votes
3answers
534 views

How can I add a footer to the bottom of each page of a postscript or pdf file in linux?

So I'd like to add a "footer" (an attribution) to the bottom of every page of a pdf file I am generating via postscript with groff in linux. I am converting the file from ps to pdf myself, with the ...
2
votes
2answers
402 views

Creating a PDF hyperlink with postscript

Basically I'm trying to add a hyperlink into a PDF by modifying the postscript. Here's the code that adobe provided for generating a link via postscript: [/Rect [ 0 425 295 445 ] /Action << ...

1 2 3 4 5