Faultless pdf print master shows mistakes on the printer's computer

For years I have manufactured artworks in Indesign (now CS2) and link with it mainly psd image files. Exotic fonts are converted into paths. The exported pdfs are then sent as print master to to the printer's. With three different printing enterprises I never had had a problem so far.
Now I have changed the print office again, and the prints look really bad: One of the psd-linked pictures has strong hard black shadows (in the original they are quite soft and greyish) and overlays with one white corner (in the original transparent background) another picture, although it appears completely correct in my pdf, on all 5 computers, which we have in the house, in different pdf readers.
In addition 2 Logos (originally white fonts on transparent background)
were printed with a white background. On no monitor that I know (ours and friends') any mistakes in the pdfs show up, only on the printer's computer they appear: I received screenshots from the print office with the same time stamps as my pdf-masters, however with the errors, high-loaded on
the server, which appear afterwards in the pressure. I am
shocked, because the print master stops to be a master if it gets out of control. What can I do? Thanks for advice.

The problems you are describing sound like improper handling of transparency and overprinting at the printer, either because he doesn't understand how to deal with it correctly or his equipment is out of date. I'd look for a different printer.
Peter

Similar Messages

  • Why are PDF attachments are showing up on the body of emails, instead of as actual attachments?

    PDF attachments are showing up in the body of my emails rather than as attachments. I need to be able to open them in other programs, eg notability, mad can't do that if they're not real attachments. On my other devices they're showing up at regular attachments.

    When a PDF that has only one page is attached to an email the Mail app will display the conte tents of the PDF in the body of the email. But the PDF is still an attachment. Tap on the PDF to open in iBooks or forward it to your computer to open it there. Again, the one page PDF will display the contents of the single page but the PDF is still an attachment and can be used like any other attachment.
    When a PDF that has more than one page is attached to an email the Mail app only displays the icon for an attachment.

  • How can I create a link to a pdf file and show it in the same webpage or in a new tab

    It is no problem to create a link. But the formats are limited and  - unbelievable -  the pdf format is not supported??!
    Where are the parameter (_blank or _self) to show it for example in the same webpage or in a new tab??!

    PDF is media.  It is not a web document.  Your end users must have plug-ins and helper apps installed on their device to see PDFs in browsers.  Depending on their settings, the PDF file may or may not launch in the browser window.  On my system, PDF files download and launch inside Acrobat Professional; not my browser.
    The safest approach is to provide a screenshot on your page with a direct link to the PDF file so people can handle it as they wish.  See example:  http://www.adobe.com/manufacturing/3dpdfsamples/3dsolutions/
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/

  • Adobe PDF 8.0 shows up in Add Printer Window

    According to some KB documents Apple changed some things in 10.6 regarding PDFs. This is from Adobe.
    "Mac OS X Snow Leopard (v10.6)'s enhanced security features prevent Adobe's PDF Printer from functioning as it did in previous versions. As a result Adobe Acrobat Pro 9.1 removes the Adobe PDF Printer and adds a new Save as Adobe PDF function. Customers using earlier versions of Adobe Acrobat will find that the Adobe PDF Printer is unusable when running on Snow Leopard."
    Ok, that's fine. It works for my needs but my question is this. "Adobe PDF 8.0" shows up in the "Add Printer" window in the System Prefs. From a house keeping perspective, I'd like to remove it but can't seem to find where it is. Searching is no use, nothing comes up. Where does it reside? Library Folder? System Folder?
    Thanks for the anticipated help.
    Tom

    The first thing to remember when you're dealing with Adobe is never to believe anything Adobe tells you. Their support (if that's even an appropriate term) is either nonexistent or incompetent. Take a look at some of the Adobe forums to get a clearer idea of how low Adobe has sunk. BTW, their Better Business Rating is now a D.
    http://forums.adobe.com/community/general/adobedotcom_feedback
    For many years, Adobe has gone their own way with their software installers. They will drop font files in unexpected places, add extraneous devices without your permission, and, as you have discovered, install printer drivers that can't be removed easily. Since Apple has tightened security with Snow Leopard, Adobe can no longer get away with fast and loose messing with your system. The problem here is entirely Adobe's because they won't play by the rules that every other software developer abides by. Don't believe them when they tell you that it's Apple's fault.

  • PDF does not show up

    Hi all,
    The following is my code snippet in JSP for a project which i used to generate a PDF file. But the PDF does not show up . The Adobe loads and i get a pop-up saying
    'Acrobat could not open 'Example[1].pdf' because it is either not a supported file type or because the file has been corrupted.'
    This is the code snippet i used:
    <%@ page import="java.io.*" %>
    <%
    String s = new String("Hai this is PDF Sample");
    byte file[] = s.getBytes();
    try
    BufferedInputStream inputStream = new BufferedInputStream(new ByteArrayInputStream(file));
    BufferedOutputStream outputStream = new BufferedOutputStream(response.getOutputStream());
    response.setHeader ("Content-Disposition", "attachment; filename=Example.pdf");
    response.setContentType("application/pdf ; charset=iso-8859-1");
    int bytes = 0;
    byte buffer[] = new byte[1024];
    while((bytes = inputStream.read(buffer)) != -1)
    outputStream.write(buffer,0,bytes);
    inputStream.close();
    outputStream.flush();
    outputStream.close();
    }catch
    (Exception e){}
    %>
    Can anyone please help me out.
    Thanks in Advance.
    RDP.

    FOP is an Apache project that lets you generate PDFs using XML and XSL.
    Here's the servlet:
    package common.servlets;
    import java.io.ByteArrayOutputStream;
    import java.io.IOException;
    import java.io.PrintWriter;
    import java.io.StringReader;
    import java.net.URLDecoder;
    import java.util.Map;
    import javax.servlet.ServletException;
    import javax.servlet.http.HttpServlet;
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    import javax.xml.transform.Result;
    import javax.xml.transform.Source;
    import javax.xml.transform.Transformer;
    import javax.xml.transform.TransformerException;
    import javax.xml.transform.TransformerFactory;
    import javax.xml.transform.sax.SAXResult;
    import javax.xml.transform.stream.StreamSource;
    import org.apache.fop.apps.Driver;
    * A servlet that takes XML and XSL streams and sends back a PDF file,
    * using Xalan and FOP.
    public class PDFServlet extends HttpServlet
        /** Response content type */
        public static final String DEFAULT_RESPONSE_CONTENT = "application/pdf";
        /** Parameter/attribute name for XML input */
        public static final String DEFAULT_XML_NAME = "print.xml";
        /** Parameter/attribute name for XSL input */
        public static final String DEFAULT_XSL_NAME = "print.xsl";
        /** Default character encoding */
        public static final String DEFAULT_CHAR_ENCODING = "UTF-8";
        /** Transformation factory */
        private TransformerFactory transformerFactory;
         * Initialize the servlet
         * @throws ServletException if the initialization fails
        public void init() throws ServletException
            try
                this.transformerFactory = TransformerFactory.newInstance();
            catch (Exception e)
                throw new ServletException(e);
         *  Process a GET request
         * @param servlet request
         * @param servlet response
         * @throws ServletException if the servlet fails
         * @throws IOException if IO fails
        public void doGet(HttpServletRequest request,
                                     HttpServletResponse response)
            throws ServletException, IOException
            this.doPost(request, response);
         * Process a POST request by looking up the JSP using the source + action
         * parameters
         * @param servlet request
         * @param servlet response
         * @throws ServletException if the servlet fails
         * @throws IOException if IO fails
        public void doPost(HttpServletRequest request,
                           HttpServletResponse response)
            throws ServletException, IOException
            try
                Driver driver = new Driver();
                driver.setRenderer(Driver.RENDER_PDF);
                ByteArrayOutputStream baos  = new ByteArrayOutputStream();
                driver.setOutputStream(baos);
                Map parameters   = request.getParameterMap();
                String xmlString = null;
                if (parameters.containsKey(DEFAULT_XML_NAME))
                    xmlString = request.getParameter(DEFAULT_XML_NAME);
                else
                    xmlString = (String)request.getAttribute(DEFAULT_XML_NAME);
                String xslString = null;
                if (parameters.containsKey(DEFAULT_XSL_NAME))
                    xslString = request.getParameter(DEFAULT_XSL_NAME);
                else
                    xslString = (String)request.getAttribute(DEFAULT_XSL_NAME);
                if ((xmlString != null) && (xslString != null))
                    xmlString = URLDecoder.decode(xmlString, DEFAULT_CHAR_ENCODING);
                    xslString = URLDecoder.decode(xslString, DEFAULT_CHAR_ENCODING);
                    Source xml = new StreamSource(new StringReader(xmlString));
                    Source xsl = new StreamSource(new StringReader(xslString));
                    Result fop = new SAXResult(driver.getContentHandler()); // Intermediate result
                    Transformer transformer = this.transformerFactory.newTransformer(xsl);
                    transformer.transform(xml, fop);
                    response.setContentType(DEFAULT_RESPONSE_CONTENT);
                    response.setContentLength(baos.size());
                    response.getOutputStream().write(baos.toByteArray());
                    response.getOutputStream().flush();
                else
                    PrintWriter out = response.getWriter();
                    if (xmlString == null)
                        out.println("Missing XML");
                    if (xslString == null)
                        out.println("Missing XSL");
            catch (TransformerException e)
                e.printStackTrace(System.err);
                throw new ServletException(e);

  • Adobe pdf printer save dialog box opens in the background - progress bar shows Not Responding

    I have two users who have Acrobat X Pro version 10.1.4 that are experiencing the same things.  First, one person just changed laptops and the new one has a fresh Windows 7 Enterprise X64 image and new installation of Adobe Acrobat X Pro.  When he used the pdf printer for the first time(after opening the program and accepting the license agreement) he was in MS Excel '07 and chose file>print>Adobe PDF and then the progress bar came up and then showed not responding.  After he did this a couple of times with me standing there I noticed that the save dialog box was opening in the background because I could see the icon blinking on the taskbar.  He said that his old computer never did this and that it would always open up and ask where to save the file and never show 'not responding' on the progress bar.  The other person having the same issue is running the same version but she has had the program installed on her machine for a few months and an older version on before that. 
    Is there a way to make the dialog box show as soon as you print to the Adobe PDF printer?  What is causing this?  Is there another way to create a pdf from MS Office like the add-on? 

    I have two users who have Acrobat X Pro version 10.1.4 that are experiencing the same things.  First, one person just changed laptops and the new one has a fresh Windows 7 Enterprise X64 image and new installation of Adobe Acrobat X Pro.  When he used the pdf printer for the first time(after opening the program and accepting the license agreement) he was in MS Excel '07 and chose file>print>Adobe PDF and then the progress bar came up and then showed not responding.  After he did this a couple of times with me standing there I noticed that the save dialog box was opening in the background because I could see the icon blinking on the taskbar.  He said that his old computer never did this and that it would always open up and ask where to save the file and never show 'not responding' on the progress bar.  The other person having the same issue is running the same version but she has had the program installed on her machine for a few months and an older version on before that. 
    Is there a way to make the dialog box show as soon as you print to the Adobe PDF printer?  What is causing this?  Is there another way to create a pdf from MS Office like the add-on? 

  • In installation process of Acrobat Professional 7 , its showing that Adobe Pdf printer is not Installed...need help to install the software completely

    In installation process of Acrobat Professional 7 , its showing that Adobe Pdf printer is not Installed...need help to install the software completely

    If it is Win 7 or later, the Adobe PDF printer for AA 7 will not install and AcroTray will not function. You will have to install a PS driver from Adobe or maybe an HP color PS printer driver. Then edit the driver properties and change the name to Adobe PDF and the port to FILE. You will always have to do an extra step in creating PDFs by opening the file that is created in Distiller to get the PDF.
    If you are talking about Win 8, you may not be successful at all. If you got Acrobat and Distiller to install, then there is a chance.

  • I can no longer print PDF files that were scanned with the very same MX479 on Windows XP, SP3

    I can no longer print PDF files that were scanned with the very same MX479 All-in-One.
    I have an (obsolete) Windows XP, SP3 computer.  Obviously, no updates from Microsoft
    have occurred that might have impacted my Canon Pixma MX479.
    When I attempt to send 1 or more pages from a PDF file to the printer, I don't even get the
    Canon PIXMA popup that would allow me to cancel the print job.
    Yet the Print Queue icon appears in the lower right corner of my monitor.
    If I view the Print Queue, the print queue shows "spooling" and does nothing more.
    If I attempt to CANCEL the print job in the Print Queue, it simply changes to "deleting -
    spooling".
    I cannot cancel the print job that shows NOT RESPONDING via Task Manager, either.
    In fact, the only way the Print Queue icon disappears is if I totally reboot my computer!
    "Luckily", I can still print e-mails, Word documents, and even my downloaded PDF of my
    bank statement.
    So, I was thinking that it was *only* PIXMA'S OWN SCANNED PDFS that could not be
    printed ON THE SAME PIXMA 479.
    However, I have since realized that I also cannot print USPS Signature Proof of Delivery
    PDFs that I received from USPS via e-mail.
    So why can I print *some* PDF files, but not *all* PDF files, like I previously could do?
    THESE SCANS ARE OF LEGAL DOCUMENTS, SO I WILL LIKELY HAVE TO E-MAIL
    THE REQUISITE, PREVIOUSLY SCANNED PDFS TO FEDEX TO PAY FOR *THEM*
    TO PRINT THEM.
    NOTE: I *have* tried turning the PIXMA off, unplugging it, rebooting the computer, plugging
    the PIXM in and restarting the PIXMA - still no ability to print PIXMA-scanned PDFs.
    And, I find it very strange that e-mails, Word documents, and some other PDFs print with
    no problem "around" "NOT RESPONDING" PIXMA print jobs.
    I have owned Canon printers for years, including the MX420, and the MX340.

    There may be some security issues related to the USPS PDFs.
    http://www.certified-mail-envelopes.com/signatures-usps-certified-mail-return-receipt-requested
    I can't help with the scan/print problem. You seem to have done everything I would try.
    I don't know if maybe using a registry cleaner would help.
    John Hoffman
    Conway, NH
    1D Mark IV, Rebel T5i, Pixma PRO-100, MX472

  • PDF no longer shows up as a printer

    I found a 2009 question here that said it has to do with either Windows or Acrobat updates, but I couldn't find the solution on the site the answer linked to.
    I'm using Acrobat 9 Pro in Vista Home Premium 64 bit, and I just installed some updates. I want to print a webpage as a PDF. How do I get Acrobat listed as a printer again?

    Thanks, the problem is solved.
    I never had trouble opening Acrobat or the Print dialog box when I clicked on the printer icon. I rebooted, as you suggested, and the PDF printer still didn't show up, but this time when I went into the Print dialog box I think I clicked on Find Printer, then Add a local printer and then Create a new port and chose as Type of port Adobe PDF Port Monitor. Acrobat updated itself after I did that. I guess it wasn't one of the programs that had just updated when the problem happened.
    Thanks for your suggestions.

  • All PDF print as completely black pages.  I can read the PDF fine.  This is true on any printer.

    All PDF print as completely black pages.  I can read the PDF fine.  This is true on any printer.
    A google search shows others have had this problem, but I have not seen a solution posted.
    I have uninstalled and reinstalled Acrobat, without help.  I'm wondering if this is a registry problem.
    I saw some post that referred to a stuck switch of print colors as black, but I know nothing about this.
    Please help!

    I am using a Mac (all software latest version - Mt. Lion and Safari as web browser).  I see this exact problem but NOT with all PDFs.  As you might not know, PDF creation is built-into all Macs and I do NOT have a problem with any of those, nor has anyone complained to me about those.  Also, Macs have a bulit-in PDF viewer ("Preview") which also can NOT view the file correctly.  If I try to open the file once it has been stored on the desktop, Acrobat gives me an "incorrectly formatted PDF file" error.
    My AMEX statement is unprintable and some other stuff that comes from our local school board, and other online sources.  (My suspicion is that these files are not perfectly formatted).
    Here was my work-around:
    I use FIREFOX browser to retrieve the same PDF and it prints fine.
    I, too, would LOVE to know why this is happening because it is annoying.

  • Custom options in Adobe PDF printer are not showing up in "Default Settings"

    Hello,
    I am using Windows 7 and I am trying to create custom "Default Settings" in my Adobe PDF printer. When I make edits to an existing setting, click "Save As..." and save with a new filename, the new settings are not showing up in the "Default Settings" drop down box in the "Adobe PDF Settings" tab of the "Adobe PDF Document Properties" dialogue box. I can confirm that the new settings are indeed saved on my hard drive and are located in:
    C:\Users\[Username]\AppData\Roaming\Adobe\Adobe PDF\Settings
    No matter how many different custom settings I save as described above, they are simply now showing up. This works for me on other computers, but just happens not to work on my current one, which recently had an OS reinstall from scratch. Prior to the reinstall, it worked just fine on my computer (an ASUS UX31A laptop). The included pictures demonstrate what I'm talking about.
    Any thoughts?

    I finally solved this. The path for the Adobe PDF Settings was set to the follwing in the registry (HKEY_CURRENT_USER\Software\Adobe\PDF Settings):
        C:\Users\%USERNAME%\AppData\Roaming\Adobe\Adobe PDF\Settings\
    Even though "%USERNAME%" should work, it doesn't. I just replaced it with my actual username and it worked.

  • Mac with Lion OX, in print preview with PDF, only page 1 comes correctly, the rest misses some portion rest not

    I have iMac desktop with Lion OS. I am using Firefox 6 web browser. Previously with Snowleopard OS I did not have any problems with printing, With Lion OS print commands have changed and when I click preview in PDF format for printing a web page, only page 1 of the document shows correctly. In second page, the text does not show all of the document and few lines at the boundary is missing and the font is different from page 1. I tried using Google Chrome browser and this does not have this problem. If I do not find a solution I may be forced to move to Google Chrome. I will really appreciate a response. Thanks.

    Why not reconstruct the pages in InDesign they way you want the double pages to appear. There may even be an imposition script available that will do the trick. You could then output to pdf all the pages you want the full spread on. Leave the original to create the pages you wanted left as is.
    You can ask in the ID forum about an imposition script. I know there was one with CS4, there may have been one with CS3.

  • Adobe PDF Printer not showing -- no fix found yet

    The Adobe PDF printer is no longer showing on a system in the office. It's running Windows 7 Professional x64. The Adobe Acrobat version is Pro X.
    I have tried litereally everything I could find here in the forums and elsewhere, including uninstall, clean-up (using the Adobe tool), reinstall, maually printer install attempts (failed), manual removal of all printer ports relating to Adobe PDF documents etc. Nothing worked.
    Adobe Acrobat itself is working perfectly fine, but the PDF printer is not showing anywhere, or working. I had to install an alternative for now (PDF Creator), but obviously that's not an acceptable solution. The issue started, I believe, after some tax software package was installed that had its own PDF printer. The software has since been removed, and all troubleshooting has taken place after.
    System restore is also no option, since it doesn't go as far back.
    If anyone has any further suggestions, it would be very much appreciated. I am an IT professional, I'm comfortable with registry rediting or similar if that is what it takes, I'd just like to find a fix, and so far I've exhausted everything I could find (including Experts Exchange).

    Try this process.  If you get any errors then screenshot them and post them back to the forum.
    Try this to add Adobe PDF printer manually on Windows 7.
    If windows 7 is Enterprise or better edition: (Admin rights required)
    Start>search for printmanagement.msc and open the print management module
    Expand the print server and expand the computer name to see availbale printers, drivers and printer ports.
    - from printers ensure there's no Adobe PDF printer, if there is delete it
    - go to ports and delete the PDF ports (the ones ending in *.pdf)
    - go to drivers and delete the PDF converter.
    Take note if any errors occur, but continue with the following steps regardless.
    If on windows 7 home edition, just goto start>Devices and Printers and ensure PDF pritner is not listed.
    Then open the registry (if any erors deleting these keys happen, see below)
    1: go to HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Print\Printers
    delete any adobe PDF printer subkey present
    2: go to: HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Print\Monitors
    delete the PDF port monitor if present
    3: go to: HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Print\Printers
    again delete and pdf printer subkey
    If any erros occur, you need to set the owner of the key to the currently logged in admin user, then ensure that user has full control.
    Do this by right-click the key and selecting permissions, clicking on advanced, then the owner tab.
    Once all that has been done, open a command line as administrator.
    Copy and paste the following commands in order
    1: net stop spooler
    2: rundll32.exe setupapi.dll,InstallHinfSection AdobePDFPortMonitor 128 C:\Program Files (x86)\Adobe\Acrobat 10.0\Acrobat\Xtras\AdobePDF\AdobePDF.inf
    3: net start spooler
    4:rundll32.exe printui.dll,PrintUIEntry /if /b "Adobe PDF" /f "C:\Program Files (x86)\Adobe\Acrobat 10.0\Acrobat\Xtras\AdobePDF\AdobePDF.inf" /r "Documents\*.pdf" /m "Adobe PDF Converter"
    That should set back the pdf printer.

  • How do I save my InDesign project as a .pdf so that it shows up on the reader as FACING PAGES?

    How do I save my InDesign project as a .pdf so that it shows up on the acrobate reader as FACING PAGES?

    It's on the export options for PDF (Interactive), but not for PDF (Print).

  • CreatePDF printer    File shows ERROR in the status column and will not upload to my account

    When printing to the CreatePDF printer.  the file shows ERROR in the status column and will not upload to my account

    Adobe retired this Feb 17, 2014.
    This app sent content to and got content from the web based services of "CreatPDF" and "PDF Pack".
    These are subscription services out in "the cloud". When the app was live you had to be online and signed into your account.  The user forum for CreatePDF has a DOC that speaks to the app removal.
    Be well...

Maybe you are looking for

  • TS4088 MacBook Pro (15-inch, Mid 2012): Intermittent black screen

    My new MacBook Pro is running Mountain Lion and the screen suddenly goes black while I am working. It seems that the machine is running, but the screen just goes black and does not show the login box or anything else. In order to get back to the logi

  • Same custom code in B2B app. for two shops

    Hi experts!! I am working on B2B application. I have created my own application, added and changed some java and html code. Now i want to use the same application for a second sales area. As far as i know i have to create another shop for the second

  • Ele-10... Still searching for photos...

    Thanks 99jon!     I backed up my A-E10 program and files to an EXTERNAL HD before re-installing my xp-os. No, I did not have the "internal BACK-UP" system on.. Now that I have (re)installed my A-E10 back on my HD, I'm praying that there's a way to br

  • Yet another iPhone 4 camera issue - flash positioned too close to camera!

    I have noticed photos taken with flash leave a bloom of white light on the left side of the photos. Seems to be the glare due to the fact the flash is positioned so close to the lens! There are no 'divider' between the 2. Usually on other phones, the

  • ALV USING OBJECTS

    I AM USING LVC_T_FCAT. BUT I CAN GET THE TOTAL IN ALV REPORT DISPLAY. PLS, SOMEBODY HELP