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.

Similar Messages

  • 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

  • Error: cannot extract the embedded font 'WTNNGO+LiberationMono-Bold' when reading a PDF

    I am trying to read a pdf file and I get the error: cannot extract the embedded font 'WTNNGO+LiberationMono-Bold'. Then some of the words are displayed as sets of dots, a dot per character. I have tried Adobe Reader 7 through 11 all with the same error. Apparently some fonts are missing. My OS is 64 bit windows 7.

    Tell them to embed the font information into the PDF. You don't have the font on your system so as-is, the PDF needs it to display that font. With embedded font information, you don't need the font.

  • Cannot extract the embedded font error

    Hi everyone,
    When opening a pdf file, I get the following error:
    Cannot extract the embedded font 'QGCXJE+HelveticaNeueLT-Roman'. Some characters may not display or print correctly.
    Does anyone know what it means and will it affect the printing when I send it to a printer?
    Thanks for any help.

    I am getting the same error on making pdfs fomr Illustrator. Though everything looks good, this is not acceptable to send a pdf to the client for review, and was not happening before.
    My system
    OS 10.8.4
    Acrobat 10.1.7
    This does not happen on all files, but repetitively on certain series of files, so must be a font conflict in the files.
    hmm might be this zapf dingbat, did nto get a warning about missing

  • 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

  • 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

  • Error message: "Cannot extract the embedded font DAAAAA+Arial MT..."

    hello,
    after open an pdf file I get the error message "Cannot extract the embedded font DAAAAA+Arial MT..." I get this message with Adobe Reader Version 6.x, 7.x, 8.x and 9.0 on three different pc (Windows XP). The file was written with Adobe Acrobat Version 8.1
    I found the kb402950 but the solution to use Version 7.x didn`t work.
    Any other ideas?

    Hey k%20street,
    There seems to be a font issue within this particular file, but you cannot do anything using only Reader.
    So, as long as it displays correctly, there should be no problem with printing. It is simply a warning that apparently something was a miss in an embedded font and result might not be as expected.
    Regards,
    Anubha

  • Error " Adobe Reader - cannot extract the embedded font 'Ariel Bold "

    Hi gurus!
    I have created smartform for pdf invoice via mail to user id. when that invoice send to user id . PDF file is getting a popup -" Adobe Reader - cannot extract the embedded font 'Ariel Bold . Some characters many not display or print correctly ".
    I want to remove this unwanted popup. please provide any possible solutions.
    regards,
    Ravi

    Hi ravindra, what i can suggest you is to set a breakpoint just before ur cursor goes into the pdf part and just comment the part when it comes to the popup. its very easy and the best way to do it.
    Cheers

  • 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.

  • 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 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.

  • 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.

  • Acrobat Professional 8.1.6 "Cannot extract the embedded font...."

    I created a PDF exporting from InDesign and when the PDF opens I get the message: "Cannot extract the embedded font...Some characters may not diplay or print correctly." I made sure the font was postscript font and is not corrupted, I changed the font and the same problem happened.
    I have looked all over the internet for an answer and have not found a solution. Can you please give me some advised how to solve the problem?
    iMac G5-PowerPC G5
    Mac OSX version 10.5.6
    Adobe Acrobat Professional 8.1.6
    InDesign CS3 5.0.4
    Thank you.

    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

  • Cannot extract the embedded font "Times_New_Roman"

    About a month ago we started receiving this error on some .pdfs being sent to our company. "Cannot extract the embedded font "Times_New_Roman". Some characters may not display correctly".
    Any idea whats causing this and what I can do correct the issue? I've tried upgrading the reader to 9, but still no luck.

    I am getting the same error on making pdfs fomr Illustrator. Though everything looks good, this is not acceptable to send a pdf to the client for review, and was not happening before.
    My system
    OS 10.8.4
    Acrobat 10.1.7
    This does not happen on all files, but repetitively on certain series of files, so must be a font conflict in the files.
    hmm might be this zapf dingbat, did nto get a warning about missing

Maybe you are looking for

  • How to Connect Early 2011 MBP 13" to Apple 20" Cinema Display at 1680x1050?

    My early 2011 MacBookPro will only display 1280x800 on an external Apple 20" Cinema Display. The MBP's specs say that it will support dual displays and video mirroring simultaneously at full native resolution on the built-in display and up to 2560x16

  • Need help with a query

    Hi, I need help with the following query. I want the balance (bal) with the latest exchange rate available. Sample table & data with FX_RATE as select 11 as id_date, 1 as id_curr, 47 as EXCH_rate from dual union select 12, 1, 48 from dual union selec

  • How to open a "printable" version of a pdf file which has embedded a swf file?

    I've got a project that consist of a pdf file that has a swf inside, it's all managed by a .nav file, a navigator. The thing is, since the Flash Player is not a part of the pdf file (I think it was a part before), and it has to be downloaded and inst

  • Batch rename files that have non consecutive numbers?

    I have a folder with about 100 image files that have non consecutive numbers. Is there a way to rename them all to add something after the numbers (and before file type extension) without changing the numbers? Example: If I select 111019.003.dng and

  • Photoshop CS6 (CC) とwacomの使用で残念な不具合多々 macOS 10.8

    業務でポスター原稿等の大型データをレタッチするためにphotoshopとwacom intuosを使用しています. レイヤーをかなり積み重ねるため.時にレイヤー状態で10GBを超えることも多々あるのですが. こういった重たいデータをあつかう際に.問題が起きているのでご報告を. もしかるするとphotoshopではなくwacomドライバに起因するトラブルかもしれませんが. みなさまと情報を共有したいためこちらに書き込ませていただきます. 私の作業環境 macpro2012 2.4Ghz 12コア