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...

Similar Messages

  • 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

  • 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.

  • I downloaded Adobe Acrobat Pro, but now can't print any .pdf.

    Have Window 8. I downloaded Acrobat Pro from Kivuto, deleted it at suggestion of Adobe help chat, and downloaded it again last night. I have tried multiple .pdf documents on both printers. My wife logged into her work computer through Citrix and used Acrobat Pro from the high school where she works, and still can't print. Any ideas?

    This forum is actually about the Cloud, not about using individual programs
    For product specific questions you will do better in the specific product forum
    If you start at the Forums Index http://forums.adobe.com/index.jspa
    You will be able to select a forum for the specific Adobe product(s) you use
    Click the "down arrow" symbol on the right (where it says ALL FORUMS) to open the drop down list and scroll
    http://forums.adobe.com/community/acrobat

  • In Acrobat pro 9, I can't find staple and fold options for booklets and no matter what options I choose in the print dialogue my booklet ends up with pages upside down and out of order?

    In Acrobat pro 9, I can't find staple and fold options for booklets and no matter what options I choose in the print dialogue my booklet ends up with pages upside down and out of order? I am working on a Macbook pro running OS X 10.9.4.  Our printers are fully capable for booklets with staples and folds. Would love some help. Thank you!

    To: ~graffiti
    (This email is not intended to go on public forum -- but I wanted to respond
    to you)
    Thanks for your reply....FYI...I was trying to download from www.adobe.com on
    the specific page that has downloads of your products.    As far as the
    alternate source is concerned I am not totally sure what the capabilities it has as
    I am recovering from a hospital stay and had to send my wife to retailer to
    pick this up because I am accessing email from home until I return to work and
    need something to work now.  I don't yet have the SW.  (I would have had her
    buy the actual Adobe Pro 9.0 -- but it is a wapping $499 and change).
    Regards,
    Staurt Rednor ("Stu") - [email protected]
    ===========================================================
    Subj:   New message: "No matter what I try can't download
    Adobe Pro 9.0 or free Adobe Reader"   
    Date:   4/5/2009 7:38:17 PM Eastern Daylight Time  
    From:   [email protected]   
    Reply-to:   [email protected] 
    To: [email protected]  
    Sent from the Internet (Details)   
    SGuitar43,
    A new message was posted in the thread "No matter what I try can't download
    Adobe Pro 9.0 or free Adobe Reader":
    http://forums.adobe.com/message/1867664#1867664
    Author  : ~graffiti
    Profile : http://forums.adobe.com/people/~graffiti
    Message:

  • Deactivate mac acrobat pro on laptop, activate on macPro floor-top--can't uninstall, can't launch (config error 1)

    Trying to do two things: switch Acrobat Pro XI 11.0.6 from laptop to floor-top (MacQuadProDual what'sit)    AND update from 11.0.6. to 11.0.9.
    11.0.6 already on the floor-top gives me "Configuration Error 1"  check Adobe Support.
    All attempts to Uninstall 11.0.6 crash the Uninstaller.
    Launch, as noted above, results in the Configuration Error 1.
    I deactivated the laptop first,  then tried to launch and re-activate Acrobat Pro 11.0.6 on the floor-top. Error as above.  Attempted matching 11.0.6 UnInstaller--crashes as noted.
    Surely there not so many Acrobat Pro thieves in the world that Adobe has to go to these (non-working) extreme lengths to protect it's monopoly-of-short-duration (17 years is it still? I think that's the # of years set out in the US Constitution).  Or perhaps they should petition Congress, CIA, Justice for permission to use the new US Standard for legal matters, "Enhanced".  "Enhanced Interrogation" is our new trend-setting feature in treatment of prisoners of war, as per our self-proclaimed US Convention in 2001 (where we agreed with ourselves that "Torture Is A Person, Too" (oops. thinking of something else).  Mean to say, "Torture Is the New Black. drat--meant "Torture Is the New US Policy."
    So, by analogy, we can use "Enhanced Deposition-Taking" in civil and criminal lawsuits, "Enhanced Examination, Cross-Examination, Re-Examination, and Re-Cross Examination. We could use Enhanced Ticketing in misdemeanor cases.
    And of course, we should be able to implement Enhanced Impeachment Procedures in ridding ourselves of traitorous presidents, congress-persons, supreme court and federal judges,  and civil servants.  It would be neat to see the Enhanced Impeachment Procedures on C-SPAN, from the well of the House. They'd have to use the finest of spring-water, of course. And Turkish washcloths. I guess any high-end surfboard, with appropriate no-slip safety straps added, would serve as the Enhanced Reclining Representative's Seat.
    But I digress.
    Here's another point: I have four  internal drives running on the floor-top Mac. Months ago I did switch start-up disks from a 1TB to a 2TB drive and I don't think I had used the Acrobat Pro since that time. Should I do something with stale cookies, or dried-up brownies or cake wedges? Pie wedges?  Maybe just remove the raisins and Toll House Chocolate Morsels from the cookies, leaving the cooked batter behind?
    Any assistance would be appreciated.
    Yours in sorrow, 
    bw 

    OK. Fingers crossed. Maybe someone out there has an answer, if Adobe doesn't.

  • Any ideas how to fix my mac book pro to canon pixma mp640 printer connection?

    Anyone have any ideas how to fix my mac book pro to canon pimxa mp640 printer link? The two are connected manually yet the ! remains on the 'print' page next to the printer name. it was working fine until i changed the ink cartridges. Without the wireless password - which I've never had and don't supposedly need as it's not a wireless connection, I am being prevented from resuming printing.

    If it's on a windows network you have to enter your (windows) log in (name/password) credentials.
    This should be a 1 time event. It will remember it thereafter.

  • My wife has an I Tunes account on our PC, I have an I tune account on my Mac Book Pro.   How can I get the music from her account on the PC to my account on the Mac Book and I phone?

    My wife has an I Tunes account on our PC, I have an I tune account on my Mac Book Pro.   How can I get the music from her account on the PC to my account on the Mac Book and I phone?

    IflyDavie wrote:
    I need help to delete my icloud account from my iPad.  It has "Find my iPad" on it and won't let me delete without the old password.  I don't want to reset password as it will require reset of Mac Book Pro and 2 iphones.  Help appreciated.
    Your description of the problem is a bit confusing.  Do you have ONLY ONE Apple ID or do you have MORE THAN ONE?

  • Acrobat Pro 9 - Chose Greyscale in print properties, but it is not changing it to greyscale

    Acrobat Pro 9 - Chose Greyscale in print properties, but it is not changing it to greyscale.  I tried to go through all the settings, but I cannot figure it out.  I am printing a color PDF document to a greyscale document.
    Not sure if I am in the correct community group.

    thank you for this post.  It still works and is a required "fix" as of Oct 2010.
    Somehow, in my network adapters, a wireless adapter called Microsoft Virtual WiFi Miniport Adapter was there (this may have something to do with the virtualization abilities of Windows 7). Anyway, I disabled that by going to
    Network and Sharing Centre -
    Change Adapter Settings, and then
    right clicking on it and
    choosing disabled.
    Next thing I knew Adobe Updater was checking away merrily.

  • Erased mac book pro (2009), how can i reinstall osx?  it won't recognize any old system disc

    erased mac book pro (2009), how can i reinstall osx?  it won't recognize old system discs

    Did you try:
    Install or Reinstall Mavericks or Mountain Lion from Scratch
    Be sure you backup your files to an external drive or second internal drive because the following procedure will remove everything from the hard drive.
    OS X Mavericks- Erase and reinstall OS X
    OS X Mountain Lion- Erase and reinstall OS X
    OS X Lion- Erase and reinstall Mac OS X
    Note: You will need an active Internet connection. I suggest using Ethernet if possible
                because it is three times faster than wireless.
    If you don't have the original discs that came with the computer, then you can install the retail version of Snow Leopard:
    You can purchase Snow Leopard through the Apple Store: Mac OS X 10.6 Snow Leopard - Apple Store (U.S.). The price is $19.99 plus tax. You will be sent physical media by mail after placing your order.
    After you install Snow Leopard you will have to download and install the Mac OS X 10.6.8 Update Combo v1.1 to update Snow Leopard to 10.6.8 and give you access to the App Store. Access to the App Store enables you to download Mavericks if your computer meets the requirements.
         Snow Leopard General Requirements
           1. Mac computer with an Intel processor
           2. 1GB of memory
           3. 5GB of available disk space
           4. DVD drive for installation
           5. Some features require a compatible Internet service provider;
               fees may apply.
           6. Some features require Apple’s iCloud services; fees and
               terms apply.

  • New HD, Now Adobe Acrobat Pro 8.16 Won't Print PDFs to HP2605dn

    Had a HD die. Replaced with new one. All humming along on my OS 10.4.11 G4Powerbook except now newly re-installed Adobe Acrobat Pro 8.16 won't print PDFs to my HP2605dn printer. Adobe Reader 9.1.3 and Preview will print my PDFs so that's a workaround, but would like to get Acrobat Pro back to pre-grey screen of death functionality.
    Have sourced hp:
    http://tinyurl.com/ydpcdzu
    so it seems to be a known issue.
    and also sourced and did due diligence with troubleshooting list:
    http://kb2.adobe.com/cps/403/kb403864.html
    (even though technically I'm not on 9 - same difference)
    I'm running out of ideas here. Anyone feel like playing House, M.D. with my problem???

    What message do you get, exactly? (Please don't include the serial itself).
    Is this using the original CD that came with the Acrobat 8 product?
    Does it say anything about a "qualifying product"?

  • I have a new mac book pro/LION and can't access my back up data when I click on "enter time machine".  I need the back up data that I could access on my old mac book pro (that is now broken). Tnx so much

    I have a new mac book pro/LION and can't access my back up data when I click on "enter time machine".  I need the back up data that I could access on my old mac book pro (that is now broken). I can only access time machine  back up data that I've obtained since starting the new mac book pro.  Tnx so much

    Try doing a click-and-hold on the Time Machine icon in the Dock, then select "Browse Other Time Machine Disks".
    By the way, you've been misled by poor field labeling on this forum into typing a large part of your message into the field intended for the subject.  In the future just type a short summary of your post into that field and type the whole message into the field below that.

  • Ei just paid for Adobe Acrobat Pro and I can not download the program, verytime i go to down load it tells me it doesn't download in my language which is english?why is this program I ordered not letting me download

    i just paid for Adobe Acrobat Pro and I can not download the program, every time i go to down load it tells me it doesn't download in my language which is English? why is this program I ordered not letting me download

    http://www.howtogeek.com/120277/how-to-install-flash-on-the-nexus-7-and-other-jelly-bean-devices/
    You do not need a Beta channel build of Firefox (which currently is 32.0b6) to use Flash as the issue was you needed Firefox 27.0 or newer to use the old Flash 11.1 plugin on Android '''4.4'''. after it came out on tablets/phones.
    What Nexus 7 version do you have as there was a 2012 and a 2013 model. A easy way to tell if it is a 2013 is it has a camera on each '''back''' and front while 2012 only has one on front.
    If it is the 2012 then it has a Nvidia Tegra 3 so the old Flash 11.1 Plugin is disabled.
    For reading only as Bugzilla is not a discussion forum or for "me too" comments.
    *[https://bugzilla.mozilla.org/show_bug.cgi?id=968219 Bug 968219 - flash does not work on Nexus 7]
    *[https://bugzilla.mozilla.org/show_bug.cgi?id=957694 Bug 957694 - Hang/deadlock with Flash on 4.4 on Tegra3]

  • Is any program like excel but for mac book pro so i can do a catalog list

    is any program like excel but for mac book pro so i can do a catalog list?

    A very good, no-cost option is LibreOffice:
    http://www.libreoffice.org/discover/libreoffice/
    It is compatible with MS Office including Excel.

  • I installed CS6, including Acrobat Pro, now I can't open Acrobat or PDF documents.

    I installed CS6, including Acrobat Pro, now I can't open Acrobat or PDF documents. All other CS6 applications are available. The icon for Acrobat just shows the internet explorer icon.

    There is a special procedure for Acrobat as part of CS. It goes something like opening one of the other applications and activating, then opening Acrobat (I think the others need to stay open) and activating it. It seems like a strange procedure and is likely documented in your info -- but I can't say for sure.

Maybe you are looking for

  • Ios6 wifi thing fixed atleast for me

    downloaded update to itunes plugged in iphone erased the phone and restored it wifi issue went away perhaps doing it from the phone has an issue? as we speak im restoring my phone through wifi on icloud

  • Help on procedure from a code at asktom...

    hello all, i found this procedure on asktom.oracle.com... http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:1352202934074 and for some reason i cant get it working..here is the script... drop table alert_log; create global temporary

  • Search based on chosen group of contracts

    Hi, I've got a situation where I have two different databases to get data. Database #1 stores application specific data in particular a system of grouping common contracts together. Database #2 stores the entire information specific to any contract.

  • Save a received sound file received in MMS?

    As stated. Someone sent me an MMS with an audio file. Has anyone found a way to get the file out of the message app? Thanks

  • [NEW] initscripts-wireless - initscripts to support wireless

    I found it a rather big oversight that support for wireless wasnt built into /etc/rc.conf and /etc/rc.d/network So I did it myself. Grab an arch package here: http://members.optusnet.com.au/hrayner/ - pkg.tar.gz Added wireless support on boot. Config