Saving as PDF -- Font not showing up

I'm running Illustrator CS2 on a Power Mac G4 Quicksilver, OSX 10.4.11. When I save my file as PDF, some of the type is not showing up in certain areas in the resulting PDF. Font is Helvetica Neue 67 Med Condensed. Odd thing is that the same font and weight is showing up in some spots but not others. Type is painted white against a dark blue background.
I have tried copying the text and making a PDF with just the text and it works fine.
I've tired saving to all different levels of PDFs. No luck.
I've tried turning type to outline and still type does not show in resulting PDF.
I've tried turning type to outline, saving as EPS and running thru Distiller. Still type does not show up.
Next thought is to rebuild the file, layer by layer to see where the glitch is.
Anybody out there run into this one?

You’re welcome. Illustrator won’t let you overprint process white. But if something was a different colour and is then changed to white, any overprint attributes remain. There is no warning except for a subtle icon in the Attributes panel, which, of course, must be visible to help. Years of griping at Adobe have done nothing, because Adobe have no interest in making Illustrator a better program, just in making it a bigger program with more wonderful “features” they can use to trick you into upgrading. Customer service, intuitive software, documentation, support, and even basic product testing are alien to Adobe.
The cause of this is most often black text and logos that are expected to be used for placement in many different circumstances. The designer of the original will add the Overprint attribute to the black objects because the art may be used over other colours. When someone opens the file, then changes the colour to white, they get the problem you had.

Similar Messages

  • PDF Fonts not showing properly

    Hi guys,
    I'm having a problem with a PDF of my professor. Apparently he is using some monospace font in his PDFs which are shown pretty strange with okular (and evince). Only the Adobe Acrobat Reader is showing the fonts in a readable way but I don't want to use Adobe Acrobat Reader because it has no annotation features. I want to stick with okular.
    So, pdffonts shows me this output:
    $ pdffonts PDF_FILE
    name type encoding emb sub uni object ID
    LucidaConsole TrueType WinAnsi no no no 149 0
    CGIFJI+SymbolMT CID TrueType Identity-H yes yes yes 123 0
    I already installed the package ttf-ms-fonts, downloaded the SymbolMT font manually, did a fc-cache -vf and tried to open the pdf again with okular. The output is this:
    http://imgur.com/rfispQZ
    /E: Here is the output of the adobe reader: http://imgur.com/vmhXLiW (Still ugly but more readable.. this is how it is supposed to look)
    What do I need to do to be able to have readable fonts in that PDF?
    Any help is appreciated!
    Last edited by lmnsqshr (2014-03-18 11:51:07)

    OlaffTheGreat wrote:I had a similar issue with a serie of japanese pdf files, using a quite old japanese fonts.
    These fonts are used a lot in Japan, but are not well supported in linux.
    I tried many configurations of xpdf, evince, even the adobe linux version.
    Eventualy, I got success with "foxitreader" (aur, v1.1-5 now)
    Thanks for your reply, foxitreader looks great but neither does it output the fonts properly (it's the same as okular) nor does it have an annotation feature.

  • Every time I try to save my Indesign document as an Interactive PDF, the option of either saving it as Interactive PDF or PDF is not showing.

    Every time I try to save my Indesign document as an Interactive PDF, the option of either saving it as Interactive PDF or PDF is not showing.

    You export to PDF, not save.

  • 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);

  • Fonts not showing up in InDesign CC 64bit

    I find it extremely difficult to believe that Adobe have not found a solution to the issue of installed fonts not showing up in InDesign. If anybody has found a solution that does not include the "rewriting" of font types. Please assist. We specialize in Brand Management, and it becomes extremely challenging when Adobe InDesign does not show up the installed font in order to ensure Brand Management :/

    POSSIBLE SOLUTION
    I'm not sure if this is the cause for anyone else, but I had the same symptoms--almost no fonts showing up in InDesigns Font dropdown options.
    THE SOLUTION:  The new version of ID has two "font filter toggle button". They are the "Apply Favorite Filter", and "Apply Typekit Filter". It seem that in my install, the Typekit filter was on by default, which makes it so that the Font list only displays those fonts that originate from Typekit, as opposed to the thousand you have on your hard drive.
    Click the toggle to turn off the filter and --zowee! All your fonts come right back.
    I hope this helps some of you. It would also explain why people on both Macs and Windows boxes are having this issue.
    Best,
    Lance

  • Fonts not showing up in Flash CS5

    Maybe I'm missing something simple but I just can't get some fonts to appear in Flash cs5  on mac osx. they work fine in Photoshop / Illustrator, but don't appear in Flash.
    Any ideas?

    You may find something useful in one of these links:
    http://forums.adobe.com/message/3238692
    http://jeremy-knight.com/2011/05/certain-fonts-not-showing-up-in-flash/

  • Fonts not showing correctly only when on my account page on app store

    fonts not showing correctly only when on my account page on app store

    Firstly, make sure that your device is not hidden (left hand pane). If it just reads device then toggle between SHOW and HIDE.
    Secondly, try all the other ports on your computer, even a number of times.
    Thirdly, if you have another computer try plugging your device into it without taking any action, give it a moment, remove it and try it back in your other computer again.
    Failing all that, see here - http://support.apple.com/kb/TS1538 for Windows and http://support.apple.com/kb/TS1591 for Macs
    And failing all that put the device into Recovery mode. See here and note the paragraph 'If you restore from a different computer.... ' down near the bottom of the page -
    http://www.apple.com/support/ipad/assistant/itunes/

  • Adobe PDF Toolbar Not Showing In Firefox

    I installed CS5 Master Collection in Windows 7 64 and Adobe PDF toolbar installed automatically in IE8 but not in Firefox latest version. Would somebody please tell me what to do to install in Firefox?
    Thanks a lot!

    Thank you for all the information. I'll upgrade to Acrobat X.
    Date: Sun, 6 Feb 2011 11:45:21 -0700
    From: [email protected]
    To: [email protected]
    Subject: Adobe PDF Toolbar Not Showing In Firefox
    Adobe Reader if always free. Acrobat requires a purchase.
    Also Acrobat X has different UI, there is usually a floating toolbar that can be used to open the full toolbar.
    >

  • Hindi font not show in Pagemaker

    Hindi font not show in Pagemaker

    Pagemaker has limited font support and will not be able to handle Hindi. There was a middle eastern version back in the day, nut I'm not sure if it supported hindi. Indesign and maybe some 3rd part plugins would be your best bet.
    Jay

  • Some fonts not showing up on Mac

    I produced an e-book on typography for maps. It was produced on a PC and converted to pdf using the PowerPoint 2007 Save As PDF option. My customers who are on PCs have not had any trouble viewing all the fonts shown in the e-book exactly as they should be. However, two of my Mac customers (perhaps more, I do not know) are having black boxes show up where the letters should be. This only happens for certain fonts. For example, AUdimat (OpenType) is not showing up but Gentium Plus (OpenType) is. The fonts are embedded in the file. Any ideas? Thank you so much for any help you can provide.
    It may even be that the fonts are showing up in regular mode (the customers have Acrobat Pro, I believe) but not when it prints or is in Preview or QuickLook. It is a mystery to me.

    I originally thought it was a Mac versus PC issue but now (re: previous comment) it looks to be that the Save as PDF option did not save all the fonts. Some of the fonts saved were OpenType some of the fonts not saved were OpenType. So it doesn't appear to be an OpenType issue. If I were to purchase Acrobat Standard or Pro would I be able to embed all the fonts? Maybe it is because I am using PowerPoint 2007's Save as PDF that is the problem but I am just not sure. I tried signing up for Adobe CreatePDF but then found out that my file size is too big for that program (it's 12 mb whereas the file size limit for Create PDF is 10 mb). Thanks again for reading...

  • PDF file not showing correctly in Preview or other apps

    Hi,
    I've trying to find an answer to my question for some time now on the internet, but couldn't find it anywhere. When I open a pdf file from someone who created it using Windows diagrams that are supposed to be Matrices are not showing properly. Most probably the matrices were created using the equation builder in MOffice.
    <-- this is supposed to be a matrix
    There is also a problem with showing symbols like subscripted or superscripted letters (Arrows represent superscripted or subscripted letters, either up or down):
    And for some reason, when I try to quicklook the file, some pages are displayed incorrectly - only showing a quarter of the page:
    Any help on this? Is there some sort of an update to solve this problem, or should I download additional fonts??
    I am using a Macbook Alu from 2008 with OS X Maverick installed - all latest updates are installed.. (However the same problem appeared when using an iPad)
    Thanks a lot i advance!

    Hi Carolyn,
    I looked at your file and it seems the problem is with the resolution. The design is great but the resolution was too low.
    Fortunately your Apple Smart Object was high resolution so I was able to increase the resolution of the file as it is. You will need to replace the Bar Code and possibly the little flower on the back cover with high res versions.
    In the future you need to start with the document being sized right and the resolution at 300 ppi. Make sure your graphics are high resolution from the start as well. You can't regain resolution that was left out, although using High Resolution Smart Objects can give you the the latitude you need to size back up.
    After I sent the file I looked closely at the font. The one font you used does have zaggies but it's supposed to. Bradley Hand ITC TT is kind of a rough font around the edges by design. If this is what seems to be the problem, you will need to change to another font. Still, the file needed to be higher resolution.
    I sent one back to you in high res. All you need to do is replace the bar code and the little flower with high res version. The apple graphic smart object was high enough.
    Linda

  • Some fonts not showing in Preview

    I have received PDF files from clients and consultants in which a font does not show up on screen or print using Preview but is there when viewed and printed from Reader.
    Seemingly related somehow, after marking up a PDF in Preview and attaching to an email, themarked up text does not appear in the attachment preview onscreen in the email although it is visible and prints when the attachment is opened in Preview.
    Any help out there? Is this a Preview bug? Who knows how much stuff we have missed because of this problem.

    Are you saying the font won't show up in Preview along?
    What about other applications, such as TextEdit, does it show up there?
    Are the fonts deselected in your Font Book?
    Remember to mark as helpful or solved.
    -benny-

  • PDF file not showing context

    After upgrading to ML I have recived a PDF that if I open with Preview only shows me part of the info (layout tables and bullets) but the text does not show!
    The text works for the windows users and I can see it in OmniGraffle.
    Anyone an idea what's wrong?
    Is it the PDF (i.e. the user who made it) or has it got to do with limitations within preview?
    Kind regards,
    Dani

    Please post a sample of the PDF file itself. If you are not embedding the font in the PDF file, but the PDF file doesn't properly provide the font's name, this symptom will occur. Give as a link to the file and we'll take a look at if for you.
              - Dov

  • PDF Buttons not showing in iBooks

    I have inserted navigation buttons at the bottom of a PDF docment within Acrobat X.  The buttons show up and work just fine in Acrobat.  They also show up in the Goodreader application.  However the buttons do not show up in iBooks.  Is there a way to make them show?  I have even tried to create a image and attach a link and the buttons still do not show up.  Any help or suggestions will be greatly appreciated.

    Make sure you have followed the directions below copied from this article....
    http://support.apple.com/kb/HT4227
    Syncing and saving PDFs
    To add PDFs to your iTunes library on your computer, simply drag and drop the PDF into your iTunes Book library.
    To sync a PDF to iBooks on your device:
    Select your iPhone, iPad, or iPod touch in the Devices list on the left in iTunes 10.1 or later.
    Click the Books tab in the resulting window.
    Ensure that the Sync Books checkbox is enabled.
    If iTunes is set to only sync selected books, be sure to enable the checkbox next to the PDF you want to sync.
    Click Sync.

  • Fonts not showing up

    i have installed some fonts in both the Windows/Font dir and the Adobe/Indesign/fonts dir.
    The font is a collection, but only the first font, a bold, in the collection is showing up anywhere - CS3 or even in Office. All the variations light, condensed etc are not showing up although they are present in the fonts directories.
    I'm running Windows 7 and other fonts are working ok, for example Helvetica Neue LT shows all the font family in all areas.
    anyone familiar with this?

    Thanks Mylenium
    I'm running windows 7, 64bit. Fonts are Berthold AG Book Rounded, Book Stencil, Old Face and Schoolbook. I purchased a computer from a designing friend. She's moving into another career. I wanted to transfer the fonts onto my main machine, then reformat the other machine as a backup server. After I install the fonts I can see one of each of the fonts in any of my CS3 applications but there are no variations in the styles. But in the font directory I can see the variations, such as bold, condensed etc.
    I've also tried installing in the InDesign Fonts dir as well.
    thanks Elsie_C

Maybe you are looking for

  • Can't open a folder?

    I can't open one of my folders! When I try Finder hides and my desktop refreshes itself. If I try to see what's in a folder in Word or something, the program "quits unexpectedly". What should I do? I ran antivirus software and it didn't come up with

  • Step By Step Implementation of RAC in Oracle EBS R12 (version 12.0.4)

    Hi, Can anyne suggest me any Document in metalink or any other useful document on the *"Step By Step Implementation of RAC in Oracle EBS R12 (version 12.0.4)"*. My Database Version is 10g Enterprise Edition Release 10.2.0.4.0 and my Platform  is HP-U

  • KDEmod 4.1 (RC1) packages

    It doesn't look like many people know of them, and since we could use some more testing before 4.1 is released, I'm posting here. An up-to-date-ish post here, about how to install it: http://www.kdemod.ath.cx/bbs/viewtopic.php?pid=4611 In addition to

  • Cannot get sound to work on my notebook

    My HP Pavilion dv6-6c02tu sound icon on the taskbar now has a red cross next to it and I have no sound.  These are the steps I have tried so far to resolve the issue. - Clicked on the sound icon on taskbar. My computer checked the audio driver and tr

  • Why doesn't IO6 let me sign in to my home WiFi?  It doesn't accept the password

    IPhone will not accept my password for my home WiFi network since I went to IO6.  Help