Printing PDF Files takes forever

I'm new to the mac world, but love it. It takes forever to print pdf files on my iMac. I'm using an HP3050 Laserjet, plugged directly into the iMac. Never had this problem with the printer connected to my Vista Laptop.
I started to print a 2 page pdf 9 minutes ago and still have not gotten a pageout of the printer. PDF File is only 132 KB.
Any advice would be greatly appreciated

David Goodman1 wrote:
It was happening with preview and adobe pdf viewer. I tried an experiment, unplugged the usb cable and re-set the printer to its defaults.
That solved part of the problem. It now prints pdf's quickly, but any document, word,pdf etc that I try to print, the printer now beeps and prompts for a manual feed, press enter for confirmation. After pressing the enter button on the printer whatever file I'm trying to print comes out.
Okay, the printer thinks that you're feeding paper from the manual feed slot, not from the paper tray. When you select 'Print', the printer dialog box should come up. There are two basic styles for the printer dialog box:
1 basic, which has seven items in it: the printer ID pull-down menu, which allows you to select printers if you have more than one printer; in my case, I'd have Brother HL-2070N, Brother MFC-440CN, Adobe PDF 8.0, and a few other items on the list. It would also show the printer presets pull-down, the four print system buttons (PDF, Preview, Cancel and Print) and the dialog control triangle.
2 complete, which can be access from the basic dialog by clicking on the dialog control triangle. This will zoom out the dialog box to include the full array of options available for that printer. What options show depend on which printer you have, but one of them will be a pull-down menu which usually has the name of the app you're trying to print from. One of the items on that menu will be 'Print Feed' or something similar. Select that item. The dialog will zoom out and show you the various print feed options. It is probable that there will be a checkmark next to 'manual feed' or something similar. Select 'automatic' or 'tray #1' or similar. Print normally.
Once you have printed something with the correct settings the print system will remember the settings you want and will keep them until you change them. Just remember that if you change them, the system will remember the new settings until you change them back.
Plus, printing #10 envelopes no longer works correctly, the address information only partially prints and is un-readable.
That's almost certainly because it things that it's printing letter-size paper from the manual tray. One of the settings under 'Print Settings' or similar should allow you to select the size and type of paper; if you select #10 envelope, it will adjust accordingly. Note that unless you specify otherwise, if you select #10 envelope the system will usually automatically select the manual feed for you. It will go back to whatever feed setting had been made before printing envelopes once you select a different type of paper. (At least that's how it's worked in every printer I've used for quite some time now.)
I'm going to plug the printer back into my Vista Laptop and see if it goes back to normal.
It's not hardware-related, it's driver-related, so you should be able to print from Vista without a problem.
If you do have a problem, let us know 'cause then the problem is not a driver problem. And if it's not a driver problem you may yet get to buy a new printer, 'cause fixing printer hardware is usually more expensive than just tossing the printer and replacing it. I would charge you at least $50/hour plus parts to fix this kind of thing. You can get a new printer for under $100. You make the call.
Is there any kind of "terminal" command I can use to re-set how the Mac is dealing with the printer?
if you really want to see the guts of the print system, you can go to the CUPS pages on your system, but you really don't want to do that unless you absolutely have no choice. The CUPS pages, the Common UNIX Printing System pages, on your system are available if you launch your web browser (any web browser) and go to <http://127.0.0.1:631/printers>. There's a whole lot of info in there, but playing inside there is not for the faint of heart.

Similar Messages

  • Printing a PDF file takes forever

    My HP laser printer is quite fast. But when sending a PDF file to print (open it in Acrobat full version and send to print) -- it takes forever, even if the file is not large at all....
    ????

    Do you notice any difference in copy quality? Is Reader sending low res photos, etc?
    Open the file in Acrobat Pro and optimize it. Advanced> Print Production> pdf optimizer.
    Play with the settings. You may have some embedded photos or scans with much more resolution than you need to get good quality from your printer.

  • Newest Adobe Reader not working with 8.1 IOS...Adobe icon does not show when pdf docs are saved...also printing pdf documents take forever.  I uninstallled and reinstalled...issues continue

    Latest AdobeReader not working properly with 8.1 IOS...Adobe icon does not show on saved PDF's and printing from PDFs takes forever. I uninstalled and reinstalled latest Reader

    zoer1,
    Adobe icon does not show on saved PDF's
    Would you provide more details about the problem?  A screenshot would be helpful.
    The following FAQ document describes the steps to add a screenshot to your forum message.
    How to add a screenshot to a forum message from iPad/iPhone
    Regarding printing PDF documents...It depends on the PDF document that you are trying to print.  In general, it will take longer to print more complex and larger PDF documents.
    If you are willing to share your PDF document (that takes forever to print) with us at [email protected], we can test it with the same version (11.6.3) of Adobe Reader on different iOS versions (iOS 7.x vs. iOS 8.x).  Please include the link to this forum (https://forums.adobe.com/thread/1616231) in your email message for reference.
    Actual printing is handled by iOS (not by Adobe Reader) via AirPrint over Wi-Fi connection.  We've heard from other users about iOS 8 Wi-Fi connectivity problems.
    You may also want to search for similar issues on Apple Support Communities.

  • How to directly print PDF file(which is stored in SAP) in ABAP report?

    Hi experts,
    I searched SDN for printing PDF file but everything is about OTF to PDF and to use fm: CONVERT_OTF which is not the solution for my problem.
    I have to build ABAP report which will take the PDF file attached to SAP document (CV02N) and print it.So, which function module or program can I use to print the PDF file?
    Thank you very much.
    Kind regards,
    Danijela

    Dear
       this is the code for down load smartform for PDF format. its working properly
    2nd way is
    set your Acrobat Printer as your default printer
    when you print select printer as LOCAL
    then you will file dialog box for Naming PDF
    DATA  :  T_OTF          TYPE ITCOO OCCURS 0 WITH HEADER LINE.
      DATA  :  WA_CTRLOP      TYPE SSFCTRLOP.
      DATA  :  WA_OUTOPT      TYPE SSFCOMPOP.
      DATA  :  T_OTFDATA      TYPE SSFCRESCL.
      DATA  :  T_PDF_TAB      LIKE TLINE OCCURS 0 WITH HEADER LINE.
      DATA  :  V_FILESIZE     TYPE I.
      DATA  :  W_BIN_SIZE     TYPE I.
      WA_CTRLOP-GETOTF = 'X'.
      WA_CTRLOP-NO_DIALOG = 'X'.
      WA_OUTOPT-TDNOPREV = 'X'.
      CALL FUNCTION P_LV_FNAME
        EXPORTING
          OUTPUT_OPTIONS     = WA_OUTOPT
          USER_SETTINGS      = 'X'
          CONTROL_PARAMETERS = WA_CTRLOP
        IMPORTING
          JOB_OUTPUT_INFO    = T_OTFDATA
        EXCEPTIONS
          FORMATTING_ERROR   = 1
          INTERNAL_ERROR     = 2
          SEND_ERROR         = 3
          USER_CANCELED      = 4
          OTHERS             = 5.
      T_OTF[] = T_OTFDATA-OTFDATA[].
      CALL FUNCTION 'CONVERT_OTF'
        EXPORTING
          FORMAT                = 'PDF'
          MAX_LINEWIDTH         = 132
        IMPORTING
          BIN_FILESIZE          = W_BIN_SIZE
        TABLES
          OTF                   = T_OTF
          LINES                 = T_PDF_TAB
        EXCEPTIONS
          ERR_MAX_LINEWIDTH     = 1
          ERR_FORMAT            = 2
          ERR_CONV_NOT_POSSIBLE = 3
          OTHERS                = 4.
      DATA  :  LV_DOWN_FILE TYPE RLGRAP-FILENAME.
      DATA  :  LV_TEXT      TYPE STRING.
      CASE SSCRFIELDS-UCOMM.
        WHEN 'REPRUNMOLD'.
          CONCATENATE '(' SO_SCHDT-LOW '-' SO_PLANT-LOW ')' INTO LV_TEXT.
          CONCATENATE '\\lkdb01\FTP-Loadstar\0.PP_Planning\ZPP014\Run_Moulds\' SY-DATUM '-' SY-TIMLO '-' 'Running Mould' '-' LV_TEXT '.pdf' INTO LV_DOWN_FILE SEPARATED BY SPACE.
        WHEN  'REPLINESIT'.
          CONCATENATE '(' SO_SCHDT-LOW '-' SO_PLANT-LOW '-' SO_LINE2-LOW ')' INTO LV_TEXT.
          CONCATENATE '\\lkdb01\FTP-Loadstar\0.PP_Planning\ZPP014\Line_Situation\' SY-DATUM '-' SY-TIMLO '-' 'Line Situation' '-' LV_TEXT '.pdf' INTO LV_DOWN_FILE SEPARATED BY SPACE.
      ENDCASE.
      CALL FUNCTION 'WS_DOWNLOAD'
        EXPORTING
          BIN_FILESIZE            = W_BIN_SIZE
          FILENAME                = LV_DOWN_FILE
          FILETYPE                = 'BIN'
        IMPORTING
          FILELENGTH              = V_FILESIZE
        TABLES
          DATA_TAB                = T_PDF_TAB
        EXCEPTIONS
          FILE_OPEN_ERROR         = 1
          FILE_WRITE_ERROR        = 2
          INVALID_FILESIZE        = 3
          INVALID_TYPE            = 4
          NO_BATCH                = 5
          UNKNOWN_ERROR           = 6
          INVALID_TABLE_WIDTH     = 7
          GUI_REFUSE_FILETRANSFER = 8
          CUSTOMER_ERROR          = 9
          OTHERS                  = 10.
      IF SY-SUBRC <> 0.
        MESSAGE  'File not downloaded succesfully' TYPE 'I'.
        EXIT.
      ELSE.
        MESSAGE 'PDF File downloaded succesfully' TYPE 'I'.
      ENDIF.
    ENDFORM.                    " Print_PDF
    Rewards if useful.

  • I can no longer print pdf files

    When I select a PDF file to print
    First "Print to File" pops-up
    Next "output file name" box opens
    This all changed when I downloaded 8.1.2 . First all of 8.0 was not removed. I did that. I uninstalled 8.1.2 more than once. I even changed to firefox from IE 7.
    I am not a computer person. I do need to be able to print pdf files
    I will take any help. Keep it simple, please!
    I use Windows XP Home sp2

    I am a mac OS X 10.4.11 user and I have adobe acrobat 8 professional. Recently, I am unable to print pdfs. I can open them to read, but when I send them to the printer they won't print. The printer icon just jumps then nothing happens.
    I tried switching printers, from a HP 990cse to a Cannon pixma iP4300 however that doesn't help either. Same result (or rather lack of results).
    Any thoughts on what is wrong?
    Thanks
    Gail

  • Problem with printing pdf file

    hello,
    lately i have problem with printing pdf file:
    i click on the print button and the respod is very slow
    it takes more than a minute till the print window apears.
    i tryied to install version X but it's the same, the problem exist only when printing via adobe reader,
    other programs i'd working much faster.
    please advice,
    thank you

    No, it is not set to overprint. Also, I have to add that the printing results were not consistent. Sometimes it covered and sometimes it did not.

  • Intermittent Problem of Corruption when printing PDF files

    From time to time I have a problem with text corruption when printing pdf files. Text comes out one character alphabetically later.
    For example, a file I printed yesterday contained the text "ONE WEEK VISITOR LICENCE". On printing it again today (on the same computer and printer), it appeared as "POF!XFFL!WJTJUPS!MDFODF". But another attempt immediately afterwards was correct.Here is a scan of the correct and incorrect printouts
    I have had this problem intermittently over a couple of years, particularly with pdf files embedded as a frame in a web page.
    I am using Adobe Reader 10.1.0 (but the problem has also appeared on earlier versions), Windows XP SP3 with all updates and an HP Deskjet 6980 printer on a wireless link.
    Any advice would be welcome

    Not sure why this may be happening. But you can try printing the PDFs as an image, which should solve the problem. It may take a little longer to print but at least you will get a correct print.
    You can do the same by Clicking on the Advanced button displayed on the Print dialog and checking the checkbox for "Print as Image".
    Hope that this fixes the issue.
    Ankit

  • How to print pdf files not using acrobat product?

    i just want to print pdf files,but not want to use the adobe acrobat or acrobat reader,just want to write a tools print pdf files directly.

    > no i just want to print it,not need to read it.can you help me?
    Well, the problem is to print it you need to be able to read it. Something needs to convert it into a format the printer can understand (most printers are PostScript or PCL).
    I'm not sure you entirely understand what a PDF file is. It's not a fancy text file. It's a binary format. Saying "I want to print a PDF without a PDF interpreter" is like saying "I want to run an EXE without Windows". You need software to interpret the format.
    You certainly can write your own software to interpret the PDF format, convert it to a print language and output that to a printer, but as Aandi said you will need to start by reading the PDF Reference so you know how the inside of a PDF file works, and it will most likely take several years of development even for a seasoned, expert programmer. It's just not as simple as "Printer, meet PDF. PDF, meet printer."

  • Cannot  print  pdf files  with  9.3.1, cannot remove patch

    does anyone know how to fix msi problems ? updater says 9.3.1 is more functional than 9.4 what does that mean? does that mean I need to remove 9.3.1 in order to install 9.4 ?  All i want out of this is the ability to control what stays and want goes onto my hard drive and the ability to print PDF files like the product claims. I swear as my life advances I will not buy a product from a company that cannot support me with there standard issues of products . offering a free product that malfunctions is not my idea of building a trusting relationship. What's more disturbing is that I talked with Ganesh this morning on adobe chat and know i cannot even register with that email. Can anyone fix msi problems or is this just a runaround bad business practice of post WTO new world order ?  Thanks for letting me vent. Now about the msi problem...

    Thanks for the advice, but I'm
    already beyond that(go to add remove
    programs and click remove). I did my backup and downloaded windows installer cleanup from http://majorgeeks.com/Windows_Installer_CleanUp_Utility_d4459.html  After download when I ran the program to install it, the window that popped up was labled "Microsoft Office Update". When that disappeared I found Windows Installer Cleanup located in the All programs list in start. I clicked it and a window popped up about the size of task manager. I scrolled down and highlighted Adobe 9.3.1 and clicked remove and it removed it and the 9.3.1 unremovable update from the conrol panel. Then I went to Adobe.com , downloads and downloaded Adobe 9.4, installed it, and tested it by printing a PDF file.   Before I was scared to mess up my netbook and didn't want to deal with the hassle, but we all have our limits until we start to take these kind of risks into the unknown. sometimes, even though it's a burden to register to umpteen forums, it's that extra hassle that gets you over the edge. Please share this info. ohh yeah, NONE of this was done in safe mode.

  • Error in printing PDF files

    I am using Adobe Acrobat 9.5. Recently I am having problems with printing PDF files, while other formats are printing just fine. Upon printing a pdf doc, following appears on the print out:
    PCL XL Error
              Subsystem:      KERNEL
              Error:               ExtraData
             File Name:       kerlib.c
             Line Number:   9024
    Please help

    Hi Dev.datta,
    Try install the Adobe reader XI and also try update the printer drivers as well . That should take care of this problem.

  • My printer starts out printing PDF files in english and switches to random characters​.

    Hp officejet 6310 ALl in one printer.  WHen printing PDF files, the part or all of the first page prints out in english and the balance is random characters.  What is going wrong.

    The troubleshooting steps here may help resolve the issue.
    Bob Headrick,  HP Expert
    I am not an employee of HP, I am a volunteer posting here on my own time.
    If your problem is solved please click the "Accept as Solution" button ------------V
    If my answer was helpful please click the "Thumbs Up" to say "Thank You"--V

  • Print PDF file from folder using SSIS

    Is there a way in SSIS to print pdf file from folder?
    ANy help much appreciated.

    One method is calling Adobe Acrobat Reader exe from Execute Process Task within SSIS passing the document path as the argument
    The command and arguments will look like this
    http://geekswithblogs.net/JeremyRamos/archive/2013/10/22/print-ssrs-report--pdf-from-sql-server-agent-or.aspx
    Please Mark This As Answer if it solved your issue
    Please Vote This As Helpful if it helps to solve your issue
    Visakh
    My Wiki User Page
    My MSDN Page
    My Personal Blog
    My Facebook Page

  • Adobe Acrobat Pro failed to print pdf file

    I downloaded adobe acrobat pro and started the 30 trial version just a few minutes ago.
    I could open files through adobe acrobat and convert word files to pdf, but when i tried converting a publisher file it could not go through. An error popped up which read "Adobe PDF printer failed to print pdf file".
    The publisher file I am hoping to convert to pdf is a 21 page panorama article. It contains lots of images and a variety of font types.
    I do not know other alternatives for solving this issue.
    Your help will be very much appreciated.
    Thank you!
    Erik

    It seems to be that Adobe Acrobat virtual printer is not properly installed on your PC or you are not selecting Adobe PDF printer to print PDF document. Checkout the below screen shot to see proper printer.
    After trying this if you have same problem you may trt some other virtual printer that easily convert or print any file as PDF, you may checkout here.

  • Orarrp can't print pdf file directly to printer

    oracle remote print utility (orarrp) can't print pdf file directly to printer.
    we expect orarrp utility can handle ".rrpa" file (i.e. pdf file generated on the application server) by directly print the file to the client's printer, i.e. invoke the acrobat reader on the client side, display the the printer selection dialogue, after confirmation print the pdf file, then the acrobat reader close automatically nicely.
    However we are disappointed as the acrobat reader startup and display the pdf file content but does not print and does not close.
    After testing the problem several times, there are some findings:-
    Finding (A):-
    (a) for the success of direct printing of pdf file, a physical path must be provided; we have tried 2 methods:
    1) using drag & drop to copy the pdf file directly to the browser
    2) open pdf file in the browser directly using browser menu-->File-->Open.
    (b) for the failure of direct printing, a virtual path is involved and we have also tried 2 methods:
    1) when web.show_document() is used
    2) enter the url to the URL bar of the browser,
    eg. http://appsvr.com:7777/report/test_printout/APPSVR1094707.rrpa (this is a virtual path/url)
    Finding (B):-
    (a)when the physical path is used, a temporary pdf file is generated in the same directory where the rrpa file exists in the application server,
    e.g. in application server: d:/printout/yyy.pdf is generated for d:/printout/xxx.rrpa when direct print occurs
    (b) however when the virtual path is used, there is no such temp "pdf" file generated and direct print failed.
    May be when virtual path is used, orarrp utility don't know where to generate the temp "pdf" so direct print doesn't occur.
    So, anyone has similar experience or further queries or has solutions, please join.
    Thanks for your attention.

    Hi,
    It is really late to give response this post. But still who ever refering to this post for the same issue this solution is useful for achieving same in background:
    Even same can be used in smartforms, for getting spool request in PDF format as well which will decrease the size of file when printing in SAP printer.
    ct_tline is PDF output:
    DATA: lv_pdfsource TYPE xstring.
    FIELD-SYMBOLS:<p> TYPE x. " <p> type any.
    LOOP AT ct_tline INTO cs_tline.
      ASSIGN cs_tline TO <p> CASTING TYPE x.
      CONCATENATE lv_pdfsource <p> INTO lv_pdfsource IN BYTE MODE.
    ENDLOOP.
    * ->Create spool request in PDF format
    CALL FUNCTION 'ADS_CREATE_PDF_SPOOLJOB'
      EXPORTING
        printer  = 'LOCL'            "Printer name supporting PDF device type
    *   DEST     =
        pages    = 1
        pdf_data = lv_pdfsource        "XSTRING internal table
    *   NAME     =
    *   SUFFIX1  =
    *   SUFFIX2  =
    *   COPIES   =
    *   PRIO     =
        IMMEDIATE_PRINT         = 'X'
    *   AUTO_DELETE             =
    *   TITLELINE               =
    *   RECEIVER =
    *   DIVISION =
    *   AUTHORITY               =
    *   LIFETIME = '0'
    * IMPORTING
    *   SPOOLID  =
    * EXCEPTIONS
    *   NO_DATA  = 1
    *   NOT_PDF  = 2
    *   WRONG_DEVTYPE           = 3
    *   OPERATION_FAILED        = 4
    *   CANNOT_WRITE_FILE       = 5
    *   DEVICE_MISSING          = 6
    *   NO_SUCH_DEVICE          = 7
    *   OTHERS   = 8
    IF sy-subrc <> 0.
    * Implement suitable error handling here
    ENDIF.

  • How to print PDF file from java application?

    Hi,
    I have a java application that needs to print an PDF files. Could any one provide me links to tutorial/sample codes for doing this?

    http://onesearch.sun.com/search/onesearch/index.jsp?qt=print+pdf+files&subCat=&site=dev&qp=&chooseCat=javaall&col=developer-forums

Maybe you are looking for