Cannot extract the embedded font 'EX_CFF_Arial_Black'. Some characters may not display or print corr

I have been getting the error....
Cannot extract the embedded font 'EX_CFF_Arial_Black'. Some characters may not display or print correctly.
I have tried to look online to figure this out but I have had no luck.  If anyone has any suggestions to fix this I would love to hear them.  Thanks!

Just to let you know, for anyone else with this problem. I had this problem occur on a MAC when you tried to do save to PDF in excel. This was all happening at the point of generation of the PDF in my case.
The fix was to delete ALL the microsoft preferences, but perahps only the font cache needed to be deleted.
I deleted the following areas from the local users userprofile on the mac. On windows, I would probably log in as a differnet user to try to see if the problem just exsists for one particular user.
Here are the sections I deleted:
Library/caches/metadata/Microsoft*
Username/library/preferences/com.microsoft* ( and anyhting with microsoft in it)
I did leave the entourage settings though.
hope it helps someone with a similar issue.

Similar Messages

  • Cannot extract the embedded font arial.Some char might not be displayed

    Hi Folks,
                  Our requirement is to generate the customer account statement for a set of cusomters during a particular period.
                         we  use a script to generate the statement and convert it to pdf.This pdf is then stored in the application server and retrived using cg3y transaction.The transaction allows the statement to be generated for multiple customers and company code.
    the problem that we face is that the first customer account statement is generated properly the rest of the statements are not displayed properly.When we open the customer account statement we get the error 'Cannot extract the embedded font arial.Some characters might not be displayed properly'.All the Headings that we of the font BOLD ARIAL were not displayed.
    This error does not occur for the first pdf file generated.(say we have 3 customers  for the 1st customer pdf is proper however for the next two error'.
                         When I checked the application server I found that the first file has font subtype as Type1 and then rest of the files have font subtype as Truetype.
    This is working fine.I downloaded the file to pc using cg3y.the pdf looks fine.                   
    Directory:  /home/nwfound/n_us_cas
    Name:       0010798791US13122009.PDF
    %PDF-1.3#
    2 0 obj#
    /WinAnsiEncoding#
    endobj#
    3 0 obj#
    <<#
    %Devtype SAPWIN   Font COURIER  normal Lang EN#
    /Type /Font#
    /Subtype /Type1#                       ****see here font subtype is type1
    /BaseFont /Courier#
    /Name /F001#
    /Encoding 2 0 R#
    >>#
    endobj#
    4 0 obj#
    <<#
    /Filter 5 0 R#
    /Length 6 0 R#
    /Length1 352224#
    >>#
    stream#
    This one is not working fine.Gives an error 'Cannot extract the embedded font arial.Some characters might not be displayed properly when downloaded to pc using cg3y.The heading that were of font ARIAL BOLD were not displayed.
    Directory:  /home/nwfound/n_us_cas
    Name:       0010000105US13062010.PDF
    %PDF-1.3#
    2 0 obj#
    /WinAnsiEncoding#
    endobj#
    3 0 obj#
    <<#
    %Devtype SAPWIN   Font COURIER  normal Lang EN#
    /Type /Font#
    /Subtype /TrueType#                - see here the subtype is True type.How can i change this?
    /BaseFont /Courier#
    /Name /F001#
    /Encoding 2 0 R#
    >>#
    endobj#
    4 0 obj#
    <<#
    /Filter 5 0 R#
    /Length 6 0 R#
    /Length1 352224#
    >>#
    I have to change the tont subtype to Type1 as in my first cust. statement.Is there a way to this???????
    There can be no problem with the code cause the account statement generated for first customer is perfect.
    Any suggestions will be appreciated.
    IF hotfdata[] IS NOT INITIAL.
    *Convert otf data to pdf lines.
        CALL FUNCTION 'CONVERT_OTF'
          EXPORTING
            format                = 'PDF'
          IMPORTING
            bin_filesize          = l_size
          TABLES
            otf                   = hotfdata
            lines                 = li_pdf_output
          EXCEPTIONS
            err_max_linewidth     = 1
            err_format            = 2
            err_conv_not_possible = 3
            err_bad_otf           = 4
            OTHERS                = 5.
        IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        ENDIF.
    *clear hotfdata otherwise next empty cust acc. statement may have
    *this data.
        REFRESH:hotfdata.
        CLEAR   hotfdata.
    *If account statement is generated then set w_flag to generate email.
        w_flag = 'X'.
    *The converted pdf lines are of char132 format.
    *They have to be converted to char255 format.
        LOOP AT li_pdf_output INTO lwa_pdf_output.
          TRANSLATE lwa_pdf_output USING ' ~'.
          CONCATENATE l_gd_buffer lwa_pdf_output INTO l_gd_buffer.
          CLEAR lwa_pdf_output.
        ENDLOOP.
        TRANSLATE l_gd_buffer USING '~ '.
        REFRESH li_mess_att.
        DO.
          li_mess_att = l_gd_buffer.
          APPEND li_mess_att.
          SHIFT l_gd_buffer LEFT BY 255 PLACES.
          IF l_gd_buffer IS INITIAL.
            EXIT.
          ENDIF.
        ENDDO.
        CLEAR   x_objcont.
        REFRESH x_objcont.
        LOOP AT li_mess_att.
          x_objcont = li_mess_att.
          APPEND x_objcont.
        ENDLOOP.
    *application file name
        CONCATENATE po_filun kna1-kunnr save_bukrs datum02+4(2)
                      datum02(4) lc_pdf INTO l_filename.
        CONDENSE l_filename NO-GAPS.
        CONCATENATE file l_filename INTO file.
        CONDENSE file NO-GAPS.
    *Transer pdf data to app. server.
        "data len type i.
        OPEN DATASET file FOR OUTPUT IN BINARY MODE.
        LOOP AT x_objcont.
          TRANSFER x_objcont TO file.
        ENDLOOP.
        CLOSE DATASET file.
      ELSE.
        REFRESH:hotfdata.
        CLEAR   hotfdata.
      ENDIF.

    Hi,
    this can be related to the compression of the PDF file.
    You can turn off the FlateDecode compression again via report RSTXPDF3 as described in Note #843480. It is a little confusing. The option 'FLATE_COMPR_OFF' needs to be set to 'On' to turn off the FlateDecode compression.
    To set this please run as follows:
    se38 -> RSTXPDF3 -> enter 'FLATE_COMPR_OFF' in the 'Name' field -> Select 'Change Settings' radio button
    You will get a pop-up 'Do not use flat compression'.
    Select the 'on' button.
    After this check if the PDF is created correctly.
    regards,
    Aidan

  • After I optimize my pdf I get this error  "Cannot extract the embedded font 'FONT NAME' Some characters may not display or print correctly.

    After I optimize my pdf I get this error  "Cannot extract the embedded font 'FONT NAME' Some characters may not display or print correctly.

    This Acrobat forum may be a better place to ask: https://forums.adobe.com/community/acrobat/creating__editing_%26_exporting_pdfs

  • Cannot extract the embedded font 'FONT NAME' Some characters may not display or print correctly

    After I optimize my pdf I get this error  "Cannot extract the embedded font 'FONT NAME' Some characters may not display or print correctly.
    Acrobat X 10.1.10
    I am optimizing to create a smaller lores file to email .

    I am not trying to remove the font.
    I am trying to reduce the size of the file to email.
    After optimizing the file this error pops up.
    I have tried changing the setting for fonts but no success.

  • Error message from Adobe Reader. cannot extract the embedded font 'LICCMC+MyriadPro-Light'. some characters may not display or print correctly. Print looks like gibberish

    Trying to view/print PDF documents from website. Print looks like gibberish and is unreadable. Problem is with the embedded fonts. Error message from Adobe says cannot extract the embedded font 'LICCMC+MyriadPro-Light'. some characters may not display or print correctly.

    Try Adobe support, that's not a Firefox support issue. <br />
    http://forums.adobe.com/index.jspa

  • Cannot extract the embedded font 'F2'. Some characters may not display or print correctly.

    This question was previously published but no answer has been found.
    Error message is :
    "Cannot extract the embedded font 'F2'. Some characters may not display or print correctly."
    Many pdf documents display this error with Adobe Reader 8.1.0. We have errors for embedded fonts 'F0','F3','F7' and so on.
    It looks like a Adobe Reader bug because :
    - All PDF files can be opened with Acrobat Reader 5.0.5, 6.x and 7.x, can't be opened with 8.1.0 version.
    - the 8.1.1 update removes only the bug for 'F0' error message (issue #1572280).
    The solution :
    - to publish a 8.1.2 update to fix this important bug
    - is there a registry parameter or tool option to disable the checking added in 8.x version of Adobe Reader ? The 8.x version catches more errors to be compliant with Adobe specification but Adobe reader must be
    compliant with all documents generated by third party products.
    This Adobe Reader bug applies to Windows Vista, XP Pro SP2, 2000.
    Thx,
    Regards

    Just to let you know, for anyone else with this problem. I had this problem occur on a MAC when you tried to do save to PDF in excel. This was all happening at the point of generation of the PDF in my case.
    The fix was to delete ALL the microsoft preferences, but perahps only the font cache needed to be deleted.
    I deleted the following areas from the local users userprofile on the mac. On windows, I would probably log in as a differnet user to try to see if the problem just exsists for one particular user.
    Here are the sections I deleted:
    Library/caches/metadata/Microsoft*
    Username/library/preferences/com.microsoft* ( and anyhting with microsoft in it)
    I did leave the entourage settings though.
    hope it helps someone with a similar issue.

  • Cannot extract the embeded font 'KDGXKF+TTF5BC9A0t00'.Some characters may not display or print correctly.

    I am currently using Adobe Reader version 9.1.3. When I open certain files, it displays the following message, "Cannot extract the embeded font 'KDGXKF+TTF5BC9A0t00'.Some characters may not display or print correctly". Some fonts are actually missing and will not display when printing. I have tried updating adobe but the problem still persists. Under file properites, the following font TTF5BC9A0t00 is recognised by Adobe as true type and custom encoding. Anyone has any suggestions for fix??
    Cheers
    RK

    RK7.10.09 wrote:
    Under file properites, the following font TTF5BC9A0t00 is recognised by Adobe as true type and custom encoding. Anyone has any suggestions for fix??
    Cheers
    RK
    BUT, does it say "embedded" or "embedded subset" next to the font name. If not, the font isn't included in the file and if you don't have it, it can't display or print it.
    The file creator will need to embed the fonts properly although "some" fonts don't allow embedding. This could be one of them.

  • Error Message:"Cannot find or create the font 'WP-MathA'. Some characters may not display or print correctly."  Who can help me solve this problem?

    Some of the pdf files I work with (receive) come up with a comment: “Cannot find or create the font ‘WP-MathA’. Some characters may not display or print correctly.”  Who can help me solve this problem?
    Thank you in advance for  your time.
    Marlen

    Hello Anubha,
    I am having a similar problem on my machine.  I was using Word 2008 and I created a PDF inside Word.
    I am opening the file on the system itself and I am running Windows 8.1.  I am using Version 11 of Reader.
    When the PDF I created (my resume) attempts to open, it says:  cannot find or create the file Times, Bold.  Some characters may not display or print correctly. 
    However, the entire Reader keeps freezing and will not allow me to open or test print the document.  Also, it is not displaying any of the Bold Times New Roman Print.  Can you please help?  Thanks.

  • Cannot extract the embedded font"...". Some characters may not display or print co

    Been trying to find a solution for this problem that has been rearing its ugly head for years now...
    Its definitely related to flattening transparencies, I believe, as it only appears after I click 'APPLY' under the apply to pdf section of the Flattener Preview Dialog.
    Im exporting the files as pdfs(interactive) from CS6 Indesign. I then have to flatten the transparencies for the digital addition requirements while leaving the fonts embedded. No problems until I try to Flatten the transparencies. Several files return the same error for a number of fonts.
    I've read that could be specific character issues. Font Doctor finds no issues with the fonts in question.
    Also getting a similar error regarding character widths.
    Others have reinstalled the fonts to no avail.
    Does anyone no of a workaround that doesnt require using alternate fonts?
    Ive dumped the font cache too. Didnt help.
    Thanks for any advice in advance,
    KMH

    Just to let you know, for anyone else with this problem. I had this problem occur on a MAC when you tried to do save to PDF in excel. This was all happening at the point of generation of the PDF in my case.
    The fix was to delete ALL the microsoft preferences, but perahps only the font cache needed to be deleted.
    I deleted the following areas from the local users userprofile on the mac. On windows, I would probably log in as a differnet user to try to see if the problem just exsists for one particular user.
    Here are the sections I deleted:
    Library/caches/metadata/Microsoft*
    Username/library/preferences/com.microsoft* ( and anyhting with microsoft in it)
    I did leave the entourage settings though.
    hope it helps someone with a similar issue.

  • Cannot extract the embedded font - Adobe Reader XI

    Hello,
    I have an XPS file converted to a PDF with an embedded font inside, when I open the file, as I scroll to a page having '&' in the text (that's my case, but it's probably the same with any special character), a message box shows up saying "Cannot extract the embedded font 'HDGSLM+[my font]'. Some characters may not display or print correctly." and I can't see the special character in the page.
    I checked that my font was actually embedded in the PDF (File -> Properties -> Fonts) and seems to be ok, normal characters look fine and the application doesn't say anything until I scroll to the page with '&' inside. Also, other PDF readers show the document fine.
    I looked around the forum and saw that other people got the same problem and to them was a bug introduced in Adobe Reader 8.x, but nothing was confirmed by developers.
    Can you help me? Is it a bug? If yes, is Adobe working on it?
    Thank you.
    P.S.
    My Adobe Reader version is 11.0.4

    Reader can not create PDF files, so you should look for bugs in the software that was used to generate it.

  • Cannot extract the embedded font 'IEOFAD+TimesNewRoman'.

    I am a Mac OS X 10.6.8 and Adobe reader X 10.1.4 user. When I'm opening a pdf file, this error message come out: Cannot extract the embedded font 'IEOFAD+TimesNewRoman'. Some characters may not display or print correctly.
    How do I solve this problem? Thanks.

    Your question pertains to the Mac version of Adobe Reader. I've moved it to the Adobe Reader forum.

  • How to fix error "Cannot extract the embedded font ...."?

    When I open the pdf file on the following webpage, I get the following error message "Cannot extract the embedded font 'BLKDIK+PLBIserif-Medium'. Some characters may not display or print correctly". Is there a way to get rid of such error in the pdf file?
    http://www.plosbiology.org/article/info:doi/10.1371/journal.pbio.0030213

    Install Foxit PDF reader, and then you can see the PDF document without any problem.
    I think your book was generated from Quartz.
    As I know there is no free solution for this problem. Updates of Abobe reader will not work.
    tips:
    You don't need Foxit reader as a default PDF reader program.
    Foxit reader shows document with plain standard font.

  • Cannot extract the embedded font...

    I am encountering the following message when opening a particular .pdf:
    Cannot extract the embedded font "Arial,Bold". Some characters may not display or print correctly.
    I've attempted to open his file at different PCs-message persists.
    Adobe Reader 8.1.2
    Windows XP SP3
    Dell Optiplex 745
    2GB RAM

    According to this thread: http://choorucode.wordpress.com/2010/02/02/adobe-acrobat-embedded-font-error/
    the error relates to a font that is used in the document that is incompatible with the version of Adobe Reader being used (or is an outdated font). On the extreme side, the font itself could be corrupted on the PC of the person who created the PDF. So, you'd want to check:
    1) Is the font file on the PC corrupted (does this happen only for documents created by one user on one machine)?
    2) Is the font outdated/unsupported?
    3) Is the font incompatible with your version of Adobe Reader?

  • Cannot extract the embedded font - Adobe X

    I opened a book and got the message:
    Cannot extract the embedded font 'CAPBKC+MyriadMM-830--130-'. Some characters may not display or print correctly.
    How can I rectify this?
    Regards,
    J

    Install Foxit PDF reader, and then you can see the PDF document without any problem.
    I think your book was generated from Quartz.
    As I know there is no free solution for this problem. Updates of Abobe reader will not work.
    tips:
    You don't need Foxit reader as a default PDF reader program.
    Foxit reader shows document with plain standard font.

  • Acrobat 7: cannot extract the embedded font

    My problem is with reading some (not all) imported files with Acrobat 7 Professional. Certain files that will open with both Acrobat Reader 5 and Reader 8 will not open with Acrobat 7 Professional. I could understand much better if a file would open with 8 and not with 5 & 7, or with 5 but not 7 & 8. But in these particular cases it is only 7 that will not work. I am working on a PC with Windows XP.
    I get the message:
    "Cannot extract the embedded font xxxxxxxx. Some characters may not display or print correctly"
    The entire document then appears to be blank--through interestingly enough I can carry out other Acrobat 7 operations such as deleting specific pages in the pdf file.
    I suspect that there is a simple preferences setting that is wrong, but have been unable to find anything that helps.
    Any help would be appreciated.
    Of course, I may not be in the right forum, and this is really a problem with the "Professional" package, not just the Reader.

    Hi Markus ,
    It is a problem with the pdf file being encoded as ascii by the email program when it is really binary. The way to get around the problem is to zip the file or use a different email program or change the encoding method if possible.
    Regards
    Sukrit Dhingra

Maybe you are looking for

  • What are the options to replacing my iPod?

    my iPod is acting very weird lately. by my battery dying easily and apps shutting down. my screen is cracked but i would like to replcae it and stop worrying about this problem. and as I'm typing this , it types so slow..

  • Outlook 2013 Mail Setup Add Account crashes or will not connect to Exchange in Windows 8.1

    I've posted this in the answers.Microsoft.com forum, as well as the Office365 forum, and they sent me here, saying the Outlook engineers would be the best to help with this.  I actually already posted this question a week ago, but nobody here replied

  • Autorecovery in Photoshop CS6

    I use PS CS6 on a Win7 64bit machine. I noticed several users having issues with the autorecovery in PS. I had some too in the past, and just yesterday I had a PS crashing a couple of times too. The error seemed to be related to the facial recognizin

  • Automountd crash - can't see removable drives

    Hi, I have a Power MAC G4 tower running Leopard (v10.5.4). I also have a Western Digital external hard drive (250 GB) attached via firewire that contains my iPhoto Libraries. Recently, the WD drive does not appear in my Finder window. It is detected

  • IPhoto MobileMe Gallery

    How do and can I sort the albums in my web gallery ? Just "drag-and-drop" won't do ... iPhoto '09 version 8.0