Problem in printing pdf document with java code

Hi All
I want to print a pdf document with java code i have used PDFRenderer.jar to compile my code.
Code:
File f = new File("C:/Documents and Settings/123/Desktop/1241422767.pdf");
FileInputStream fis = new FileInputStream(f);
FileChannel fc = fis.getChannel();
ByteBuffer bb = fc.map(FileChannel.MapMode.READ_ONLY, 0, fc.size());
PDFFile pdfFile = new PDFFile(bb); // Create PDF Print Page
PDFPrintPage pages = new PDFPrintPage(pdfFile);
// Create Print Job
PrinterJob pjob = PrinterJob.getPrinterJob();
PageFormat pf = PrinterJob.getPrinterJob().defaultPage();
pjob.setJobName(f.getName());
Book book = new Book();
book.append(pages, pf, pdfFile.getNumPages());
pjob.setPageable(book);
// System.out.println(pjob.getPrintService());
// Send print job to default printer
pjob.print();
but when i am running my program i am getting error
Exception in thread "main" java.awt.print.PrinterException: Invalid name of PrintService.
Please anybody, knows the solution for this error?
Thanks In Advance
Indira

It seems that either there is no default printer setup or you have too many printers or no printer setup at all. Try running the following code. It should print the list of available print services.
import java.awt.print.*;
import javax.print.*;
public class PrintServiceNames{
     public static void main(String args[]) throws Exception {
          PrintService[] printServices = PrinterJob.lookupPrintServices();
          int i;
          for (i = 0; i < printServices.length; i++) {
               System.out.println("P: " + printServices);
}From the list pick one of the print service names and set it explicitly like "printerJob.setPrintService(printServices);" and then try running the program.

Similar Messages

  • How do I print .pdf documents with reader for windows 8?

    I have Reader for windows 8.  How can I print .pdf documents with it? 

    See FAQ: Printing from Adobe Reader for Windows 8 Tablets.

  • Printing PDF documents in Java

    Hello All,
    I will be very gratefull if someone points me to resources on the web which show how to print a pdf document in java.
    If you are aware of any tutorials and examples, then please let me know.
    regards,
    Abhishek.

    duffymo
    Acrobat 5.0 when I open a pdf on my system.
    This is exactly the code currently in my program.
    I just ran it again to test it and it works.
    1) The application has an ugly square gray box on the screen while printing.
    2) The Acrobat reader starts on the task bar.
    3) For the application to continue I have to expand the reader and close it myself.
    public void actionPerformed(ActionEvent e) {
      String selectedDocument = SelectedDocument();
      if (selectedDocument != null) {
        try {
          String command = "C:\\Program Files\\Adobe\\Acrobat 5.0\\Reader\\AcroRd32.exe /t "+selectedDocument+" \\\\CONTROL\\HP LaserJet 4L";
          Runtime rn = Runtime.getRuntime();
          Process process = rn.exec(command);
          process.waitFor();
        catch (Exception pEX) {showSystemError("Unable to print document.", selectedDocument, pEX, false);}
    }It is not what I wanted to do - I wanted to do the print
    internally in the program.
    rykk

  • Print PDF document with printer's name and date/time of print

    Hi,
    I'm pretty new to this...
    I have a PDF document and when I print it, I want the printer's name and the date/time of print to be showed on the printer's output.
    I have several printers (some local and some on network) and don't necessarly use the default one. I would like the name of the printer used, to be printed on the document.
    With var h = this.getField("Printer"); h.value = app.printerNames; I'm able to get the list of all printers available but I just need the one used.
    For the date/time, using var f = this.getField("Today"); f.value = util.printd("mmm/d/yyyy", new Date()); gives me the date/time of when the document is open, not when the document is printed. (or maybe I'm missing something?)
    I guess the date/time issue is not the major one as there is usually not much difference between the time you open the document and the time you print it.
    I'm more interested in the printer's name.
    I use Acrobat Pro 9 to edit my PDF document.
    Can anyone help me please?
    Thanks!

    This project was left aside for a while... but it's now finished!
    Thank you for the answers. It was helpful.
    Here is a step-by-step of what I did (using Adobe Acrobat 9.5.1):
    Open PDF document in Acrobat
    Select Forms -> Add or Edit Fields
    Add two text fields: one called "Today" for the date and one called "Printer" for the printer name
    Close the form editing
    Select Advanced -> Document Processing -> Set Document Actions...
    Then select Document Will Print and Edit
    Paste the following code:
    var f = this.getField("Today"); f.value = util.printd("dd mmm yyyy - HH:MM", new Date());
    var pp = this.getPrintParams();
    this.getField("Printer").value = pp.printerName;
    Save your PDF
    Enjoy!
    The date and printer name field will be automatically updated when you print the document!

  • How to display pdf file with java code?

    Hi All,
    i have a jsp pagein that page if i click one icon then my backing bean method will call and that method will create pdf document and write some the content in that file and now i want to display that generated pdf document.
    it should look like you have pressed one icon and it displayed pdf file to you to view.
    java code below:
    FacesContext fc = FacesContext.getCurrentInstance();
    ExternalContext ec = fc.getExternalContext();
    HttpServletResponse resp = (HttpServletResponse) ec.getResponse();
    resp.setHeader("Content-Disposition", "filename=\"" + temppdfFile);
    resp.encodeRedirectURL(temppdfFile.getAbsolutePath());
    resp.setContentType("application/pdf");
    ServletOutputStream out = resp.getOutputStream();
    ServletUtils.returnFile(temppdfFile, out);
    out.flush();
    and above temppdfFile is my generated pdf file.
    when i am executing this code, it was opening dialog box for save and cancel for the file, but the name of the file it was showing me the "jsp file name" with no file extention (in wich jsp file i am calling my backing bean method) and type is "Unknown File type" and from is "local host"
    it was not showing me open option so i am saving that file then that file saved as a pdffile with tha name of my jsp file and there is nothing in that file(i.e. empty file).
    what is the solution for this. there is any wrong in my code.
    Please suggest me.
    Thanks in advance
    Indira

    public Object buildBarCodes() throws Exception
    File bulkBarcodes = null;
    String tempPDFFile = this.makeTempDir();
    File tempDir = new File("BulkPDF_Files_Print");
    if(!tempDir.exists())
    tempDir.mkdir();
    bulkBarcodes = File.createTempFile
    (tempPDFFile, ".pdf", tempDir);
    //bulkBarcodes = new File(tempDir, tempPDFFile+"BulkBarcode"+"."+"pdf");
    if(!bulkBarcodes.exists())
    bulkBarcodes.createNewFile();
    Document document = new Document();
    FileOutputStream combinedOutput = new FileOutputStream(bulkBarcodes);
    PdfWriter.getInstance(document, combinedOutput);
    document.open();
    document.add(new Paragraph("\n"));
    document.add(new Paragraph("\n"));
    Image image = Image.getInstance(bc.generateBarcodeBytes(bc.getBarcode()));
    document.add(image);
    combinedOutput.flush();
    document.close();
    combinedOutput.close();
    FacesContext facesc = FacesContext.getCurrentInstance();
    ExternalContext ec = facesc.getExternalContext();
    HttpServletResponse resp = (HttpServletResponse) ec.getResponse();
    resp.setHeader("Content-Disposition", "inline: BulkBarcodes.pdf");
    resp.encodeRedirectURL(bulkBarcodes.getAbsolutePath());
    resp.setContentType("application/pdf");
    resp.setBufferSize(10000000);
    ServletOutputStream out = resp.getOutputStream();
    ServletUtils.returnFile(bulkBarcodes, out);
    out.flush();
    return "success";
    This is my action method which will call when ever i press a button in my jsp page.
    This method will create the barcode for the given barcode number and write that barcode image in pdf file
    (i saw that pdf file which i have created through my above method, This PDF file opening when i was opening manually and the data init that is also correct means successfully it writes the mage of that barcode)
    This method taking the jsp file to open because as earlier i said it was trying to open unknown file type document and i saved that file and opended with editplus and that was the jsp file in which file i am calling my action method I mean to say it was not taking the pdf file which i have created above it was taking the jsp file

  • Windows 7: Unable to print pdf documents with Reader 9.3.0

    I have the following problem.
    Right now we are on the way to deploy Windows 7 in our environment. Now i have come over a problem with Adobe Reader 9.3.0, Windows 7 and our older printer modells from HP (4000er and 4050er). With them I can't print out any pdf document because in reader 9.3.0 the default language level is set to "Level 3". If i change this drop down to "Level 2" I can print out the document without any problems.
    Question is: How can I permanently set this option to default to "Level 2" (see screenshot - this is found if you hit the advanced button in the printing dialog).
    Any help is apreciated...

    When using a 32-bit browser, the PDF document should open in the browser (using the Adobe Reader add-on).
    When using a 64-bit browser, it will ask you if you want to save the document, or open in Adobe Reader.
    If neither of these methods work, then it is the website that does not let you download the document (for whatever reason, e.g. server overload).
    Try if you can open this document: http://kb2.adobe.com/cps/837/cpsid_83708/attachments/Acrobat_Reader_ReleaseNote_10.1.2.pdf

  • Printing PDF document with invisible signature

    I've got a PDF-document - created with i-text - certified with an invisible signature.
    Printing this document out of Adobe Reader 8/9 with several pages per sheet results in scrambling the second page. The preview inside the print-dialogue doesn't show any failure.
    Leaving the fist page the output performs fine.
    Has anyone made experience with similar problems printing certified/signed PDF-documents??

    Hello,
    I'm sorry I'm not able to address your question. These forums
    are specific to the
    Acrobat.com website and its set of hosted services, and do
    not cover the Acrobat family of desktop products.
    Any questions related to the Acrobat family of desktop
    products would be best suited in the Acrobat User Forums:
    Link to
    Acrobat Forums
    Thanks!
    Michelle

  • Validate PDF document with JAVA

    good morning,
    I'm a little desperate, I need to know how to validate using java pdf api but not know how. I followed your steps, which very generously put in the post whose title I refer to the subject of this message, and gives me the same error as you. Did you get it working? Could you send me the code? I ask you please
    I have two pdf documents, each with a date field. In one of them in the date field has a malformed date and another date is in correct format. Need to distinguish, using the JAVA API, each other, but do not know how? anyone can help me? thank you very much

    good morning,
    I'm a little desperate, I need to know how to validate using java pdf api but not know how. I followed your steps, which very generously put in the post whose title I refer to the subject of this message, and gives me the same error as you. Did you get it working? Could you send me the code? I ask you please
    I have two pdf documents, each with a date field. In one of them in the date field has a malformed date and another date is in correct format. Need to distinguish, using the JAVA API, each other, but do not know how? anyone can help me? thank you very much

  • How to validate PDF document with JAVA

    Hi,
    Is there any way to write JAVA app that will validate PDFs through/with LC API ? I was traying with code:
    ServiceClientFactory myFactory = ServiceClientFactory.createInstance(connectionProps);
    FormsServiceClient formsClient = new FormsServiceClient(myFactory);
    FormsResult renderedForm = renderPDF(formName, xmlData, url, formsClient);        
    RenderOptionsSpec processSpec = new RenderOptionsSpec();
    //processSpec.setValidationReporting(5);
    processSpec.setLocale("pl_PL");
    FormsResult formOut = formsClient.processFormSubmission(renderedForm.getOutputContent(),"CONTENT_TYPE=applicati on/pdf","",processSpec);
    System.out.println(formOut.getValidationErrorsList().toString());
    //Rendering method
    private static FormsResult renderPDF(String formName,String  xmlData, String url, FormsServiceClient formsClient) throws RenderFormException, DSCException, UnsupportedEncodingException {
             PDFFormRenderSpec pdfFormRenderSpec = new PDFFormRenderSpec();
             pdfFormRenderSpec.setCacheEnabled(new Boolean(false));
             pdfFormRenderSpec.setXMLData(true);
             pdfFormRenderSpec.setStandAlone(true);
             pdfFormRenderSpec.setLinearizedPDF(true);
             URLSpec urlSpec = new URLSpec();
             urlSpec.setContentRootURI(url);
             String credentialAlias = CREDENTIAL_ALIAS;
             String credentialPassword = CREDENTIAL_PASSWORD;
             ReaderExtensionSpec reOptions = new ReaderExtensionSpec();
             reOptions.setReCredentialAlias(credentialAlias);
             reOptions.setReCredentialPassword(credentialPassword);
             reOptions.setReExpImp(true);
             reOptions.setReFillIn(true);
             reOptions.setReDigSig(true);
             Document inputData = new Document(xmlData.getBytes("UTF-8"));
             /*return renderedForm = formsClient.renderPDFForm(formName,inputData,pdfFormRenderSpec,urlSpec,null);*/
             return formsClient.renderPDFFormWithUsageRights(formName,inputData,pdfFormRenderSpec,reOptions,u rlSpec);
    but in formOut.getValidationErrorsList() i still get:
    [8/2/10 12:03:46:728 GMT+01:00] 0000002c SystemOut     O --------------------Validation------------
    [8/2/10 12:03:46:728 GMT+01:00] 0000002c SystemOut     O <document state="active" senderVersion="3" persistent="false" senderPersistent="false" passivated="false" senderPassivated="false" deserialized="true" senderHostId="127.0.0.1/172.16.133.24/172.16.134.24" callbackId="0" senderCallbackId="0" callbackRef="null" isLocalizable="false" isTransactionBound="false" defaultDisposalTimeout="600" disposalTimeout="600" maxInlineSize="65536" defaultMaxInlineSize="65536" inlineSize="0" contentType="null" length="-1"><cacheId/><localBackendId/><globalBackendId/><senderLocalBackendId/><senderGl obalBackendId/><inline></inline><senderPullServantJndiName>adobe/idp/DocumentPullServant/a dobews_anathNode01Cell_anathNode02_server1</senderPullServantJndiName><attributes/></docum ent>
    without any errors. I was looking around (google,forum and Adobe Develop Connection) but no luck . Is it posible to make it that way ?
    Ps.
    It's my first post so (if i did something wrong ) be gentle. And ... sorry for my poor english .

    I modified code for rendering form and for validating and I start to get erros on output, but that is not complete list
    <document state="active" senderVersion="3" persistent="false" senderPersistent="false" passivated="false" senderPassivated="false"
    deserialized="true" senderHostId="127.0.0.1/172.16.133.24/172.16.134.24" callbackId="0" senderCallbackId="0" callbackRef="null"
    isLocalizable="false" isTransactionBound="false" defaultDisposalTimeout="600" disposalTimeout="600" maxInlineSize="65536"
    defaultMaxInlineSize="65536" inlineSize="342" contentType="text/xml" length="-1">
    <cacheId/>
    <localBackendId/>
    <globalBackendId/>
    <senderLocalBackendId/>
    <senderGlobalBackendId/>
    <inline>
        <?xml version="1.0" encoding="UTF-8"?>
        <validationErrors>
        <m d="2010-08-04T10:05:48.897+02:00" ref="...
    </inline>
    <senderPullServantJndiName>adobe/idp/DocumentPullServant/adobews_anathNode01Cell_anathNode 02_server1</senderPullServantJndiName>
    <attributes/>
    </document>
    it is cut in place where should be reference to wrong field.
    <inline>
         <?xml version="1.0" encoding="UTF-8"?>
         <validationErrors>
         <m d="2010-08-04T10:05:48.897+02:00" ref="...
    </inline>
    I attach whole class after changes:
    public class AdobeForm {
        private static final String CREDENTIAL_ALIAS  = "READER_EXC_CERT";
        private static final String IIOP = "iiop://localhost:2810";
        private static final String CREDENTIAL_PASSWORD = "pass";
        private static final String AS_USERNAME = "log";
        private static final String AS_PASSWORD = "pass";
        private static final String NO_ERRORS = "";
        public static byte[] renderForm(String formName,String  xmlData, String url){
            byte[] data = null;
            try
                //JBOSS
    /*            Properties connectionProps = new Properties();
                connectionProps.setProperty("DSC_DEFAULT_EJB_ENDPOINT", "jnp://localhost:1099");
                connectionProps.setProperty("DSC_TRANSPORT_PROTOCOL", "EJB");
                connectionProps.setProperty("DSC_SERVER_TYPE", "JBoss");
                connectionProps.setProperty("DSC_CREDENTIAL_USERNAME", "log");
                connectionProps.setProperty("DSC_CREDENTIAL_PASSWORD", "pass");*/
               // dla WebSphere
                Properties connectionProps = new Properties();
                connectionProps.setProperty("DSC_DEFAULT_EJB_ENDPOINT", IIOP);
                connectionProps.setProperty("DSC_TRANSPORT_PROTOCOL","EJB");         
                connectionProps.setProperty("DSC_SERVER_TYPE", "WebSphere");
                connectionProps.setProperty("DSC_CREDENTIAL_USERNAME", AS_USERNAME);
                connectionProps.setProperty("DSC_CREDENTIAL_PASSWORD", AS_PASSWORD);
                ServiceClientFactory myFactory = ServiceClientFactory.createInstance(connectionProps);
                FormsServiceClient formsClient = new FormsServiceClient(myFactory);
                FormsResult renderedForm = renderPDF(formName, xmlData, url, formsClient, false);
                //test(renderedForm);
                Document renderedFormData = renderedForm.getOutputContent();
                InputStream inputStream = renderedFormData.getInputStream();
                // to pewnie trzeba poprawic na przepisywanie duzych danych
                int size = inputStream.available();
                data = new byte[size];
                inputStream.read(data);
                inputStream.close();
            catch (Exception e)
                e.printStackTrace();
            return data;
        public static byte[] validateForm(String formName, String xmlData, String url){
            byte[] data = null;
            try
                //JBOSS
                Properties connectionProps = new Properties();
                connectionProps.setProperty("DSC_DEFAULT_EJB_ENDPOINT", "jnp://localhost:1099");
                connectionProps.setProperty("DSC_TRANSPORT_PROTOCOL", "EJB");
                connectionProps.setProperty("DSC_SERVER_TYPE", "JBoss");
                connectionProps.setProperty("DSC_CREDENTIAL_USERNAME", "administrator");
                connectionProps.setProperty("DSC_CREDENTIAL_PASSWORD", "password");*/
                // dla WebSphere
                Properties connectionProps = new Properties();
                connectionProps.setProperty("DSC_DEFAULT_EJB_ENDPOINT", IIOP);
                connectionProps.setProperty("DSC_TRANSPORT_PROTOCOL","EJB");         
                connectionProps.setProperty("DSC_SERVER_TYPE", "WebSphere");
                connectionProps.setProperty("DSC_CREDENTIAL_USERNAME", AS_USERNAME);
                connectionProps.setProperty("DSC_CREDENTIAL_PASSWORD", AS_PASSWORD);
                ServiceClientFactory myFactory = ServiceClientFactory.createInstance(connectionProps);
                FormsServiceClient formsClient = new FormsServiceClient(myFactory);
                FormsResult renderedForm = renderPDF(formName, xmlData, url, formsClient, true);        
                RenderOptionsSpec processSpec = new RenderOptionsSpec();
                processSpec.setValidationUI(0);
                processSpec.setValidationReporting(10);
                processSpec.setCacheEnabled(true);
                //processSpec.setXMLData(true);
                //processSpec.setDebugEnabled(true);
                /*processSpec.setLocale("pl_PL");
                processSpec.setStandAlone(true);*/
                FormsResult formOut = formsClient.processFormSubmission(renderedForm.getXMLData(),
                        "I=application/pdf&CONTENT_TYPE=application/vnd.adobe.xdp+xml",
                        "",processSpec);
    /*            Document inputData = new Document(xmlData.getBytes("UTF-8"));
                FormsResult formOut = formsClient.processFormSubmission(inputData,
                        "CONTENT_TYPE=application/pdf&CONTENT_TYPE=application/vnd.adobe.xdp+xml&CONTENT_TYPE=tex t/xml",
                        "",processSpec);*/
                test(formOut);
                // to pewnie trzeba poprawic na przepisywanie duzych danych
                InputStream inputStream = formOut.getOutputContent().getInputStream();
                int size = inputStream.available();
                data = new byte[size];
                inputStream.read(data);
                inputStream.close();
                System.out.println("Dane: "+(new String(data)));
                System.out.println("------------------------------------------");
                System.out.println("OutputXML: "+formOut.getOutputXML());
                return NO_ERRORS.getBytes();
            catch (Exception e)
                e.printStackTrace();
            return NO_ERRORS.getBytes();
        private static void test(FormsResult formOut) {
            if(formOut != null)
                System.out.println("------------------------------------------");
                System.out.println("--------------------Validation------------");
                System.out.println(formOut.getValidationErrorsList());
                System.out.println("------------------------------------------");
                System.out.println("------------------------------------------");   
            else
                System.out.println("-------------------FORMOUT NULL-----------------------");   
        @SuppressWarnings("unused")
        private static void showData(String xmlData, String formName, String url) {
            System.out.println("------------------XML------------------------");
            System.out.println("XML: "+xmlData);
            System.out.println("Form: "+formName);
            System.out.println("URL: "+url);
            System.out.println("------------------XML------------------------");
        private static FormsResult renderPDF(String formName,String  xmlData, String url, FormsServiceClient formsClient, boolean renderedForm) throws RenderFormException, DSCException, UnsupportedEncodingException {
             URLSpec urlSpec = new URLSpec();
             urlSpec.setContentRootURI(url);
             PDFFormRenderSpec pdfFormRenderSpec = new PDFFormRenderSpec();
             pdfFormRenderSpec.setCacheEnabled(true);
             pdfFormRenderSpec.setXMLData(true);
    /*       pdfFormRenderSpec.setDebugEnabled(true);
             pdfFormRenderSpec.setLocale("pl_PL");
             //without rights
             if(renderedForm)//see bellow
                 pdfFormRenderSpec.setLinearizedPDF(true); */
             System.out.println("RenderServlet formName "+formName);  
             String credentialAlias = CREDENTIAL_ALIAS;
             String credentialPassword = CREDENTIAL_PASSWORD;
             Document inputData = new Document(xmlData.getBytes("UTF-8"));
             if(renderedForm)
                 return formsClient.renderPDFForm(formName,inputData,pdfFormRenderSpec,urlSpec,null);
             else
                 ReaderExtensionSpec reOptions = new ReaderExtensionSpec();
                 reOptions.setReCredentialAlias(credentialAlias);
                 reOptions.setReCredentialPassword(credentialPassword);
                 reOptions.setReExpImp(true);
                 reOptions.setReFillIn(true);
                 reOptions.setReDigSig(true);
                 pdfFormRenderSpec.setStandAlone(true);
                 return formsClient.renderPDFFormWithUsageRights(formName,inputData,pdfFormRenderSpec,reOptions,u rlSpec);
             //[8/4/10 11:10:55:928 GMT+01:00] 0000002a CommonGibsonU W com.adobe.livecycle.formsservice.logging.FormsLogger logMessage ALC-FRM-001-048: Forms with Rights cannot be linearized.

  • Print PDF document with VBScript

    I am working on a script to print all the PDF documents (each doc is 1 page long) in a folder.  The script is looping through the documents, but does not appear to be queuing the documents to the printer.  Acrobat 9 Standard is what is being used.  Is this the new issue with printing from 9?  Is there a workaround?  Here is the script:
    set objAcroDoc = Wscript.CreateObject("AcroExch.AVDoc")
    set fsys = CreateObject("Scripting.FileSystemObject")
    set ffolder = fsys.GetFolder("o:\testarea")
    set folderfiles = ffolder.files
    For each item in folderfiles
         Set filen = fsys.GetFile("o:\testarea\"&item.name)
         With objAcroDoc
              .Open ("o:\testarea\"&item.name), "Test Page"
              Wscript.Echo "Printing "&item.name
              .PrintPages 1,1,3,0,0
              .Close 0
         End With
    Next
    Thank you for your help!

    From Help file:
    "The first page ....  is Page 0.       
    HTH, Reinhard

  • I have an HP Office Jet Pro 8500 A 917 unit. I need to print *pdf documents with larger print

    I cannot read the print (normal) when I print a pdf document.  I need to enlarge the text but I can't find any information on how to accomplish this.
    Thanks in advance.

    Hello DJohnsen,
    I am sorry that you are having trouble printing a readable .pdf document!  I would like to know a couple of things.  Is this a general .pdf print from a local PC/External Hard Drive, web content or is this an ePrint attachment?  There are a couple of different factors that could be effecting the outcome of this print job.  To name a few: resolution of the document, how the .pdf was created (format) and print settings.  I would like to give more insight; please post with more details about the print job.  Thanks! 
    If I have solved your issue, please feel free to provide kudos and make sure you mark this thread as solution provided!
    Although I work for HP, my posts and replies are my own opinion and not those of HP.

  • Output is reduced in size when printing PDF documents with Preview

    When I print a PDF file with Preview the printed output seems to be about 20% smaller than actual. If I print the same file with Adobe Reader for Mac the output is normal and not reduced. Other file types do not seem to have the same issue. I don't recall having this problem before I upgraded to Leopard. Any ideas?
    Thanks
    Jack

    Hi Jack,
    If you have a rummage through Preview's Preferences and look at the scale settings in the 'PDF' tab, do you have it set to respect the 100% scale factor of the PDF? This can sometimes affect the scaling when the PDF was formated for a different paper size from the one you're trying to print it on. If everything there seems to be ok, try comparing the two different expanded print diaogs which you receive in Preview and Adobe Reader, looking at things like scaling and paper-size again.
    Yang

  • Printing PDF document with today's date

    I am looking for a way to print the current date on the PDF
    document. Perhaps, a field/variable/marker on the PDF document
    where it will be converted to the today's date at the time the
    document is being printed.

    Hello,
    I'm sorry I'm not able to address your question. These forums
    are specific to the
    Acrobat.com website and its set of hosted services, and do
    not cover the Acrobat family of desktop products.
    Any questions related to the Acrobat family of desktop
    products would be best suited in the Acrobat User Forums:
    Link to
    Acrobat Forums
    Thanks!
    Michelle

  • Problems to print PDF documents form Acrobat Pro 10.1.12

    Since I've installed Yosemite on my iMac, PDF files are printed very badly. I get the pictures, but not the text, or sometimes a part of the text.
    I have transferred the files on a Macbook equipped with Maverick, and then, no more problem. What's there to do to erase the problems ?
    To Apple teams  : Yosemite, the best way to waste time ?..... I use a computer not to play, but to work !

    Same complaint here. I get blank pages on some of the pages of the document. The document prints in Preview, but Acrobat 10.1.12 refuses to print some of the pages. This is just a simple scanned document saved as a PDF, nothing fancy. Come on, Apple.

  • I have a problem to print PDF files with flash embedded.

    I embedded some flash into a PDF file. When previewing the PDF file in Adobe reader 9, the flash looks fine. But when printing the PDF file, the size of the flash become smaller than I specified, and starting repeating in the specified area.
    Am I missing something or is it a bug of Adobe reader 9?

    But do you have the current version of Adobe Reader, which is version 9.2?
    You can check adobe.com for updates for your Adobe Reader for it to function to its full potential.

Maybe you are looking for

  • IDE Channel set up advise ?

    I have always understood that the optimum IDE set up is to keep hard drives together and CDROM's and DVD together. I understood that if I combined the CDROM on the same IDE as a HD, that the IDE speed would be reduced to the lowest common demoninator

  • New requirement in adding a Company Code...

    Hi All,      There is a new requirement is adding some new Company Codes. Once the company code is segregated and added in ECC. How much effort  required to set up this new company code in BI? Could anyone please guide, what would be the activities p

  • Cant see my pc shared files, my shared pc

    Hi-- When I connect my mac with a hardwire internet cable my shared pc folders show up under the Shared in a finder window. When I hook up my mac wirelessly through airport extreme, the Shared completely disappears and my shared pc folders are unavai

  • Can I add "BCC" quick feature to my mail/address book?

    When I write a new email using MAIL I can click open the address book. In that new window, in upper left, I can click "TO" or "CC:" But there is no "BCC:" option. So, to do a BCC, I have to drag the names, or group of names to the BCC field in the em

  • BW7.0  Classification System

    Hi Everybody, in NW2004s BI (BW7.0) there is an option <i>Cross Application Components -> Classification System</i> What does <b>Classification System</b> do? some interesting links.. Thanks Regards FedeX