Embed fonts late in existing PDF-document

Hello,
I already searched for hours to find a way to embed fonts in existing pdf-documents.
I tryed it in these ways:
     1. Creating a PS-file out of the PDF-file and the creating a PDF-file out of the PS-file --> it doesn't work, because the PS-file can not be created
     2. editing the PDF-file via the adobe sdk wich is installed whith the AdobeAcrobatStandard9 --> I don't find a way to set the fonts to embedded
I now that it is possible to embed the fonts while open the pdf-document manually and edit it with the TouchUp-Tool. But this way we can not handle, because we need to edit thousands of documents. So we need a solution wich works as a CommandLine-Tool or so.
I hope anyone have an idea and can help me
Thanks a lot
Clemens

Acrobat 9 Standard does not have the capability.  It is, however,
available as part of Acrobat 9 Professional.  That solution can also be
used as part of a Batch Process to address your volume needs.
There are no command line options available.
Also, don't forget that Acrobat can NOT be used on a server...

Similar Messages

  • How to embed fonts in an existing pdf document

    PDF Documents I am creating and emailing to my clients are showing up missing bargraps and text. I suspect embedding is not working. Is it possible or even needed to embed fonts in an existing pdf document? Or, is that done during pdf creation? -MikeT

    You'd want embedded fonts with your PDFs so as to assure fidelity of your content.
    If my local machine does not have the font used in the PDF what I view may be / can be something "off" from what you mastered.
    Perhaps squares instead of language characters.
    Distiller job options such as High Quality Print or Press Quality embed fonts (Standard does not).
    For a PDF that does not have embedded fonts a Preflight Fixup can be used to embed fonts (even one for hidden text from Searchable Image or Searchable Image (Exact) OCR output).
    Need Acrobat 9 Pro or Pro Extended.
    The fonts must be on the local machine and "known" to the OS.
    The fonts must have no license restriction(s) that preclude embedding.
    Be well...

  • Embed the specific barcode font directly into the PDF document

    Anybody has any info about it ?
    embed the specific barcode font directly into the PDF document
    Oracle9i Reports Technical FAQ JUL-02 indicated that:
    "Oracle9i Reports also provides the functionality of PDF font embedding to
    allow you to embed the specific barcode font directly into the PDF document so
    the client does not have to have the barcode-font installed in order to view
    the document correctly."

    See to following posting:
    Re: Passing complex XML to session EJB with automatic WSIF mapping
    Regards
    Sripathy

  • Merging existing pdf documents in Windows 8

    I have just purchased a new HP computer c/w Windows 8, 64 bit. Have loaded my Office 2007 suite and love that I can create PDF files. My question is that I don't know how to merge (add pages to existing pdf documents) my pdf files. Can this be done with Windows 8. Also, I have an old disc with Adobe Acrobat 7.0 Professional/Education. Could I load this and use it with Windows 8? I'm looking for a simple way to merge my existing pdf documents, nothing fancy. Thank you!

    Acrobat 7 is long obsolete, and not for Windows 8. The current version is 11 (Acrobat XI). No reduced price upgrade is available, but buying Acrobat XI is what you probably need.

  • How do i add or delete information from an existing pdf document?

    How do I add or delete information from an existing pdf document??

    The free Reader has no editing capabilities.

  • Edit an existing PDF document.  I subscribe, but I continue to get message to subscribe. I am getting nowhere.  Help. Thanks

    Anyone -  I have just subscribed to Acrobat Pro.  When I try to modify an existing PDF document I just get pop-ups to subscribe.  Really frustrating.  Any suggestions.  Is there a help line [telephone]
    with a live person somewhere? Thanks

    I did this to Did you install from  Creative Cloud. I did that and it seemed to work

  • How do i removed highlighted text in an existing pdf document

    I have an existing pdf document and i need to remove the highlighting on the document. I am using acrobat XI pro

    If the PDF is editable and you have Adobe Acrobat Pro then use Optimizer (File>Save As Other...>Optimized PDF...)

  • Embedding fonts in an existing pdf that does not have the fonts embedded

    Hi,
    I have an existing pdf that fails to open on my ereader.
    So I opened in acrobat x pro to see what might be the cause.
    Selecting "file"--> "properties" -->"font" ( fonts used in this document) I can see that this pdf uses multiple windows trueType fonts and that none of them are embedded in the pdf document.
    Now my ereader is linux bases, so I am guessing this might be a problem.
    Being an ereader I didn' give me much to go on.
    So i would like to embed all the fonts listed in this list into the pdf file and save it again with the fonts embedded.
    I went to "file"-->"save as optimized pdf" -->"font"
    But there both lists embedded and unembedded fonts are empty.
    Why is this and how can I embed the fonts shown in the document properties into the pdf?
    They seem standard windows fonts like e.g.  ArialNarrow

    I just looked a bit furder and actually checked wether the fonts existed and found the following:
    I am using windows vista.
    The fonts mentioned in the properties of the pdf actually exist in the windows installed fonts but
    in windows they are no longer TrueType but OpenType.
    So I am guessing this might be the reason they are not in the list of unembedded fonts in the optimizer window.
    Is there an easy way to say to acrobat to replace one font ( not found on this computer) with another font that does exist and also to embed that font in the pdf document?

  • How to position text in an existing PDF document with X,Y coordinates

    There used to be a CFX PDF tag that could do this.  the company (www.easel2.com) does not appear to exist any more.
    This is what i want to do.  I have an existing PDF file that is uploaded by a user.  I want to receive the file, then put a registration number (some text) in the lower left corner of the 2nd page (I don't know the exact x,y coordinate but I can figure that out later).
    Does anyone know how I can do this?

    Unfortunately, I can not create the PDF.  It is uploaded by the user, and I have to open the PDF, insert the text and save it.  BUT, I did find the solution in a slight roundabout way.
    1) Create an image file containing the text I need
    2) Use that image file as a watermark with 10 opacity and use the tag's x,y coordinate setting.
    Below is the code I found to work:
    <!--- Create a blank image that is 500 pixels square. --->
    <cfset myImage=ImageNew("",500,500)>
    <!--- Set the background color for the image to white. --->
    <cfset ImageSetBackgroundColor(myImage,"white")>
    <!---Clear the rectangle specified on myImage and apply the background color. --->
    <cfset ImageClearRect(myImage,0,0,500,500)>
    <!--- Turn on antialiasing. --->
    <cfset ImageSetAntialiasing(myImage)>
    <!--- Draw the text. ---> 
    <cfset attr=StructNew()>
    <cfset attr.size=50>
    <cfset attr.style="bold">
    <cfset attr.font="Verdana">
    <cfset ImageSetDrawingColor(myImage,"blue")>
    <cfset ImageDrawText(myImage,"PROOF",100,250,attr)>
    <!--- Write the text image to a file. --->
    <cfimage action="write" source="#myImage#" destination="text.tiff" overwrite ="yes">
    <!--- Use the text image as a watermark in the PDF document. --->
    <cfpdf action="addwatermark" source="c:/book/1.pdf" image="text.tiff"
        destination="watermarked.pdf" overwrite="yes">

  • Font changes in a pdf document

    A document was created in Word, converted to pdf and e-mailed to be signed and returned.  Upon receipt of the signed document, it was noticed that some of the fonts had changed throughout the document.  How can a font change on a pdf'd document?

    Sounds like the font information was not embedded in the file. A common issue. They will need to embed those fonts and send you a different PDF.

  • Embed Fonts converting xdp to pdf

    Hi,
    I saved some documents as xdp files. I need now to generate pdf files form it using LiveCycle Forms, how can I make LiveCycle Forms to embed the fonts into the generated pdf?
    Thank you

    Hi Neptas,
    It's been a long time since you posted this message but do you still remember how do you embed fonts when using LiveCycle?
    Thanks.

  • Completely Embed Font (not Subset) in PDF several methods not working

    Hi,
    I have an Illustrator CS5 file, on a Windows 7 PC.
    I have used "Save As" direclty from Illustrator, also "Print" with Distiller and finally the Acrobat Pro 9 "Preflight" "Fixups" to Embed Fonts.
    This has included setting subsetting to 0% and in the "Print" dialogue when using the Distiller method, changing the font dropdown to "Complete".
    I do not want to convert my font to outlines, because of the changes this causes. I do not want to subset - but completely embed the fonts.
    This is driving me insane, and I really would appreicate any suggesstions. Please help!

    Thank you for your excellent posts. I am saving your posts for future reference.
    I e-mailed the printer and got this reply:
    "A 100% font embedding is actually not possible in most InDesign versions and in fact Adobe’s product never do it. It is really a bug from Adobe and it doesn’t work! Subsetting is therefore also perfectly fine and doesn’t pose a problem at all for printing."
    I think the instructions from their website are rubbish. They seem to do this to cover their own backs / make statements that aren't true just to keep everything simple, so that truly idotic people can still create PDFs to send to them for printing. Whenever I e-mail them, I get intelligent replies, that usually contradict the rubbish on their website.
    They accept PDF-2008, so their workflow can't be that old, I guess. (I'm a designer, I just know the minimum required about print technicalities!)
    Our previous printer wanted everything in PDF-X1a, and subsetted fonts, and they had no certifications of any kind, yet we always got good results from them.
    onlineprinters.com say this about their certifications: http://www.onlineprinters.com/Certified-quality.htm?websale7=diedruckerei;02-aa&tpl=02-aa/ $ws-cms/uu_certicied_quality.html&type=zertifizierte_qualitaet_hnavi_b
    and they say they have the latest gear from Heidelberg and KBA:
    http://www.onlineprinters.com/uu_offset_printing.htm?websale7=diedruckerei;02-aa&tpl=02-aa /$ws-cms/uu_offset_printing.html
    and have 40,000m2 of production space. I think they know what they're doing, but whoever writes the website should be fired!

  • Editing existing PDF documents

    I often receive PDF forms that require information to be added and then returned to the sender. How can you open a PDF file in Acrobat such that you can type in the necessary information and then resave it as a PDF file? Note that I have no design input or control for the original PDF documents.

    You can add text form fields (under TOOLS in AA8), select the text touchup tool and hold the ctrl key as you place the cursor, edit existing text with this tool (not easy -- often seems to mess up), or use the Typewriter tool. Basically, editing a PDF is not recommended except for minor changes.
    You could also use the commenting tools.

  • Embed Fonts savinf a form (pdf)

    Hi,
    Can someone tell me what is the difference from saving a form with or withour embed forms selected?
    Without embed fonts selected, the form get smaller, what it is better, but what is the disadvantage?
    Thank you

    Hi Chris,
    I know this is a dead discussion but I am having many problems with embedding. Basically (1), after saving as Dynamic PDF with fonts embedded and with permanently replace all fonts I still get weird replacements when the file is opened in Reader. Then (2), when I tried to replace all the substitutions with Arial and Times and NOT embed the PDF still shows some embedded fonts (Myriad, Franklin) when opened in Reader in doc properties. This seems Very buggy?! Is there any known issue and/or workaround. Thanks!
    -Nissan

  • Is it possible to just black out parts of an existing PDF document?

    I have a PDF document that I downloaded, can I black out a section using Adobe service?

    [discussion moved to Creating, Editing & Exporting PDFs forum]

Maybe you are looking for

  • Background color missing in cover photo

    I created a three-layer cover for a book. The lowest layer was the cover color and the next layer up was a photograph and text. The photograph had been converted into a shape in Photoshop by outlining it with the lasso tool and then creating a new la

  • I accendetly drop my ipod in the bathwater how do I fiix it

    I accedently dropped my ipod in the bathwater how do I fix it?

  • Error 8003

    why am i getting error 8003 while downloading purchased music from itunes?

  • What's this, when mouse move on a href ?

    When the mouse move on a href, a samll icon will apear, and if mouse hove on the icon, the href details will be showed. like: https://www.sample.com/.... #Base64

  • AIX 5.2 resources adaptor

    How to create AIX 5.2 resource adapter. client are using some command to create and update user on the AIX Unix server. this need to automated threw sun idm . Do I need to write the resource action script after the AIX resource adaptor configuration