Can't print from Adobe Acrobat 11.0.07 on my MAC OS 10.6 to HP PSC 1350.  Error: PSTOPDFFILTER/PSTOCUPSRASTER FAILED WITH ERR NUMBER 13.  How do I fix it so I can print?

Can't print from Adobe Acrobat 11.0.07 on my MAC OS 10.6 to HP PSC 1350.  Error: PSTOPDFFILTER/PSTOCUPSRASTER FAILED WITH ERR NUMBER 13.  How do I fix it so I can print?

i am getting the same error, suddenly, on 10.9.5

Similar Messages

  • Printing Error - pstopdffilter/pstocupsraster failed with err number -31000

    Hi All,
    I'm hoping someone could assist me with this. After googling like crazy for a solution I thought I had to post here on the forums. I'm a new Mac user (only a few days now) so please bear with me. I will also post this on the Java Forums because I don't know if this is a problem with my code or with the Mac settings.
    Setup
    I've got a Java Applet running on the mac (written in Eclipse 64 bit) on a Mac with OS X 10.6.4 on. Also, Java 1.6.0_21 (both 32 bit and 64 bit) is installed on the machine. The printer installed is a ZPL Label Printer (Zebra Technologies ZTC GK420d).
    If I use another application such as TextEdit to print, it works fine.
    *Problem Description*
    Whenever I try print from the Applet nothing comes from the printer, my code does not break or catch any exception at all but the printer queue gives the error: *pstopdffilter/pstocupsraster failed with err number -31000.*
    Code
    The code I use with this Java Applet works absolutely fine on Windows XP 32 bit (IE 7.0, Google Chrome and Firefox) as well as on Windows 7 64 bit (I.E 8.0, Google Chrome and Firefox) but never on the Mac. For any developers who might be able to help, the code is below:
    import java.applet.Applet;
    import javax.print.Doc;
    import javax.print.DocFlavor;
    import javax.print.DocPrintJob;
    import javax.print.PrintException;
    import javax.print.PrintService;
    import javax.print.PrintServiceLookup;
    import javax.print.SimpleDoc;
    import javax.print.attribute.PrintServiceAttribute;
    import javax.print.attribute.standard.PrinterName;
    import javax.print.attribute.HashPrintRequestAttributeSet;
    import javax.print.attribute.PrintRequestAttributeSet;
    import javax.print.attribute.standard.Copies;
    public class UKMJavaPrintApplet extends Applet
    public void init()
    System.out.println("Initialising UK Mail Java Printing Applet...");
    public void start()
    System.out.println("Starting UK Mail Java Printing Applet...");
    PrintLabelZPL("^XA^FO100,40^BY3^B3,,30^FD123ABC^XZ","Zebra Technologies ZTC GK420d");
    public void stop()
    System.out.println("Stopping UK Mail Java Printing Applet...");
    public void destroy()
    System.out.println("Preparing unload of UK Mail Java Printing Applet...");
    public int GetPrinterCount()
    PrintService[] services = null;
    int serviceLength = 0;
    try
    services = PrintServiceLookup.lookupPrintServices(null, null);
    if(services != null && services.length > 0)
    serviceLength = services.length;
    catch(Exception z)
    System.out.println("Failed to get printer count: " + z.getMessage());
    z.printStackTrace();
    return serviceLength;
    public String GetPrinterName(int index)
    String sPrinterName = null;
    String printerName = "";
    PrintService[] services = null;
    try
    services = PrintServiceLookup.lookupPrintServices(null, null);
    for (int k=0; k < services.length; k++)
    PrintServiceAttribute attr = services[k].getAttribute(PrinterName.class);
    sPrinterName = ((PrinterName) attr).getValue();
    if(index == k)
    printerName = sPrinterName;
    break;
    catch(Exception r)
    System.out.println("Failed to get printer name: " + r.getMessage());
    r.printStackTrace();
    return printerName;
    public Boolean PrintLabelZPL(String zplString, String printerName)
    String errStr = "";
    Boolean boolSuccess = false;
    try
    if(printerName != null && printerName != "")
    PrintService psZebra = null;
    String sPrinterName = null;
    PrintRequestAttributeSet pras = new HashPrintRequestAttributeSet();
    pras.add(new Copies(1));
    PrintService[] services = PrintServiceLookup.lookupPrintServices(null, null);
    for (int i = 0; i < services.length; i++)
    PrintServiceAttribute attr = services.getAttribute(PrinterName.class);
    sPrinterName = ((PrinterName) attr).getValue();
    if (printerName.equals(sPrinterName))
    psZebra = services;
    break;
    if (psZebra != null)
    DocPrintJob job = psZebra.createPrintJob();
    byte[] by = zplString.getBytes();
    DocFlavor flavor = DocFlavor.BYTE_ARRAY.AUTOSENSE;
    Doc doc = new SimpleDoc(by, flavor, null);
    System.out.println("Printing to: " + printerName);
    job.print(doc, pras);
    boolSuccess = true;
    System.out.println("Printing Successful.");
    else
    errStr = "Zebra printer not found.";
    System.out.println(errStr);
    boolSuccess = false;
    else
    errStr = "No printer name was provided.";
    System.out.println(errStr);
    boolSuccess = false;
    catch (PrintException e)
    System.out.println("Print Failed with PrintException: " + e.getMessage());
    boolSuccess = false;
    e.printStackTrace();
    catch (Exception f)
    System.out.println("Print Failed: " + f.getMessage());
    boolSuccess = false;
    f.printStackTrace();
    return boolSuccess;
    Does anyone have any ideas on how I can resolve this and print to the ZPL printer from my Java Applet on the Mac?
    Any help would be much appreciated.
    Thanks!

    We managed to solve our own problem. This was not directly a Java Problem, but a problem with the setup of the Zebra printer on the Mac. Printing directly to the ZPL Printer never worked and always gave the error Printing Error - pstopdffilter/pstocupsraster failed with err number -31000.
    To solve this, we had to use the CUPS (Common Unix Printing System) interface. CUPS is apparently installed standard with every Mac. Being a new Mac user I didn't even know this a week ago. We had to use CUPS to add the printer, set it to be a "RAW" printer and then add something called a Class. Now when printing from the Java Applet, we DO NOT print to the actual Zebra printer, we print to the Class.
    Here are the steps on how to accomplish all this:
    1. As an Admin user, log onto Cups using the Safari browser by entering *http://localhost:631* into the Address Bar.
    2. Select the Administration tab and click, ‘Add Printer’
    3. Select the required local printer and then ‘Continue’
    4. Enter a Name, Description, Location and uncheck the ‘Share This Printer’ checkbox, where:
    a. Name = Queue Name (e.g. Zebra_RAW)
    b. Description = Human Readable Description (e.g. Zebra1)
    c. Location = Human Readable Location (e.g. My Mac mini)
    5. Click ‘Continue’
    6. Click ‘Select Another Make/Manufacturer’ and select ‘Raw’. Click ‘Continue’
    7. Click ‘Add Printer’
    8. Check that Banners are ‘none’ and Policies are ‘stop-printer’ (Error) and ‘default’ (Operation)
    9. Click ‘Set Default Options’
    10. Under the Administration tab, click Add Class.
    11. Enter a Name, Description, Location and select the Members:
    a. Name = Queue Name (e.g. ZebraRAWClass)
    b. Description = Human Readable Description (e.g. ZebraRaw)
    c. Location = Human Readable Location (e.g. My Mac mini)
    d. Members = the Queue Name of the new raw printer
    12. The only visible printers on the list then will be your non-raw printer/s and the printer class which you just created.
    13. Now when printing from Java Code, you must use the class as the printer in order to print raw ZPL.
    So in my example code in the previous post, I would print like this: PrintLabelZPL("^XA^FO100,40^BY3^B3,,30^FD123ABC^XZ","ZebraRaw");
    And it works! I hope this can help others with the same / similar problem.

  • Mac Acrobat Pro 9.3 can't print : pstopdffilter/pstocupsraster failed with err number 13

    Summary
    Can't print PDF files from Adobe Acrobat Pro 9.3.0 on Mac OS X Snow Leopard (10.6.2) to Brother MFC-7820N Printer (connected via USB).  Print queue consistently shows "pstopdffilter/pstocupsraster failed with err number 13".
    Steps to reproduce
    Launch Acrobat Pro 9.3.0 on Mac OS X Snow Leopard 10.6.2
    Open SimpleOnePageDocument.pdf (attached)
    From File menu select Print
    From Print Dialog select Brother MFC-7820N printer
    Click Print Button
    Results
    Printing immediately fails.  Print queue shows "pstopdffilter/pstocupsraster failed with err number 13" (see attached picture)
    Expected Results
    Document prints
    Things I have tried
    Downloading latest drivers from Brother for Snow Leopard (fall 2009 drivers)
    System Preferences->Print and Fax->Reset Printing Subsystem
    Print->Advanced->Postscript Options->Font and Resource Policy - Greyed out so I could not change from Send by Range to Send for each page
    Notes
    I can print PDF files from the Preview application without any problems.
    System Info
    Operating System
    Mac OS X Snow Leopard 10.6.2
    Product
    Adobe Acrobat Pro 9.3.0 (installed as part of CS4)
    Printer
    Brother MFC-7820N connected via USB
    Printer Driver
    Brother MFC-7820N CUPS version 1.41

    I have exactly the same problem since I changed my Mac for an Intel one (10.6.2 instead of Power PC 10.4).
    My printer is a Canon MP610 but this has nothing to do with the printer and it's software. Adobe seems to be completely deaf to this issue which is very annoying as most of the downloaded documents you need to print are pdf nowadays.
    I surrounded the issue by copying/pasting the pdf image in a jpeg file... This is very time consuming and I'm still waiting for a proper answer to this bug by Adobe.
    Let's continue to write, hoping Adobe will begin to move on the subject...

  • Can I upgrade from Adobe Acrobat 9 Pro for Windows to Adobe Acrobat IX Pro for Mac?

    Hello,
    I have a question concerning Upgrades:
    Can I upgrade from Adobe Acrobat 9 Pro for Windows to Adobe Acrobat IX Pro for Mac?

    Hi Christian ,
    I am not sure if you are eligible to upgrade from Adobe Acrobat 9 Pro for Windows to Adobe Acrobat IX Pro for Mac as this is an older version of Acrobat.
    Refer this link to connect with the chat support team ,they will assist you further with the same.
    https://helpx.adobe.com/adobe-connect/kb/connect-chat-support.html
    Regards
    Sukrit Dhingra

  • Can I upgrade from Adobe Acrobat 6.0 Standard (on an older PC) to 6 or newer on a new HP Pavilion23?

    Can I upgrade from Adobe Acrobat 6.0 Standard (on an older PC) to 6 or newer on a new HP Pavilion 23?

    You may be able to do some work arounds with AA6 on 32-bit systems. You are probably out of luck with AA6 on 64-bit systems. (I got AA5 working with some workarounds on Win7, 32-bit) As for the upgrade, you can check at the Adobe store for the upgrade compatibilities. I think it is now at AA9, maybe AA8 for an upgrade. So, you are kind of stuck with buying a new version (no upgrade).

  • No print from adobe acrobat

    No print pdf from adobe acrobat, type of mistake appcrash.

    Hi josemanuel_pf,
    Please provide us more information about the problem you facing. Are you getting any error message.
    Let us know which application of Adobe you are using including dot version.
    Also let us know which computer you use Mac or Windows.

  • How can I upgrade from Adobe Acrobat v4.0?

    After reinstalling all the software on my pc I found a problem with Adobe Acrobat which had worked perfectly well for years. When i open Outlook, I now get a message: "Microsoft Word has detected that your computer has a version of Adobe Acrobat PDFMaker which is known to cause instabilities in Word 2002. To resolve this issue download an update from Adobe's website."
    The original version I had installed was v4.0 and the updates had all installed fine. But now, when I try to intal updates it doesn't work - it can't find versions of other updates like 4.05!
    Does anyone know how to fix this?
    Thanks
    GG

    Did you upgrade your system to Windows XP? If so, Acrobat 4 (or 4.05) doesn''t support XP. Version 4.05 was the first version to support Office 2000 but support for Word 2002 (Word XP) wasn't introduced until later.
    Upgrades (to version 9) are available from the following versions of Acrobat:
    http://www.adobe.com/products/acrobat/faq/#item-3

  • Printing from adobe acrobat or word

    Hi!
    I have never been able to print the resulting file from inside the Word or adobe Acrobat applications on my Mac OSX G5. As long as I could save as
    pdf on the desktop, and then open with preview and print from there I was
    sort of happy. But if someone can tell me what is causing this problem already I'd be happy to fix this.
    Now what brings me here is that documented abobe acrobat documents appear unfilled (none of the added text shows up) when I try and print such resulting pdf file e.g. when someone else has edited and sent me the file over an email. The added text is gone and I do not see it with preview prior printing either. This is quite ennoying. I can of course grab the screen and print the result, but the page is smaller this way. Note that the save as pdf and preview options upon printing from inside adobe acrobat are grey which
    does not allow a way out of this situation.
    So what can I do to be able to print documented pdf adobe acrobat documents? Any settings or explanation for my printing problems?

    Fallard,
    No clue, (and sounds goofy to me)...
    You might try downloading Printer Setup Repair from:
    http://www.fixamacsoftware.com/software/index.html
    It's shareware, and might help...
    Hope it helps a little!
    Bob

  • Printing from Adobe Acrobat 8.1 under OS 10.6.7 to CANON PIXMA MX300 printer

    If I DRAG the icon for my Adobe Acrobat file (made with AA ver.8.1 on OS 10.6.7) to printer icon (printer is a CANON PIXMA MX300 I bought at Apple store), I print just fine but if I try to print from within Adobe Acrobat, I get an error message in the Apple printer queu every time. I had no problem on OS 10.5.8 with the same versions of software applications. Anybody know what the h is going on here? I've restarted printer, computer, changed the ink cartridges, run software updaters, run DU... ??????????

    Actually Human wrote:
    ...my Adobe Acrobat file (made with AA ver.8.1 on OS 10.6.7) ... I've run software updaters, run DU... ??????????
    Consider running software updaters again as the current version of Snow Leopard is 10.6.8 and Adobe Acrobat is 8.1.5 (AA Pro is 8.3.1). If you use Software Update to update to OS 10.6.8, afterwards run check software update again to see if it offers updated drivers for Canon printers. If not, try the Canon website.
    HTH

  • Issues with printing from Adobe Acrobat 9.5

    When I try to print a pdf it creates a .pm file instead of sending the document to the printer.  How can I correct this?

    In the Print dialog click on Advanced and tick off the "Print to file" box.

  • Printing from Adobe Acrobat Pro 9

    I combined 10 Excel files into a single pdf for the purpose of being able to number the pages consecutively instead of having them restart at '1' when each file was printed.  The file is printed double-sided booklet.  The issue is that each of the original files does not have an even number of pages to print.  As such, the beginning of one report may start on the back of another report.  The users want to be able to see the start of each report on the front side of a piece of paper.  In essence, I need the printing to act as though a blank page is being printed for each report that has an odd number of pages.  It is okay for the blank page to be numbered, but need the next report to print on the front side of the paper.  Are there print settings that allow that to happen?  I don't want to manually insert the blank pages since I have to do this at least 20 times each month and some files have up to 30 reports in them.  Any help is greatly appreciated.  Thanks!

    Found it:
    Advanced > Print Production > Convert Colors >
    Make sure all the items here in the illustrations below match exact what is set in InDesign

  • Unable to Print using Adobe Acrobat Reader - MacBook Pro - Wireless Environmen​t

    I have a Macbook Pro with 10.6.4 OS
    My printer is the HP Photosmart C5180 All-in-One
    It is connected via ethernet cable to my router (Netgear Wireless N Router) via 10.0.0.1 Wireless Setting.
    I am able to print everything with any programs, except Adobe Acrobat.
    When I send any files to the printer, i get the following error:
    Error:  pstopdffilter/pstocupsraster failed with err number 13
    I uninstalled the driver, installed it (from the HP website latest driver), I'm able to get the printer to work on everything else, I'm able to print a test page, but... I can't print anything with Adobe Acrobat...........
    Any suggestions?  I do use Adobe Acrobat Reader a lot
    This question was solved.
    View Solution.

    OK, let's try more thoroughly uninstalling the hp software for 10.5 using the 'scrubber' option.  First, install the wrong software from the CD (for 10.5) so we can more thoroughly uninstall it.  Next:
    Go to Applications/Hewlett Packard/ click on HP Uninstaller
    Click on Continue
    Highlight your device on the left pane
    Hold the Ctrl, Opt and Cmd keys and click on Uninstall << This is the scrubber option
    There will be a pop up that asks if you are sure you want to uninstall ALL hp software. (At this point, if you continue, any HP printers you have installed will need to be reinstalled)
    Click Continue and let it finish
    Restart your Mac
    Now, run a Software Update.
    Finally, download and install the "Full Featured" Driver and Software from the "Support & Drivers" link at the top of this page.
    Say thanks by clicking "Kudos" "thumbs up" in the post that helped you.
    I am employed by HP

  • Can't print from Adobe 9.4.1

    Any known fix to be able to print any documents in Adobe? It started a couple months ago. I'm assuming it started when I downloaded the Adobe 9.4.1 update?
    I get this error message - pstopdffilter/pstocupsraster failed with err number 13
    Any help would be greatly appreciated.

    I am having the same problem, seems to have just started happening with the most recent Adobe update ... I also just updated my Canon drivers (using i9900 printer.)
    Anyway, my workaround for printing a PDF was to use OSX Preview App. I think this is something wrong with Adobe's latest update, because every other application prints just fine.

  • Printing problem from Adobe Acrobat 8 and Reader 9

    Hello together,
    i've got a problem while printing from Adobe Acrobat Professional 8 and Acrobat Reader 9.
    I've got the Error: /usr/libexec/cups/filter/pstoraster failed
    It happens with my new Canon ip4700 and my brother laser printer.
    I got the newest available Version of OSX and the Adobe Updates.
    The PDF files are printed in the "OSX Preview", but not in the Adobe Software
    Happy for any help or advice.
    Best,
    Lukasz

    Acrobat 8 and Reader 9 are not compatible. The only versions of Reader and Acrobat designed to be compatible with each other in Windows is Reader and Acrobat X.

  • I cannot print from Adobe on My Mac

    I have tried all I know to do, but I cannot print from Adobe Acrobat Pro 9 from my Mac running Mac OSX - 10.5.7.  I have two different printers - a Cannon MF4150 & an HP Color Laserjet 2550.  When I click print, the preview is not available and it just goes into queue and never prints.  I am also running VMware Fusion -- I cannot get it to print from the Windows XP virutal machine either.  I am using just the standard Adobe Reader 9 in the Windows side.  I don't know what could possibly be wrong.  The Windows XP side is printing through a sharing mode with the mac side.  Does anyone have any idea what might be wrong?

    I've tried that multiple times as well as resetting the printers themselves.  I've deleted and re-added the drivers as well.  Any other suggestions?

Maybe you are looking for

  • Dreamweaver CS6 slow with hosted SVN

    I'm using a trial, hosted version of SVN (Beanstalk) with Dreamweaver CS6 as my client on Windows 7, 64 bit with a T3 connection. Ever since I added SVN, Dreamweaver has slowed to a crawl. Version control processes are slow and it seems to hang perma

  • Integrated WLS version 10.3.3.0

    I just downloaded JDeveloper 11g Release 1, and I am trying to run a sample Struts 1 application, MailReader. I started the integrated WLS, and surfed to http://localhost:7101/console. I was presented with the login page, and I cannot log in. I have

  • Help needed with a KM4M-V and a Athlon XP 3000

    Hi i have just upgraded my PC and have fitted a KM4M-V motherboard and a Athlon xp 3000 cpu,the problem i have is it is only be recognised as a Athlon 1800 ,i have contacted the seller and he tells me i need to configure the FSB correctly to 10.5 X 2

  • HT4926 If I download Final Cut Pro X, can I move it or re-download it to a new machine later?

    If I download FCP X, can I move it to another machine later? I'm thinking of buying a new machine, but don't want to wait until then for the software.

  • ChaRM Troubles

    I'm having an issue with ChaRM that I haven't seen before. 1. When I approve a change request (SDCR) and it creates a Correction (SDMJ), but the status starts out as "In Development" instead of "Created". The status profile has "Created" as the initi