PostScript is a Turing-complete page description programming language, designed and developed by Adobe. There are three major releases of PostScript. PostScript Level 1 -- this was released to the market in 1984. PostScript Level 2 --; released in 1991, this contained several important improvements to Level 1, including support for image decompression and in-RIP separation. PostScript 3 -- the latest and perhaps most widely adopted version
10
votes
7answers
8k views
How to create a virtual printer in Windows?
I want to create a virtual printer driver for Windows. Where should I start? The WDK has some printing drivers examples, but nothing I can use. MSDN doesn't seem to be very helpful.
There are a lot ...
10
votes
5answers
6k views
overlay one pdf or ps file on top of another
I have two pdf or postscript files (I can work with either one). What I want to do is merge each page on top of the other so that page1 of document A will be combined with page 1 of document B to ...
6
votes
3answers
690 views
How to use non-ASCII characters in Matlab figures (for use in LaTeX doc)?
I am using including Matlab-drawn figures into LaTeX. My usual workflow is as following:
Script in matlab creates figure(s),
I tweak what I find needs to be tweaked in visual figure editor,
Figure ...
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
7answers
2k views
How to add page numbers to Postscript/PDF
If you've got a large document (500 pages+) in Postscript and want to add page numbers, does anyone know how to do this?
EDIT: Moved my solution down into an 'answer'
6
votes
3answers
567 views
How can you get the height metric of a string in PostScript?
You can obtain the width of a string in the current font with stringwidth and although this actually pushes offset coordinates on the stack, the y-value always seems to be useless. Is there a way to ...
5
votes
2answers
199 views
How to convert thousands of PDF files to a single Postscript file in a specified order
I've discovered multiple options for convert a few to serveral PDFs into Postscript, but many are command-line programs with command-line limitations (this application lives on .NET).
Our application ...
5
votes
4answers
5k views
Java printing directly to a Postscript network printer
I've got Postscript code/data (?) in memory (in a Java Tomcat webapp) that I'd like to send directly to a networked PS printer. Is there an easy way (i.e. just popping open a port and sending the ...
4
votes
2answers
156 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
5answers
219 views
Tool for batch processing EPS to JPG
Does anyone know of a adobe command line tool for creating jpegs from pdfs. This needs to cater for EPS 15 ( CS5 )?
I am converting EPS files to hi-res JPEGS with imagemagic but the results are ...
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
2answers
263 views
Printing Graphics in Python
I need to print "Wheel Tags" from python. Wheel tags will have images, lines, and text.
The Python tutorial has two paragraphs about creating postscript files with the image lib. After reading it I ...
4
votes
3answers
348 views
PostScript versus PDF as an output format
I'm currently writing a typesetting application and I'm using PSG as the backend for producing postscript files. I'm now wondering whether that choice makes sense. It seems the ReportLab Toolkit ...
4
votes
4answers
2k views
Convert from PDF to Postscript using Java
I am having a J2EE based application, where I am using a reporting tool to generate outputs in PDF format. I need a utility/ tool in Java which can help me convert my PDF file to postscript format so ...
4
votes
4answers
274 views
Detecting output device in LaTeX
Is there a way, in a LaTeX style/class file, to detect which output device is being used (or at least which capabilities it has)? The reason is, I'm writing a class file in which I want to use some ...
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 ...
4
votes
2answers
2k views
how to embed a true type font within a postscript file
I have a cross platform app and for my Linux and Mac versions it generates a postscript file for printing reports and then prints them with CUPS. It works for simple characters and images but I would ...
3
votes
3answers
111 views
Rotate to North
After doing a complicated series of rotations and translations, I want to return the current direction to "North" pointing at the top of the page. How can I do that?
The obvious answer is to keep ...
3
votes
2answers
97 views
How to annotate PS or PDF from (Linux) command line without losing quality?
Is there any command line tool for Linux that will allow me to annotate a PS or PDF file with text or a particular font, color, and size with no loss of quality? I have tried ImageMagick's convert, ...
3
votes
1answer
45 views
How to determine height and depth of a PostScript font?
I'm looking for PostScript code that estimates a PostScript font's height (room for ascender) and depth (room for descender). Could a font's bounding box (FontBBox) be used for this?`
Here is some ...
3
votes
3answers
53 views
How to exchange text in PostScript
I do have the following content of PostScript code that is originally generated by the Ghostscript Printer on Windows XP.
/Euro /Times-BoldItalic /Times-BoldItalic-Copy BuildNewFont
} if
F /F1 0 ...
3
votes
2answers
407 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
4answers
185 views
How can I programatically generate venn diagram images with labels on top of the image?
I'm trying to generate Venn diagrams for a pdf report, with text on top of the distinct regions.
We're using htmldoc to generate pdfs, which precludes text on top of background images.
We use the ...
3
votes
2answers
84 views
putting hyperlink in pdf/postscript around a circle
As you see, there are several IDs around the circle, I don't know exactly about their coordination (is difficult!). So, was wondering if anyone has an idea, to attach hyperlink for each ID, meaning ...
3
votes
3answers
160 views
Is there a “File IO in Postscript for Dummies”?
Much of the code-golf played on Stack Overflow involved ASCII figures, and codegolf.SE is shaping up the same way.
That's all well and good, but I'd like to inject a little variety into the output, ...
3
votes
6answers
537 views
Any good postscript drawing libraries?
I need to draw some pictures for my LaTeX documents, and I've found that hand-made PostScript seems to be a good fit (I want to do stuff programatically, need math functions, etc.). I've also tried ...
2
votes
2answers
72 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
135 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
1answer
35 views
+50
What does bluescale mean for Type 1 Fonts?
I can't understand the bluescale part of the Type 1 Font Specification. Could you explain it to me with examples in which the overshoot supression is performed or ceased?
2
votes
0answers
31 views
Assign page attributes to postscript file generated in Java using HP Universal Printing PS
I am trying to generate postscript file with paper size 7 * 8.5 INCH. I am able to generate the postscript file. But the page size is 8.5 * 11 INCH.
I doubt if it is considering the attribute set i ...
2
votes
1answer
41 views
Is PostScript Type fonts still alive?
It seems that all the default fonts in my windows 7 is truetype or opentype. Is PostScript Type 1 font still alive? And do we still use type 2(the CFF font) or type 14(chameleon)?
Thanks.
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
2answers
92 views
How to use Prolog to print a PDF file
I am a newbie to Prolog and was just wondering if there is a way to print something to a pdf file.
2
votes
1answer
87 views
Generate a PDF File from a postscript document in c# [closed]
Possible Duplicate:
itextsharp postscript to PDF
For an application, I receive a postscript file from an application. This postscript file is sent to our application, and we have to ...
2
votes
2answers
125 views
Postscript: how to convert a integer to string?
In postscript , the cvs *operator* is said to convert a number to a string. How should I use it ?
I tried :
100 100 moveto
3.14159 cvs show
or
100 100 moveto
3.14159 cvs string show
but it ...
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
2answers
76 views
How to display a PostScript file in GTK+?
Does anyone know how to take a PostScript file and display it in a GTK+ application?
I've been trying to use ImageMagick++ to open a PostScript file (which it does just fine), and then somehow open ...
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
3answers
89 views
How do I use AIC to load a PDF file and output Postscript on a Windows 2008 machine?
How do I write code using AIC (Acrobat Interapplication Communication) to load a PDF file and output the equivalent Postscript file? Using Acrobat X interactively, I would open the file, then use the ...
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
2answers
560 views
Html5 component for rendering and annotating PDF documents in the browser?
I am trying to build a webapp that can view and annotate PDF files in a browser without flash player installed (like an iPad). Are there any free or cheap components that render a PDF in html, JS and ...
2
votes
3answers
531 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
1answer
1k views
use Ghostscript to convert pcl to postscript
So I want to use Ghostscript to convert files that are created in pcl format to postscript.
That's the gist of my problem. I am simply trying to run it on the command line, but in the final stage ...
2
votes
2answers
401 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 << ...
2
votes
2answers
179 views
Creating Postscript function dictionary type 0
I am trying to create a Postscript function dictionary of type 0. The input is single dimension and the output is 3 dimension.
Input 0 Output [ 0 0 0]
Input 1 Output [ 1 1 1]
I am having trouble ...
2
votes
2answers
91 views
Barcodes in postscript
Could you point me a way in which I can render a barcode in PS without the help of any external plugin or class file ?
Thanks
2
votes
3answers
411 views
Converting .ps to .pdf and removing a single page
I have a postscript file of a poster made in latex, and want to convert this to a pdf (I'm using ubuntu)
I am using ps2pdf but if possible I would like to remove the first, blank page, and keep only ...
2
votes
1answer
318 views
How to find which computer send the print job?
I'm creating a postscript printer for windows 7 which will accept print jobs and forward them to real printers. It will be shared in the LAN and can receive print jobs from LAN computers. I want to ...
2
votes
2answers
771 views
Ghostscript converting Postscript to PNG is over-saturated
I'm trying to use Ghostscript and/or ImageMagick to convert each page of a Postscript document into PNG images. The problem is that both produce images that are way too saturated (I think that's the ...
2
votes
1answer
2k views
How to change page orientation of PDF? (GhostScript or PostsScript solution needed)
Given a PDF document, how do I change individual page orientation? I'm using latest version of GhostScript.