Embedding fonts in exported PDF using CR 8.5

Post Author: MikeScott
CA Forum: Exporting
Hi,
     Does cr8.5 have facility to embed fonts in exported PDF documents?
I have got font embedding working on one PC but can't get it to work on other client PCs. On the PC where embedding works I have the following dlls:
crxf_pdf.dll v9.1.1.534
craxdrt v8.5.0.217
Any advice appreciated.
Mike

LittleNFiesty wrote:
I have my answer.
What is it?
Ken

Similar Messages

  • Embedding Fonts into a PDF file - Best Solution/s

    Good day
    What is the best solution or solutions to Embedding Fonts into a PDF file?
    Kind Regards

    Amplifing on what Test Screen Name posted.
    --| Use a Distiller Job Option that embeds fonts.
    --| Use Acrobat Pro's (starting with 9.x) Preflight that embeds fonts (if they are present and installed on the local machine).
    --| Untick "Rely on system fonts only; do not use document fonts" in the Adobe PDF Document Properties dialog.
    Be well...

  • Rename embedded fonts in a .pdf file

    Is it is possible to rename the embedded fonts of a .pdf file?

    You can safely removed the system times and helvetica.
    http://www.jklstudios.com/misc/osxfonts.html
    If you use iCal, Mail and a few other Apple programs that use badges on the dock icon you will get a substitute font on the icon, but having another helvetica will fix that. You need 1 Helvetica of any type or Photoshop will not launch.
    The only fonts you NEED in OS X are Lucida Grand (used in menus), Last Resort, and Keyboard. The rest can be deleted. Apple says you have to keep Kana, but if you aren't working in any Asian languages you can remove it without system instability. To be safe and follow Apple's guidelines you can keep it.
    http://support.apple.com/kb/ht1642

  • Font issues exporting PDF in Keynote 6.5

    Is anyone else experience font issues exporting PDF's in Keynote 6.5?
    My entire team has been having issues specifically exporting the font Merriweather. It's been fine in the presentation itself, but in the PDF - it's spaced out aggressively and the font weight/type/size is always wrong.
    It's been a real hassle, as our brand body copy font is Merriweather and we've never had a problem with it.

    The conversion issue seems to be tied to OTF fonts. Converting Merriweather to TTF, deleting OTF versions from Font Book, and/or System Font Folder worked for us. Clearing font cache and restarting can further flush out any legacy conflicts.

  • Trouble with Preview not using embedded fonts in a PDF

    I have a client I'm working with that is generating PDF reports for various organizations in various languages. They are using an Arial Unicode font but are using different encoding for some of the more unique languages. To ensure the report will be viewable regardless of installed fonts, they are embedding the font.
    Most of the languages are showing up fine in preview, but three languages are giving me trouble. Specifically Greek, Russian and Thai which are using encoding EL8MSWIN1253, CP1251, and TH8TISASCII.
    Basically the question is whether there is some toggle that will tell Preview to use the embedded font? Or something we can put into the PDF (the pdf is created using FPDF) that will allow a user to know which font/encoding they'll need to install in order to properly view the document? (I'm actually trying to figure that out myself...which font I need to install to get preview to view the document properly).
    Thanks in advance for any help.

    Actually, I got that example to work... here are the changes
    I made...
    <mx:htmlText>
    <![CDATA[You can vary the <font size='20'>font
    size</font>,<br><font
    color="#0000FF">color</font>,<br><font
    face="Courier New">face</font>, or<br><font
    size="18"color="#FF00FF"face="Times New Roman">any combination
    of the three.</font>]]>
    </mx:htmlText>
    As I said above, I have found errors in the code of the help
    docs... this is yet another one of them. Usually its spaces in the
    wrong place, or no space at all, or missing ) or ], or a case
    sensitivity issue.
    If you got your custom font to display, that should work...
    but then again.. what should work, doesn't always.

  • Remove an embeded font from a PDF

    Hi Guys
    I have a bunch of PDF's where I need to remove a sertant font due to Copyright reason.
    When I use the PDF optimizer and unembed the font, it replaces the font with another all over the PDF, but when I open the optimized PDF and check the properties, it still says that the font is
    embeded.
    How can I completly remove the embeded font? and is there a way, where I can choose the substitude font?
    Another solution would offcourse be, to transform all the text to pictures, but the quality is simply to bad to use.
    I am using Adobe Pro IX for Windows 8.1 (64 bit)

    Why do you think it's still embedded?
    It will appear on the File Properties > Fonts list because it's defined as the typeface to use in preference when rending the file, but unless the entry says it's embedded, it's only a reference to the name.

  • Unable to load embedded fonts in Textlayout Framework using SWFContext.

    Hi,
        We are having issues with embedding/renderring fonts in swf.
        Here is the code of the slide1.swf compiled by mxmlc.exe [Adobe Flex Compiler (mxmlc) Version 4.1.0 build 16076] with compiler parameters --  "-static-link-runtime-shared-libraries".
    and checked with  Flash player version 10.1 and 10.2 and 10.3.
        package
            import flash.display.Sprite;
            import flashx.textLayout.compose.ISWFContext;
            public class Slide1 extends Sprite implements ISWFContext
                [Embed(source="C:/WINDOWS/FONTS/CALIBRI.TTF", fontName="Calibri", embedAsCFF = "true", unicodeRange="U+0041,U+0072,U+0069,U+0061,U+006C,U+0020,U+004E,U+006F,U+006D", mimeType="application/x-font")]
                public static const calibri:Class;
                [Embed("slide1/sldBg1.png", mimeType="image/png")]
                public static const bg:Class;
                [Embed("slide1/slide1.xml", mimeType="application/octet-stream")]
                public static const slide:Class;
                public function callInContext(fn:Function, thisArg:Object, argsArray:Array, returns:Boolean=true):*
                    if (returns)
                    return fn.apply(thisArg, argsArray);
                    fn.apply(thisArg, argsArray);
        Using Flex 4.1 SDK:--
            When I load the slide1.swf in ActionScript Project it shows the embedded text.
            But, when I load the slide1.swf in  MX+Spark Flex Project, it gives an error :
            Warning: An ActionScript 1.0/2.0 SWF file has loaded an ActionScript 3.0 SWF; code in the ActionScript 3.0 SWF will not run.
           Error TypeError: Error #1034: Type Coercion failed: cannot convert Slide1@f56fce9 to mx.core.IFlexModuleFactory. !
            Below red colored text is the code where the exception occurs.
            var fontClass:Class = ApplicationDomain.currentDomain.getDefinition("slide1") as Class;
          textFlow.flowComposer.swfContext = new fontClass();
            textFlow.flowComposer.addController(new ContainerController(textContainer, containerWidth, containerHeight));   
            textFlow.flowComposer.updateAllControllers();           
            And, when I load the slide1.swf in Only MX Flex Poject, it shows the embedded Font.
        Using Flex 4.5 SDK:--
            With MX+ Spark and MX only Flex Project we get following errors
            VerifyError: Error #1053: Illegal override of createGeometry in flashx.textLayout.elements.FlowGroupElement.
            VerifyError: Error #1053: Illegal override of canReleaseContentElement in flashx.textLayout.elements.SubParagraphGroupElement.
            VerifyError: Error #1103: Class flashx.textLayout.elements::LinkElement cannot extend final base class.
            VerifyError: Error #1053: Illegal override of display in flashx.textLayout.elements.ContainerFormattedElement.
            VerifyError: Error #1053: Illegal override of canReleaseContentElement in flashx.textLayout.elements.FlowLeafElement.
            VerifyError: Error #1053: Illegal override of addParaTerminator in flashx.textLayout.elements.SpanElement.
            VerifyError: Error #1053: Illegal override of canReleaseContentElement in flashx.textLayout.elements.InlineGraphicElement.
            VerifyError: Error #1053: Illegal override of minPercentValue in flashx.textLayout.property.NumberOrPercentProperty.
            VerifyError: Error #1053: Illegal override of hash in flashx.textLayout.property.EnumStringProperty.
            VerifyError: Error #1053: Illegal override of hash in flashx.textLayout.property.BooleanProperty.
            VerifyError: Error #1053: Illegal override of minValue in flashx.textLayout.property.NumberProperty.
            VerifyError: Error #1014: Class flashx.textLayout.property::NumberProperty could not be found.
            VerifyError: Error #1053: Illegal override of minValue in flashx.textLayout.property.IntProperty.
            VerifyError: Error #1014: Class flashx.textLayout.property::IntProperty could not be found.
            VerifyError: Error #1053: Illegal override of hash in flashx.textLayout.property.UintProperty.
            VerifyError: Error #1014: Class flashx.textLayout.property::UintProperty could not be found.
            VerifyError: Error #1053: Illegal override of hash in flashx.textLayout.property.StringProperty.
            VerifyError: Error #1014: Class flashx.textLayout.property::NumberOrPercentProperty could not be found.
            VerifyError: Error #1053: Illegal override of hash in flashx.textLayout.property.ArrayProperty.
            VerifyError: Error #1103: Class flashx.textLayout.elements::TCYElement cannot extend final base class.
            VerifyError: Error #1053: Illegal override of createTextLine in flashx.textLayout.compose.ComposeState.

    Hi Jin-Huang
              But when I use Simple ASProject with SDK 4.1 then it works fine but when I create Flex project then it give error
    with SWFContext.
    I think it's a issue of swfcontext or AS comunication with Spark components.
    Please let me know if any solution.
    Thanks

  • Embedding fonts in existing PDF

    Is there a way to embed the fonts in a PDF? We often receive PDFs from outside sources that we don't have access to the native file. If the font is not on my system, I occasionally replace with a similar font, but it isn't always feasible. Any help would be appreciated.

    >Is there a way to embed the fonts in a PDF?
    Yes, and this is normal and recommended. You mean, though, I think,
    embedding late in the day. The PDF Optimizer can do that.
    > If the font is not on my system, I occasionally replace with a similar font, but it isn't always feasible.
    The font would need to be on your system to be embedded, though.
    Aandi Inston

  • How to export pdf using jsp

    hai friends
    i know to export excel using jsp
    but tried the same process to pdf, it s not work..
    please give some solution......
    thanks
    rex

    It's working absolutely fine for me. I suspect the problem is one of these two:
    1. You're giving the incorrect path of the file. Check the size of the downloaded file, it's probably 0 bytes.
    2. Check the file that has been created on the server first; is that fine? That could also be the origin of the problem.
    This is th code I've used. I copied an existing PDF to my webapps root folder ( $CATALINA_HOME/webapps/myApp/test.pdf ) and hardcoded the values of filename to check it and it works for me.
    BufferedOutputStream out = new BufferedOutputStream( resp.getOutputStream());
    try
        filename = "test.pdf";
        resp.setContentType("application/pdf");//vnd.ms-excel" );
       resp.setHeader("Content-disposition","attachment; filename=\"" + filename + "\"" );
        BufferedInputStream bufferedInputStream = new BufferedInputStream(new FileInputStream(getServletContext().getRealPath("/") + filename));
        int i;
        while ((i=bufferedInputStream.read()) != -1)
         out.write(i);
        bufferedInputStream.close();
      out.flush();
       out.close();
    catch ( Exception e )
         System.out.println(e);
    }

  • Indesign export pdf used preset include comment

    Is there a way including the summary of the used preset as comment within the exported pdf? Within Acrobat Distiller you have an option called "save adobe pdf settings inside pdf file", is there also such an option available in Indesign?
    As a receiver of pdf files, then you have the possibility detecting which preset is used.
    Regards,

    There is no such option.
    Instead, you should use Acrobat Pro's Preflight tools to check for issues like image resolution or colors spaces which are important to your workflow.

  • Embedding Fonts Into A PDF

    Hi There,
    I'm having trouble sending my files to the printers, my fonts is jumping...
    How do i make sure that my fonts are embedded into my PDF file,
    I'm using indesign cs5.5 Please can someone help me, I have distiller as well.
    Thank You
    Kind Regards

    Can you check one of your problematic PDFs with Acrobat? Go to the Document Properties dialog and check the "Fonts" tab. That way you can verify if your fonts are embedded.
    It's really straightforward: where Acrobat does *not* tell you a font is "(Embedded)" or "(Embedded subset)", that font is missing.
    If you find you are creating files without embedding all fonts, you need to review your workflow. As I said above, you might have switched off InDesign's warnings for this.
    Bear in mind it's also possible your PDFs are fine and it's your printer that needs to update.

  • Starnge Fonts displaying in PDF using 10.1.3

    While using reader version 10.1.3 on OS Windows 7 the PDF reader is displaying strange characters.
    Copying an Pasting the strange font into google produces legible font.
    Fonts used in this document are as follows:
    Arial
    Arial Bold
    Helvetica
    Printing as Image does not correct this issue. And it will occurr intermittently with the issue clearing up only for a couple of documents.
    Please let me know if you need any more information. I appreciate your insights.

    Chris,
    Thanks for the response. Here are my answers to your questions:
    By JSF screens, I assume you mean pages?Sorry, I meant JSF web pages.
    Quick question. Are you noticing this just for JSF or with JSP in general?We're only doing JSF development with JDev 10.1.3, so I don't know about the JSP pages.
    Do you have an average size of your JSF pages? Are they very large? (hundreds of lines?)No the JSF pages are very small. Once project a developer is working on has 3 pages. The page lines for the three pages are 313 lines, 70 lines, and 85 lines.
    Are you using ADF Faces or just the base, RI component libraries (JSF Core,HTML)?We are using ADF Faces.
    Have you tried just opening them in the code editor? You can switch to the code editor and from then JDeveloper will remember to open the file in the code editor.We're doing most of the development in the code editor. We don't use the gui layout much. After we drag/drop controls in the structure window we may look at the screen to see what it looks like.
    Another thing you can do is turn off the tag execution which renders JSF UI Components in the visual designer.We'll try this and report back.
    Thanks

  • How to request - Updating an embedded image in a PDF using Actions but not all actions are recorded

    i am trying to create an Action in CS3 but some of my actions are not been recorded.
    What i want to do is run the Batch option on a folder with a 1,000 PDFs in it. The PDFs
    (which were created in Illustrator CS3) consist of a single page with a single embedded
    image at the foot of the page. I am trying to update that embedded image.
    The Actions i am trying to record are...
    1) Select the single image in the Links palette.
    2) Choose the "Relink.." option in the drop down menu of the Links palette.
    3) Navigate to the new image and select "Place".
    4) Save and close document.
    But the first two actions are not been recorded.
    How do i get around this problem ?
    Note: From trying this manually the new image seems to take on the horizontal and
    vertical scaling of the previous image which is what i want. But if i am going to have to
    do a script then that is a factor that may have to be incorporated into the script.
    Any help appreciated.

    Give this a trial… It does a save as which is much safer than overwriting… At least you still have your originals should I get something wrong…? I did test but only with 3 files…
    #target illustrator
    function replaceImage() {
              var i, doc, fileList, inFolder, outFolder, opts, pic, rep, rip, saveFile, uIL;
              inFolder = Folder.selectDialog( 'Please choose your Folder of AI PDFs…' );
              outFolder = Folder.selectDialog( 'Please choose a Folder to save AI PDFs in…' );
              pic = File.openDialog( 'Please choose your replacement Image…' );
              if ( inFolder != null && outFolder  != null && pic != null ) {
                        fileList = inFolder.getFiles( /\.pdf$/i );
                        if ( fileList.length > 0 ) {
                                  uIL = app.userInteractionLevel;
                                  app.userInteractionLevel = UserInteractionLevel.DONTDISPLAYALERTS;
                                  for ( i = 0; i < fileList.length; i++ ) {
                                            doc = app.open( fileList[i] );
                                            rip = doc.rasterItems[0].position;
                                            rep = doc.placedItems.add();
                                            rep.file = pic;
                                            rep.move( doc.rasterItems[0], ElementPlacement.PLACEBEFORE )
                                            rep.position = rip;
                                            rep.resize( 31.414, 31.414, true, true, true, true, 100, Transformation.TOPLEFT );
                                            doc.rasterItems[0].remove();
                                            rep.embed();
                                            opts = new PDFSaveOptions();
                                            opts.pDFPreset = '[Illustrator Default]';
                                            saveFile = File( outFolder + '/' + doc.name );
                                            doc.saveAs( saveFile, opts );
                                            doc.close( SaveOptions.DONOTSAVECHANGES );
                                  app.userInteractionLevel = uIL;
                        } else {
                                  alert( 'This Folder contained NO Illustrator PDF files?' );
    replaceImage();

  • Is ID exported PDF considered non-editable? (In the case of view&print embedding permission fonts)

    Hiya!
    I am a graphic designer and I use InDesign 5.5.
    I have a question about font embedding when using the InDesign's export as a PDF in "print" format feature.
    Many fonts allow embedding into digital documents only for the purpose of viewing and printing.
    In addition to this the font EULA's mention that the embedded font may not be used to edit the document.
    Is it possible to create a non-editable PDF with embedded fonts?
    Is choosing PDF export option "print" the key here, or embedding the fonts as a subset?
    Isn't it still possible to edit PDF in Acrobat with touch up text tool? Or use some third party editing program?
    OR Is a PDF file - with fonts embedded as a subset -  non-editable as such, or at least considered to be non-editable enough?
    Or is it just that the file doesn't really have to be non-editable, but it must not be edited...
    How do I ensure that? Do I even need to ensure that?
    Whole thing seems so controversial.
    Hope someone can shed some light into this!!!
    -Ahlax-

    Ahlax,
    There are several separate concepts here.
    First, PDF is really a final form file format. It wasn't designed as an editable format for layout such as InDesign's .indd format ane Word's .doc and .docx formats. Although PDF files may be tagged with contextual metadata, typical content of PDF files contains no context in terms of words, sentences, paragraphs, columns, etc. It is simply graphical objects including text fragments, vector artwork, and raster images at a particular place on a page with specified graphical attributes (color, transparency, etc.). As such producing a full PDF file editor first requires definition of what it actually means to edit such a file given the characteristics of PDF files.
    That having been said, Acrobat and various third party plugins to Acrobat as well as third party applications provide some degree of editability for PDF files, recognizing that such edits are definitely not at the abstractual level that you get with InDesign. You can “touch-up” text, but doing a re-layout is effectively impossible. In most cases, it is better (in terms of time, effort, and resultant quality) to go back to the source document, make the changes there, and then regenerate the PDF.
    Fonts are a totally separate issue. Adobe products will not embed any font into a PDF file unless the font allows for at least preview and print embedding. For PDF forms, Acrobat requires a font to allow editability embedding. However for text touch-up and other edits, Acrobat never uses the embedded font. Such edits are only allowed if the user has the same font actually installed on their system.
    In terms of forcing a PDF file to be totally non-editable, that is done by applying security to the file when you export the PDF file from InDesign (the Security tab) or in Acrobat Pro after PDF creation (go to the Security tab under Document Properties (Ctrl-D) to set such security).
              - Dov

  • Fully embedding fonts in PDF

    Hi,
    I had a piece of information but I can't seem to find it anymore so I have to ask ...
    This is about understanding limitations of fully embedding fonts in a PDF (from Indesign Server). Actually it's about one limitation in particular. I know fonts with licensing issues or fonts that are marked "embedded not allowed" will not be embedded. Also, there is a threshold that I need to set.
    So, I recall reading somewhere that Indesign will not fully embed "standard" fonts. Is that correct and what is this standard fonts category?
    Oh, reading through some posts, I noticed lots of people and experts ask why does one need fully embedded fonts. That's a good question and I don't know the root reason but in my case it seems that some regulatory agencies (in the life sciences/pharma domain) require PDFs with fully embedded fonts.
    Many thanks
    Cristian

    On behalf of Adobe:
    (1)     For both InDesign “PDF export” (including InDesign Server) and Illustrator “save as PDF” functions, most but not all of the .joboptions file font embedding options are totally and utterly ignored. The options that are ignored are the Embed all fonts, Embed OpenType fonts, Always embed, and Never embed. Those options are observed by Distiller and the PDFMaker components of Acrobat.
    (2)     These applications will attempt to embed all fonts referenced by the document, regardless of the settings of the .joboptions file. The only reason why a font would not be embedded in a PDF file would be if (a) the font was unavailable (i.e., not installed on the system) or (b) the font's embedding permissions do not permit embedding for at least preview and print privileges. Thus, if you use the so-called Standard .joboptions (strongly not recommended for any graphic arts purposes), even the base 14 fonts (four faces each of Helvetica, Times, and Courier along with Symbol and ITC Zapf Dingbats will be embedded if your document references them.
    (3)     The subset threshold value of 0 (zero) may effectively cause all the glyphs of a font to be embedded in some, but not all cases. This will work for many if not most Type 1 fonts and some smaller TrueType and OpenType CFF fonts. Note that embedding all glyphs in a font is not the same as embedding a full font. For OpenType and TrueType fonts, InDesign and Illustrator never embed all the tables of the font. Such unembedded tables include those used for pair kerning, advanced OpenType features (such as ligatures, alternate representations, contextual alternates, small caps, old style figures, etc.), and extended metrics.
    (4)     There are plenty of bubbameissas out there with regards to the benefits or liabilities of either fully embedding or subset embedding fonts. What is true is that: (a) Acrobat never uses the embedded font for text editing - you must have the font installed on the system in order to do such edits. (b) Subset embedding or not is totally irrelevant to what a RIP does when rendering text, either for PostScript or direct PDF RIPs. Neither subset or full embedding is any more reliable than the other and the specifications of PostScript and PDF do not permit the RIP to replace the embedded font with a font with a similar name - urban legend notwithstanding!!!! (c) Third party plug-ins to Acrobat or applications that claim to allow you to edit PDF files with embedded fonts may be illegally letting you do so if the embedding permissions do not permit embedding for editable embedding or installable embedding - most fonts do not provide such embedding permissions and since the fonts are missing metric information, such editing may be somewhat lacking in quality or features.
    (5)     In fact some very non-tech-savvy organizations have posted requirements for full embedding of fonts in submitted PDF files (I have personally seen one such requirement by some international bureaucracy). They can post such bone-headed requirements based on limited understanding of PDF and PDF workflows, but that doesn't mean that anybody actually provides such PDF files. If in fact you run into such requirements, I would appreciate it if references to same can be forwarded to my attention by private message on these forums.
              - Dov

Maybe you are looking for

  • Background processing Function modules

    Hi guys, Can any one give me the list of function modules for background processing. I found only one RS_EUIN_BACKGROUND_PROCESS. Regards, Raghu.

  • Error running the Journal Report

    Hi, We are getting the below errow whenever we try to run a Journal report in any other format that teh HFM_Format. Any clues why thsi coudl eb happening? Access is denied. Show Details: Error Reference Number: {CA2E2A91-02B6-4C2C-B20C-77A3E54F3F50};

  • Hyperion Microsoft Visual C++ Runtime Library - Runtime Error

    Hi, I've started to get the message 'Hyperion Microsoft Visual C++ Runtime Library - Runtime Error' when trying to run a Query. I'm not sure what caused this to start happening. Has anyone come across this issue and if so, how did you fix it? Thanks!

  • Organizing package building wiki entries

    Right now we have three separate wiki entries that describe the package building in Arch: http://wiki.archlinux.org/index.php/Arc - _Standards http://wiki.archlinux.org/index.php/The - guidelines http://wiki.archlinux.org/index.php/ABS - _Explained I

  • Can we make single application and it should be work in all Platforms(Windows Phone 8,IOS,Android)?

    Dear Sir/Mam, I want write a program for Windows Phone ,IOS, Android using with C#.net ,i mean single application and it's work in multi platforms.  For this task which languages are needed  to make a project. Please give me some basic guidelines. Th