Converting Pages PostScript file to PDF

Can someone with a similar setup test this Pages PS file technique out and see if you can do it?
This was a tip from a Pages User/Blogger, as a way to get truer color printing of a Pages doc when moving it from the 3-color screen version to a four color commercial printer. He suggested saving the Pages file as Postscript, and then using Apple Preview, open and convert the Postscript to a PDF. I can't open the PS file with Preview, and it fails in the conversion to PDF. I get an error message: couldn't convert to a PDF/Couldn't open the file.
I contacted the Blogger; he was surprised it fails, given the long time use of PS and PDF files. He suggested that I ask someone with a set-up similar to mine to try this, and help me determine if it's my computer or the software that's failing (or me!). I'm working on a G-5, with OS 10.4.8, and Pages 2.02.
(Note, I've also tried doing this through Adobe Distiller, and that doesn't work either. That it fails in Preview seems to say to me that it's not just a problem with the version or settings in Adobe PRo/Distiller, but perhaps with Pages?).
Thanks!

It turned out that my two posted issues were related. The table on page one that was raising havoc with header and footers was also causing the PS to PDF conversion problems as well. I still have to resolve the table issue, but at least you helped me recognize where the printing issue was coming from!
G-5   Mac OS X (10.4.8)  
G-5   Mac OS X (10.4.8)  

Similar Messages

  • Convert a Postscript file to PDF

    Hi,
    I would like to know how to convert a postscript file residing on the application server, convert it to PDF and send it to a printer. What are the steps involve? Are there any function modules I can use?
    Thanks.

    hi,
    Could you explain how I can generate/create a spool? I'm new to this and I'm still learning. I know that when i sent something to the printer, the spool is generated and I can view the spools in SP01. Are you saying that I can call some kind of function to generate a spool? If so, how do I do that?
    Thanks.

  • Converting Multi page .eps files to .pdf Preview is broken

    I have in the past used Preview to convert multi page .eps files into
    .pdf files. Since I have upgraded to Tiger 10.4.3 Preview will no longer work.
    Does anyone know how to uninstall Tiger 3.03 version and go back to 2.xx version? Are there any utilities to do this for me? On my older mac (9.x) I have Adobe distiller.
    Thanks
    Max

    I have just copies the older version of Preview onto this machine and am running 2.10 of Preview to solve this problem.
    Max

  • Setting Font for converting multiple text files into PDF using VB 6.0

    Dear All,
    Am converting multiple text files into PDF using VB6.0. Currently, am unable to control the font face and size for the generated files. Below is the procedure am using for each file;
    Public Sub proc_convert_to_PDF(srcFilename As String, destFilename As String)
    Dim p_AcroApp As CAcroApp
    Dim p_VDoc As CAcroAVDoc
    Dim p_DDoc As CAcroPDDoc
    Dim IsOk As Boolean
    Set p_AcroApp = CreateObject("AcroExch.App")
    Set p_VDoc = CreateObject("AcroExch.AVDoc")
    Call p_VDoc.Open(srcFilename, "")
    Set p_VDoc = p_AcroApp.GetActiveDoc
    If p_VDoc.IsValid Then
    Set p_DDoc = p_VDoc.GetPDDoc
    ' Fill in pdf properties.
    p_DDoc.SetInfo "Title", Format(Date, "dd-mm-yyy")
    p_DDoc.SetInfo "Subject", srcFilename
    If p_DDoc.Save(1 Or 4 Or 32, destFilename) <> True Then
    MsgBox "Failed to save " & srcFilename
    End If
    p_DDoc.Close
    End If
    'Close the PDF
    p_VDoc.Close True
    p_AcroApp.Exit
    'Clear Variables
    Set p_DDoc = Nothing
    Set p_VDoc = Nothing
    Set p_AcroApp = Nothing
    End Sub
    What I need;
    1) to be able to set the font face of the destination file ( destFilename)
    2) to be able to set the font size of the destination file ( destFilename)
    Am using Adobe Acrobat 7.0 Type Library
    Kindly Help.
    Thanks in advance

    We didn't say it doesn't work. We said it isn't supported.
    There are a number of other ways to make a PDF. The one which would
    give the most control is if your application directly printed to GDI,
    controlling the font directly. This could print to Adobe PDF.
    You could look for an application that gives control of font for
    printing.
    You could use a text-to-PostScript system and distill the result. You
    could even look for a non-Adobe text-to-PDF.
    Working in the unsupported and dangerous world you chose, the font
    size for text conversion is set (and this is very bad design from
    Adobe) in the settings for Create PDF > From Web Page. There is no API
    to this.
    Aandi Inston

  • Unable to convert a postscript file on c3180

    hp photosmart c3180 printer
    printing from windows 8 64-bit ms word on a mountain lion mac using parallels 7
    unable to convert a postscript file
    unable to use after installing windows 8 64-bit

    If I understand what it is you want, open the PDF file in Preview and from the File Menu select Export as PDF. In the file selector there's a button labeled Show Details. Click it. Select encrypt, enter a password, and save using a different name. The new document will show a lock indicated it is passworded. Delete the original version.

  • To convert multiple image files to pdf using pdfsharp in C#

    Hey guys I have this C# code to convert any image file to .pdf using pdfsharp.dll. But I want to select multiple images for conversion please help. here's my code (plz note enable pdfsharp.dll in the reference)
    usingSystem;
    usingSystem.Collections.Generic;
    usingSystem.Linq;
    usingSystem.Text;
    usingSystem.Threading.Tasks;
    usingPdfSharp.Pdf;
    usingPdfSharp.Drawing;
    usingSystem.IO;
    namespaceConsoleApplication1
    classProgram
    staticvoidMain(string[]
    args)
    PdfDocumentdoc =
    newPdfDocument();
    doc.Pages.Add(newPdfPage());
    XGraphicsxgr =
    XGraphics.FromPdfPage(doc.Pages[0]);
    XImageimg =
    XImage.FromFile(source
    path...);
    xgr.DrawImage(img,0,0);
    doc.Save(destination path...);
    doc.Close();

    try this one
    public string CreatePDF(System.Collections.Generic.List<byte[]> images)
    dynamic PDFGeneratePath = Server.MapPath("../images/pdfimages/");
    dynamic FileName = "attachmentpdf-" + DateTime.Now.Ticks + ".pdf";
    if (images.Count >= 1) {
    Document document = new Document(PageSize.LETTER);
    try {
    // Create pdfimages directory in images folder.
    if ((!Directory.Exists(PDFGeneratePath))) {
    Directory.CreateDirectory(PDFGeneratePath);
    // we create a writer that listens to the document
    // and directs a PDF-stream to a file
    PdfWriter.GetInstance(document, new FileStream(PDFGeneratePath + FileName, FileMode.Create));
    // opens up the document
    document.Open();
    // Add metadata to the document. This information is visible when viewing the
    // Set images in table
    PdfPTable imageTable = new PdfPTable(2);
    imageTable.DefaultCell.Border = Rectangle.NO_BORDER;
    imageTable.DefaultCell.HorizontalAlignment = Element.ALIGN_CENTER;
    for (int ImageIndex = 0; ImageIndex <= images.Count - 1; ImageIndex++) {
    if ((images(ImageIndex) != null) && (images(ImageIndex).Length > 0)) {
    iTextSharp.text.Image pic = iTextSharp.text.Image.GetInstance(SRS.Utility.Utils.ByteArrayToImage(images(ImageIndex)), System.Drawing.Imaging.ImageFormat.Jpeg);
    // Setting image resolution
    if (pic.Height > pic.Width) {
    float percentage = 0f;
    percentage = 400 / pic.Height;
    pic.ScalePercent(percentage * 100);
    } else {
    float percentage = 0f;
    percentage = 240 / pic.Width;
    pic.ScalePercent(percentage * 100);
    pic.Border = iTextSharp.text.Rectangle.BOX;
    pic.BorderColor = iTextSharp.text.BaseColor.BLACK;
    pic.BorderWidth = 3f;
    imageTable.AddCell(pic);
    if (((ImageIndex + 1) % 6 == 0)) {
    document.Add(imageTable);
    document.NewPage();
    imageTable = new PdfPTable(2);
    imageTable.DefaultCell.Border = Rectangle.NO_BORDER;
    imageTable.DefaultCell.HorizontalAlignment = Element.ALIGN_CENTER;
    if ((ImageIndex == (images.Count - 1))) {
    imageTable.AddCell(string.Empty);
    document.Add(imageTable);
    document.NewPage();
    } catch (Exception ex) {
    throw ex;
    } finally {
    // Close the document object
    // Clean up
    document.Close();
    document = null;
    return PDFGeneratePath + FileName;

  • Error converting Word 07 files to pdf in Vista

    Hi
    I'm running Vista, Word 07, Acrobat 8.1.2. I don't use acrobat a lot in converting files, last time it was a few months ago.
    I wanted to convert a doc file to pdf but always get this error:
    Adobe could not open the the file because it is unsupported etc etc.
    I tried with docx still the same. but other non office files are ok e.g. jpg, txt, html etc. but not office files, ppt/doc/rtf/docx etc.
    When I try to print to pdf in word, word just freezes & is unresponsive, need to close it. At the bottom of word, it says converting page 1 etc. not stuck.
    I don't really know what to do. Have tried uninstalling/reinstalling, checked this forum for solutions but still the same. Even tried upgrading but still no avail!
    Please help.
    Thanks

    I don't have a printer at home. So can't test if I can print through a physical printer.
    it's kinda strange because it just affects ms office docs/ppt etc. others seem just fine apart from notepad as well. but right clicking say on a jpeg/txt file & convert to pdf is fine.

  • Converting PRN (PCL) file to PDF

    I'm helping a friend with something... She asked for an electronic version of some government public records. She received a Windows-generated PRN file (actually, several of them). I opened one up in BBEdit, and it's PCL, not PS (the Language line is PCLXL). There is no option to get the file in any other format (the provider is unwilling to be of any help). The document is hundreds of pages long, and she'd like it in PDF format. (Ideally she'd like it in a comma/tab-delimited format, but I suspect that's out of the question.)
    I believe it's possible to just dump a PCL-PRN file to a PCL printer using lp or lpr, and there are similar utilities on Windows (I have Windows XP in Parallels). But I haven't found a way to push the thing into a PDF file.
    Any suggestions?
    Thanks!

    Posting the solution for anyone happening to find this in a search.
    GhostPCL:
    http://www.ghostscript.com/GhostPCL.html
    did the trick. It's a Unix command-line application. It needs to be compiled, but the process was simple following four lines of instructions.
    The command to convert the .prn file to .pdf:
    pcl6 -sDEVICE=pdfwrite -dNOPAUSE -sOutputFile=outfile.pdf INFILE.PRN
    (replacing INFILE.PRN with the source file, and outfile.pdf to the name of the file to create.)
    The PDF created is pure graphics (mostly vectors); fonts are drawn as vectors but aren't fonts, so can't be selected as text. Thus the files are quite huge. But they're PDFs and otherwise quite usable.
    Enjoy!

  • Converting Multiple .EPS files into .PDF

    Dear Forum:  We have tried converting multiple .eps files into PDF using article 325977. This article in Adobe help is really designed to convert .ai files into either .eps or.pdf, our situation is to convert multiple .eps files into PDF. Everytime we run the macro, it simply takes the eps file and saves it as another eps file and does not convert. We have a "Save As" step that we have in the macro that is set to "Save As" PDF, but it still does not work. What are we doing wrong?

    Hi mephisto11757,
    You can convert the following file types to PDF with the Adobe CreatePDF service:
    Adobe Creative Suite® file formats Examples include: .psd, .ai, .indd
    Microsoft Word (2000, XP, 2003, 2007, 2010, & 2011) .doc, .docx
    Microsoft Excel (2000, XP, 2003, 2007, 2010, & 2011) .xls, .xlsx
    Microsoft PowerPoint (2000, XP, 2003, 2007, 2010, & 2011) .ppt, .pptx
    Microsoft Publisher (2000, XP, 2003, 2007, 2010, & 2011) .pub
    Text Files .txt
    Rich Text Format .rtf
    Adobe PostScript .ps
    OpenOffice Format .odt
    Star Office .sxw, .sxi, .sxc, .sxd, .stw
    Corel WordPerfect .wpd
    Image file formats .gif, .png, .jpg, .bmp, .tiff
    Regards,
    Florence

  • While saving a file, I have converted all my files to Pdf.  The only way to restore previous is to delete Adobe.  Does anyone have a soution?

    While saving a file, I have converted all my files to Pdf.  This made everything inaccessible, even Explorer.  I had to delete Adobe to get back to some of the previous files.  I tried to restore system to previous, but I kept getting a pop up message that said I did not have enough shadow space.  Does anyone have a solution?  Greatly appreciate your help.

    Application, file icons change to Acrobat/Reader icon

  • How can I convert an ART file to pdf?

    How can I convert an ART file to pdf?

    I do not even know what an ART file is.
    See this article what file types are supported by Adobe PDF Pack: http://forums.adobe.com/docs/DOC-1496

  • In converting a .docx file to .pdf the the Word functionality of linking screen tips to hyperlinks is lost. Why?  How can screen tips be saved in pdf if at all?

    In converting a .docx file to .pdf the the Word functionality of linking screen tips to hyperlinks is lost. Why?  How can screen tips be saved in pdf if at all?

    Thanks for replying. I am converting from MS Office Word document to Adobe Acrobat Document and opening with Reader XI - sorry my mistake.
    I now notice another problem. On trying to open a specific hyperlink in the pdf version I get the message  'Acrobat does not allow connection to: www.biblegateway.com'.  Why would there be a restriction? 

  • Trying to convert a word file to pdf and keep getting "An error occured while signing in"?

    Trying to convert a word file to pdf and keep getting "An error occured while signing in"?

    Or contact Adobe Customer Service via http://helpx.adobe.com/contact.html?product=export-pdf

  • I used to use the free version of Adobe Reader to convert my publisher files to pdf files. When I was making a booklet for our hockey team, it said I had to buy it. Now I bought it and it won't convert the files. I am ready to throw this computer out the

    I used to use the free version of Adobe Reader to convert my publisher files to pdf files. When I was making a booklet for our hockey team, it said I had to buy it. Now I bought it and it won't convert the files. I am ready to throw this computer out the window!! Can you tell me what is the problem? No it does not exceed 100 M. either.

    Adobe Reader never converted Publisher files to PDF, for free, never. I suspect you use to have the (paid for) Adobe Acrobat. Sometimes people have Acrobat (more than $300 worth) and install Adobe Reader over the top, losing that valuable software.
    That said, if you subscribed to PDF Pack it should do this conversion. What exactly happens now.

  • I have adobe acrobat pro for windows and it is freezing up when I try to convert a word file to pdf... I have tried to get this done six ways from Sunday but it is just not working... help!  Chris.

    I have adobe acrobat pro for windows and it is freezing up when I try to convert a word file to pdf... I have tried to get this done six ways from Sunday but it is just not working... help!  Chris.

    It would be helpful to know what version of Acrobat, WORD, and operating system.
    Without that info, I would suggest at this point to open your WORD file and then go to the print menu and print to file using the Adobe PDF printer. Open the created file in Distiller and see if you get a PDF. If so, check to see if AcroTray is running in the background.
    You say you tried many ways. It would help to know what you tried and what worked or did not work, and at what point the failure occurs.

Maybe you are looking for

  • How can I insert an arrow in a highlight video made in iMovie

    how can I insert an arrow in a highlight video made in iMovie?

  • IND CS3 and Acrobat 9 Pro

    I am working in IND CS3 version 5.0.4 and Acrobat 9 Pro version 9.0.0 Computer: Windows XP Pro, Ver.2002, SP 3 Dell Optiplex GX 620, Pent. D 3GHZ, 3.50GB RAM Question: I am new to the PC environment and have noticed that everytime I double-click an I

  • Email again

    So....I have not been able to access my email since the so called update occured in late March. I did not use yahoo (that I know of) but signed in through verizon.net. (I foolishly thought that would prevent issues as updates occured). I have changed

  • How to format the URI for Human task worklist UI project?

    This information is not easily found, so I am posting it here: When you click on the Administration Tab of the Human workflow component in EM, It allows you to enter an URI for the TaskDetail page. If you Auto-generate the taskdetail page, the URI fo

  • Best way to produce video for youtube

    Hi all I am a newbie here but wondered if anyone has any tips for using PE4 to produce high quality youtube video. I am capturing HDV from a Canon HV30. (As aside if anyone has any questions about how to get the HV30 / PE4 combination to work, please