How to make changes to Adobe PDF (Distiller) printer's printing prefrences programatically?

I want to change the "Default Setting" in the Adobe PDF (Distiller) printer's printing prefrences programatically. How can i do that?

Why? I don't know :-)
When I compare the documents (single page 'export' vs booklet-spreads 'print booklet') at 800%, the images on the 'export' are crisp. The images on the booklet are seriously pixellated/unreadable.
If it *is* possible to get print-ready, I'd love to!
This is what I'm doing - any help is greatly appreciated.:
File > Print Booklet.
Displayed settings:
Printer: Adobe PDF
Booklet type: 2-up Saddle Stitch
Creep: 3mm
Margins: Automatically Adjust to Fit Marks and Bleeds
Print Blank Printer Spreads
Click Print Settings:
General:
Print Preset: [Custom]
Printer: Adobe PDF
Setup:Scale: 100%
Output:
Color: Composite CMYK
Graphics:  Images: Send Data: All

Similar Messages

  • How can I change an Adobe .pdf file to a .jpeg file?

    I have a .pdf file and the program I need to upload the file to only accepts .jpeg files.  Can I change the .pdf to a .jpeg?

    Not using Reader alone no.
    You could take a snapshot and paste it into an image application, you could open it in Photoshop and save as a .jpg or you could use save as .jpg from Acrobat.

  • How do I change an adobe PDF into a fill in form.

    That is something I can't seem to get. My question is not being answered and I don't know how to explain what I am talking about.  Do you have live chat?

    You open the file in Acrobat and then go to Tools - Forms - Edit. You'll be prompted to automatically detect the fields in the file, and afterwards you'll be able to add/edit form fields manually.

  • How do I change my default .pdf viewer in Firefox BACK to Adobe Acrobat ?

    HMRC website forms will not open in foxit. How do I change my default .pdf viewre in Firefox BACK to Adobe Acrobat ?

    AWESOME - PROBLEM WAS, AT THE TIME ADOBE AND FOXIT FILE TYPES WERE NOT APPEARING IN MY TOOLS/OPTIONS/APPLICATIONS TAB - THIS IS A MYSTERY . . . .

  • How can I change the default pdf reader from the installed (but not yet registered) Adobe Acrobat 9 Pro to Adobe Reader XI?

    How can I change the default pdf reader from the installed (but not yet registered) Adobe Acrobat 9 Pro to Adobe Reader XI? I'm having some hiccups getting Adobe to register the software, but since I set it as the default .pdf reader during setup, things try (and fail) to open in the as yet unregistered software. How can I change it temporariiy to the Acrobat Reader XI that I have installed?

    Anubha,
    It worked! Thank you so much.
    I'd opened file with the 'Open with' feature then clicking Adobe Reader,
    but that didn't do it. When I used 'Open with', then 'Choose default
    program...', it worked like a charm.
    Again, thank you!
    Jonathan
    On Wed, Mar 18, 2015 at 10:16 PM, Anubha Goel <[email protected]>

  • How do you change orientation of pdf file to fill and sign?

    how do you change orientation of pdf file to fill and sign?

    Adobe Fill & Sign does not yet have a feature to rotate PDF pages but there are several websites that will rotate a PDF for free and then you can bring that PDF with correct orientation into Fill & Sign to fill out.  Any of the top hits when you google "rotate PDF free" will work.
    Thanks,
    Josh

  • How do I install a Adobe pdf printer?

    Upgrade from Acrobat Pro X to Pro XI destroyed my prior Adobe pdf printer. How do I reinstall the printer instance without reinstalling Acrobat XI?
    I found a reply for an earlier version of Acrobat, but I have no interest in installing the PDF printer into \Desktop or \Documents. Whatever it said to do didn't work and I've received no reply to my question posted on that old thread.
    So, how do I recreate the Adobe PDF printer, and, how do I do so while selecting where I want the .pdf files to be located?
    Thanks in advance for help

    What OS are you running? If it is a version of Windows, is it 32 or 64 bit? Are you using 11.0.0? Did you reboot after the install? If you did not reboot, then do that first. The next step is to run a repair and then do the updates (XI is currently at 11.0.03). Both the Repair and the Updates can be run from the Help menu.

  • How do I set up my default viewer to view pdf annotations or how to I change my default pdf viewer to Goodreader?

    When I open a pdf it doesn't show any of it's annotations, comments, etc that someone else may have done on that file.  How do I get iPad's default pdf viewer to show the annotations or how do I change my default pdf viewer to Goodreader?

    AHA, completely different animal, try posting here...
    Using iPad

  • How do I download a Adobe PDF file and get it converted to a Word document?

    How do I download a Adobe PDF file and get it converted to a Word document?

    Download: you just download it as you would any other document.
    Convert to Word: either using the ExportPDF online service, or Acrobat.

  • How to make changes in another program?

    Hi evrybody,
    how  to make changes from one program  to another program ?
    Changes should be reflecting in other program.
    thanx in advance n wud be surely Rewarded if answer is helpful.

    Hi Bharat,
    Thanx for the info.
    But what my requirement is , I'm scanning & reading another report into an Internal table. I want to change the Hyphen's
    '-' used in variable declarations of another program into Underscore '_' .
    My sample code is like this..
    Report Zmain.
    PARAMETERS:
      p_prog LIKE sy-repid,
      p_key LIKE stokex-str.
    Internal Table t_itab                                                *
    DATA:
      BEGIN OF t_itab OCCURS 0,
        line(256) TYPE c,
      END OF t_itab.
    *" Data declarations...................................................
    DATA:
      t_statements LIKE sstmnt OCCURS 0 WITH HEADER LINE,
      t_levels LIKE slevel     OCCURS 0 WITH HEADER LINE,
      t_tokens TYPE stokesx    OCCURS 0 WITH HEADER LINE,
      t_keywords LIKE t_itab   OCCURS 0 WITH HEADER LINE,
      w_i TYPE i,
      w_j TYPE i.
                            START-OF-SELECTION                           *
    START-OF-SELECTION.
      APPEND p_key TO t_keywords.
      READ REPORT p_prog INTO t_itab.
      SCAN ABAP-SOURCE t_itab
      STATEMENTS INTO t_statements
      LEVELS INTO t_levels
      TOKENS INTO t_tokens
      KEYWORDS FROM t_keywords
      WITH INCLUDES
      WITH ANALYSIS
      WITH COMMENTS.
                            END-OF-SELECTION                             *
    END-OF-SELECTION.
      LOOP AT t_statements.
        READ TABLE t_levels INDEX t_statements-level.
        w_i = t_statements-from.
        w_j = t_statements-to.
       IF t_statements-level > 0.
        WHILE w_i < w_j.
          READ TABLE t_tokens INDEX w_i.
          REPLACE '-' WITH '_' INTO t_tokens-str.
          w_i = w_i + 1.
        ENDWHILE.
       ENDIF.
      ENDLOOP.
    My called program is like this....
    Report Zcalled.
    DATA:
      w-var1 TYPE c,
      w-var2 TYPE c.
    DATA:
      fs_flight1 TYPE sflight,
      t_flight1 LIKE STANDARD TABLE OF sflight.
    START-OF-SELECTION.
      INCLUDE zinclude3.
      SELECT * FROM sflight
        INTO TABLE t_flight1
        WHERE carrid = 'AA'.
      SELECT * FROM sflight
       INTO TABLE t_flight1
       WHERE carrid = 'LH'.
    END-OF-SELECTION.
      LOOP AT t_flight1 INTO fs_flight1.
        WRITE: / fs_flight1-carrid,
                 fs_flight1-connid,
                 fs_flight1-fldate,
                 fs_flight1-price.
      ENDLOOP.
    Thanx very much.

  • How do I install the Adobe PDF Pack Desktop Printer

    How do I install the Adobe PDF Pack desktop printer?

    If you’re running the standalone version of FM, then the “headless” Acrobat comes with it; reinstall FM to repair that part. However, if you already had a full version of Acrobat installed, the FM installer may have screwed it up – you’ll have to uninstall all Acrobat(s) and reinstall.

  • Can any body tell me how to make changes in the print layout of Fb03.

    hi,
    Can any body tell me how to make changes in the print layout of Fb03.
    I want to add comapny address on the layout.
    Regards
    Mave

    If you mean the correspondence, you have to change the configuration in Financial Accounting -> AR and AP -> Business Transactions -> Outgoing Invoices -> Carry Out abd Check Settings for Correspondence. There, you need to assign your custom Program or Layout for the Correspondence Type (like SAP19) and Program.
    If you mean the display layout in transaction FB03, You can change a few settings, mainly with BKPF and BSEG fields. I don't think you can add company address, though.
    Good luck,
    Bhanu

  • How to make changes in default toolbar

    hi
    i m using oracle forms 6 and i want to know either it is possible to change in the default toolbar or not if so plz let me know how to make changes in default toolbar and re-adjust according to my need.i know how to create new toolbar and connect with form but i don't know whether this is possible to re-arrenge and change the default toolbar attached with forms.
    thnx in advance

    thnks for ur reply. i worte that i m using forms 6i so that ur reply do not fullfill my query.
    i posted my query because i have seen an application developed in oracle form 6 and he designed exactly the same iconic toolbar as we see normal while running the forms and i tried but could not able designed accordingly as button don't have "bevel" property and button we use .ico extension if we want to use icon buttons.now i m astonised if there is not any way make changes then how he did.

  • How to make changes in standard transaction ME51N.

    Hi,
       Can anyone tell me how to make changes in standard transaction ME51N.
       I want to call transaction AS01 by clicking on standard button create asset. Please do the needful.
    Regards.
    Aniruddha

    Hi anirudda
              As i understood from your question is that you want to add a new field 'CREATE ASSET' on me51n screen.
    If i am correct you can use 'MEREQ001' enhancement for this purpose and you can write you code in the exits available in this enhancement.
    Please check the documentation of this enhancement for more info.
    (Use Smod for this purpose)
    I hope it is helpful.
    Reward points
    Thanks,
    Prasanna

  • How to make changes in strong password policy

    hi,
    how to make changes in strong password policy.
    I m using apex 4.2.
    pls help

    1003090 wrote:
    I created a login page, but when i m putting a password or more then 7 character then in place of Invalid Login Credentials , its saying
    ORA-06502: PL/SQL: numeric or value error: character string buffer too small.
    I need to put a password of min 8 character, since its taking not more then 7 so i cannot use validation for the same.You already have a thread open on that: +{thread:id=2532900}+. Continue with that issue there.
    If the original question above relating to how to configure password policies is answered then close this thread.

Maybe you are looking for

  • Error 194 while loading Master Data.

    Hi,      I've a custom Info Object which has 0MATERIAL as an attribute. While trying to load master data to this custom info object using DBConnect , I'm getting the error: RSDMD 194 0MATERIAL: Data record 1('0001003') : Version '1009841' is not vali

  • Problem: Plain J2SE Adapter Engine

    Hello, I have installed the Plain J2SE Adapter Engine. On the Adpater Engine running a SOAP Adapter. When i try to test the Adapter i become following error Message: java.net.ConnectException: Connection refused: connect      at java.net.PlainSocketI

  • DVD won't play disc

    Having trouble playing DVD discs.  Some are okay and others won't play

  • Black line in the middle of the screen, I Pad is 2 years old, tried rebootng no change. Help!

    black line in the middle of IPad

  • Belgian VAT reporting via internet

    Dear Support, In Belgium you may send your VAT returns (INTERVAT) electronically via the website of the Finance Department using the FREE Isabel OfficeSign 5.0 component. In february 2007 companies ( depending on their turnover ) will be obliged to u