Is it possible to replace fonts used in a PDF?

Hi. I have a PDF that was created by a third party. I contains a couple of fonts that are not available on my system, and for some reason they won't swap for other fonts. When I open the PDF I get the message "Cannot find or create the font 'WP-MultinationalBCourier'. Some characters may not display or print correctly."
Although the PDF looks OK to me, it won't print on the printer down in the print shop. (That printer is very fussy and will not print PDFs unless the font situation is perfect.)
I can't even tell where this font is used. It's over 500 pages, so I can't check every paragraph. I do not have access to the source files, and going back to the third-party (who created the PDF) is not really an option.
My question: Is there a way that I can force Acrobat to swap out the 'WP-MultinationalBCourier' font and replace it with some regular font? As in, on a permanent basis, so the print shop printer won't ever know that odd font was used?
Thanks
e
d

Hi Ed
I used to spend hours working out the same problems. There's good news and bad news. First though -- what version AA are you using.
Bad news is, unless you can get hold of the exact fonts used to create the pdf -- and then put them on your system -- there will not be much you can do, unless AA has vastly changed their procedures.
Even if you get the exact font and add it to your system, I am still not sure AA will "see" it, depending upon if the font was originally embedded into the pdf or not, when it was made. Logically, it would appear that if not embedded the program would recognize it on the system. But, unfortunately, this has not always worked for me and I do not know why myself.
Unless your required font is something like Hebrew or Chinese, the program will automatically replace your courier to the next likely (internally programmed) selection, so you will not notice any problems. (my experiences & problems were always with foreign languages)
You can replace a font or make a correction by blocking the sentence or word, then using your right-click context menu, then selecting Font, and making the replacement.
Perhaps the best way would be so save the file as another .doc file and start all over again, but with the font your printer will accept?
Is that an option?
let me know.
BarryG

Similar Messages

  • Programmatically list the fonts used in a PDF

    Hello.
    I want to make a list of all the fonts used in a PDF. After reading (again) the ISO-32000 standard, I tend to think that the only way is to cycle through the pages and list the fonts used in each one.
    Is there any other (and faster) way to do this?

    Nope - that's the only way.
    And don't forget, that you can NOT just look at the Page's Resource dict.  You need to do a full recursive walk down the content stream finding all graphic objects that themselves have resources.  Oh, and don't forget Annotations!

  • List of Fonts used in PDF through Javascript

    Hi all,
    I need to get the list of fonts used in the PDF and have to change the particular font text to some color across the document using Javascript. As i searched, i didn't get any clue. Using Acrobat Professional 7.0.
    Is there any idea plz. share it.
    Thanks,
    vaasu

    You can use a plug-in.
    PDFlib FontReporter is a free plug-in that creates a report of fonts used in a PDF.

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

  • How to find the font and replace another font using javascript in illustrator?

    Dear All,
    how to find the font and replace another font using javascript [batch process] in illustrator?
    i have 700 image file, it very deficult replace one by one.
    regards,
    .Suresh.S

    Ask the creator of the file for a unprotected version.

  • Replace fonts in InDesign CS6, js

    Hi,
    is it possible to replace document fonts on document level instead of going through every text object in the document? Let's say Times with Times New Roman.
    Thank you.

    Hi,
    I also use this script but with additional information.
    var mydoc = app.activeDocument;
    app.findTextPreferences = NothingEnum.nothing;
    app.changeTextPreferences = NothingEnum.nothing;
    // find here
    app.findTextPreferences.appliedFont = "Arial";
    app.findTextPreferences.fontStyle = "Regular"   // this is additional
    // change here
    app.changeTextPreferences.appliedFont  = "Frutiger";
    app.changeTextPreferences.fontStyle  = "45 Light";
    mydoc.changeText();
    Virender
    PS: I could able to write this script with help of:
    Jump_over (Jarek)
    Laubender (Uwe)
    Yogesh (my colleague)

  • Is it possible to install fonts to an iPad?

    Is it possible to install fonts to an iPad?

    I strongly recommend dropping that idea.
    No, I don't believe any such method exists.
    Further, Apple stores that computer identification of model and version away, and uses it when verifying what type of computer you're using.
    Bottom line - upgrading to get Macericks is not possible.
    Instead, sell or give away your machine and replace it with a newer one.

  • Replace Font in Site Globally

    Hi. Is there an easy way to replace/substitute a font used on a site with a different one, without having to manually select every text frame and change it there?
    One reason for this - we have a site that uses Hoefler Text Regular for a lot of it (may have even been a template). We have our own version of Hoefler that calls it's regular weight 'Roman' instead of 'Regular' so iWeb doesn't see it. We would like to globally change all instances to 'Hoefler Text Roman'. (we have our reasons for not using the default .dfont version).
    Or someone may just want to change to a web-safe font.
    THANKS

    Aries,
    Thanks for pushing me back to Peschka's blog post on IMigrateUserCallback / MigrateUsers. I had seen it before but not taken the time to fully understand everything. I stick to PowerShell whenever possible and avoid full on Visual Studio solutions, but in
    this case it was a pretty straightforward adaptation. Here's the modified case for my logic, which is working in my test environment.
    case SPWebApplication.AuthenticationMethod.Claims:
    //this includes both Windows claims and SAML claims
    Debug.WriteLine(oldUser);
    //get the claim provider manager
    SPClaimProviderManager cpm = SPClaimProviderManager.Local;
    //create a claim from oldUser to look at it properly
    SPClaim theClaim = cpm.ConvertIdentifierToClaim(oldUser, SPIdentifierTypes.EncodedClaim);
    if (theClaim.OriginalIssuer == "TrustedProvider:adfs" && theClaim.ClaimType == "http://schemas.microsoft.com/ws/2008/06/identity/claims/role")
    //this is a role claim from ADFS
    if (theClaim.Value.Contains("\\"))
    //already has a domain qualifier
    else
    SPClaim migratedClaim = new SPClaim(theClaim.ClaimType, "domain.tld\\" + theClaim.Value, theClaim.ValueType, theClaim.OriginalIssuer);
    value = migratedClaim.ToEncodedString();
    break;
    So credit to Steve Peschka for writing
    http://blogs.technet.com/b/speschka/archive/2011/01/27/migrating-user-accounts-from-windows-claims-to-saml-claims.aspx, and credit to Aries for redirecting me there.
    Cheers.

  • How can I change the fonts used in Yosemite

    It would appear that Apple have gone out of their way to make OS X as difficult to use as possible with the change of fonts colours. To make matters worse it would appear we all have to adhere to the Apple accessibility rules if we want to change anything ! Guys, the world is more complex.
    I don't have any visual impairment as such other than I'm in my 50's so i'm in that vari-focal time of life, which is normal. That means a bit more definition on the font helps - so I'd like to change the font & maybe the font size across the entire system. I can do that in M$ Windows !
    I'd like to change the colours of the fonts used in some applications e.g.. Mail where for some completely mad reason Apple are using a grey font, on a grey background, a mustard font on a white background. MAD. What idiot comes up with this stuff & who signs it off ??????? Once again all this is easy to change on every other OS I've worked with (Solaris, Linux, Windows).
    Now you might think that I'm Apple bashing, I guess I am in a way but I've been an Apple user for more than 15 years, I have iMac, Macbook, Macbook Pro, Macbook Air, 3 iPads, iPhone. I like the products but things are not as configurable as they should be. Just allowing people to click a couple of radio buttons to switch to different modes on the display DOESN'T cut it.

    Too old to care now.

  • Is it possible to skip the use of a router to get wireless from imac to macbook? (both osx10.5.8)

    Current setup is my imac (osk 10.5.8) is plugged into my dlink router. Wife gets her connection for her macbook (aslo osx 10.5.8) wirelessly from the router.
    Is it possible to skip the use of a router? That is, plug the ISP's inbound cable to my mac and somehow my wife's macbook be able to wireless connect to my iMac?
    Just looking to get around the router that is a possible cause for slowness.

    Some sort of router is needed for both of you to share the cable service. Is the router yours or part of the cable modem provided by the cable company? If the latter ask the cable company to service the device to be sure everything is working properly. If you have a separate modem and the router is yours, then replace it.
    Why do you believe your wireless is slow?
    I would also consider upgrading your computers' OS X.
    Upgrading to Snow Leopard
    You can purchase Snow Leopard through the Apple Store: Mac OS X 10.6 Snow Leopard - Apple Store (U.S.). The price is $19.99 plus tax. You will be sent physical media by mail after placing your order.
    After you install Snow Leopard you will have to download and install the Mac OS X 10.6.8 Update Combo v1.1 to update Snow Leopard to 10.6.8 and give you access to the App Store. Access to the App Store enables you to download Mountain Lion if your computer meets the requirements.
         Snow Leopard General Requirements
           1. Mac computer with an Intel processor
           2. 1GB of memory
           3. 5GB of available disk space
           4. DVD drive for installation
           5. Some features require a compatible Internet service provider;
               fees may apply.
           6. Some features require Apple’s MobileMe service; fees and
               terms apply.

  • Is there a way to locate file path of a font used in text layer?

    I delivered a file to a client and there is a missing text layer dependency.
    I thought I delivered the correct font for the text layer but there is an issue somewhere...perhaps multiple versions of the font on my system..or slight
    difference in the font name. The project loads without the error on my system.
    Is there a method within After Effects to obtain a file path for the font I am using? ..or at least a way to get more detailed information
    about the font itself?...I mean beyond what is available in the font selection window.
    I need to locate the exact font in the exact folder After Effects is pulling it from.

    even better..I did a search within Fontbook for comparable file name..as I don't add and remove fonts constantly
    and discovered the font and also discovered why there was confusion in AEFX..the font had been generated in
    Fontographer and it's file name did not match error prompt or collected file report
    that was better than suffering through the 100's of possible results I was getting in Finder.  And Fontbook also provided the path to the exact font used...
    ..feeling a bit silly...but I think this will work.

  • Fonts used in some text layers not available...

    I've been gettting the following message lately when opening Photoshop files at work: "Fonts used in some text layers are not available for activation. You will need to replace these fonts before the layers can be used for vector based output".
    But when I check my text layers, there are no indications that any fonts are missing. I double click on every text layer to see what font is being used and double check Suitcase Fusion to make sure it is activated.
    I'm using OSX Maverick 10.9.2. I'm using Suitcase Fusion 5 version 16.2.0. And I'm using Photoshop CC 14.2.1. It's more of an annoyance than anything, but would like to know why it keeps telling me fonts are not available when they are currently activated in Suitcase. Not sure if it's an Adobe issue or a Suitcase Fusion issue.
    Anyone have any ideas on this?
    Thanks!
    Steve

    DrStrik9, I opened up the file, clicked on each text layer and selected all to make sure there wasn't any character using a different font. There wasn't. I clicked on the font being used, tried changing it to a different font, then back to the font that was being used. I saved and closed the file, then reopened it, and that seemed to cure it for that file. Not an efficient way to go about it though.
    I then tried another file that was giving me the same error, clicked on each text layer, changed the font to a different one, then back to what was being used, saved, closed and reopened it, and still got the same message. So it didn't work for that one. I then tried changing the font to a system font, Times Bold true type, saved, closed, reopened, and got the message again. So not sure what is going on. The fonts used in the first file were DIN and DINEngschrift postscript font, which were loaded and active in Font Fusion.
    The 2nd file I tried was using Gotham Bold postscript font, which also was active in Font Fusion. I've run Font Doctor on the fonts and found no issues.
    Even though I'm getting the error message when I'm opening these files, none of the text layers have that Exclamation point indicating there is an issue with the layer, so it would seem the text layers are fine. Just really annoying to get that error every time I open the file.
    Another thing I tried is I created a new Photoshop file and just made some text layers using Gotham Bold. Saved, closed and reopened the file and did not get the message. So, I don't know why I would get it with one file and not another. Very confusing/frustrating. Any other ideas?
    Thanks in advance,
    Steve

  • Is it possible to Replace faxserver with SAP PI.

    Hi,
    Current scenario which is running:
    ECC>Faxserver> Faxmachines
    upgrade to PI by replacing fax machine:
    ECC>PI>Faxmachine/Faxserver
    We have to send the message by dialling to the fax machine..
    Right now, the file/message is sent from ECC to faxserver which inturn dial to the receiver fax machine.
    Now we got a proposal of replacing this fax server with SAP PI. Is there any way we can replace this fax server with PI by using some custom adapter?
    Does anyone done this kind of scenario?
    Is there any custom adapter module we can write to handle in PI instead of using Faxserver?
    I think this is not possible to replace?  Any suggestions please?
    Thanks
    Deepthi

    Hi Abhishek,
    Thank you. I will check about the webservice with the vendors.
    Meanwhile we got few small vendors whom doesn't have any other option other than receiving orders through Fax machine. So I'm just wondering is there any way we can send messages directly to their fax machine from PI (may be using Mail adapter)..
    I was going through below link and looks like there is a way by using mail adapter...?
    http://help.sap.com/saphelp_nw04/helpdata/en/af/73563c1e734f0fe10000000a114084/content.htm
    Exchanging faxes and text messages (pager/SMS) using SMTP is also possible. For this, faxes and messages are packed as e-mails. For the send process, the mail server analyzes the domain of the recipient addresses and either forwards the e-mails to an internal fax-/text message server (for example SMS=491759628717 at sms-server.company.com) or to an external provider (for example FAX=16105954900 at fax-provider.com).
    What do you think?
    Thanks

  • Is it possible to replace  XSLT mapping in place of Graphical mapping

    Is it possible to do XSLT mapping in place of Graphical mapping, in any normal scenario?
    Means the fuctionality we do by using Graphical mapping(like the operations by using node functions etc...) could possible to do with XSLT Mapping?

    HI
    yes it is possible to replace the graphical mapping with the XSLT mapping.
    But using XSLTs degrade the performance of the interface and moreover they are not easily maintainable.
    Refer the below links for assistance on XSLT Mapping:
    XSLT MAPPING:
    Generic XSLT Mapping for SAP XI,Part I
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/01a57f0b-0501-0010-3ca9-d2ea3bb983c1
    Generic XSLT Mapping for SAP XI,Part II
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/9692eb84-0601-0010-5ca0-923b4fb8674a
    XSLT: Recursive Templates
    XSLT: Recursive Templates
    Easy RFC lookup from XSLT mappings using a Java helper class
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/05a3d62e-0a01-0010-14bc-adc8efd4ee14
    Step u2013 By u2013 Step Simple Approach for XSLT Mapping
    Step – By – Step Simple Approach for XSLT Mapping
    http://www.devguru.com/Technologies/xslt/quickref/xslt_element_applytemplates.html
    XSLT Mapping
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/01a57f0b-0501-0010-3ca9-d2ea3bb983c1
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/9692eb84-0601-0010-5ca0-923b4fb8674a
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/006aa890-0201-0010-1eb1-afc5cbae3f15
    xpath functions in xslt mapping
    https://www.sdn.sap.com/irj/sdn/advancedsearch?cat=sdn_all&query=xslt+mapping&adv=false&sortby=cm_rnd_rankvalue#
    Using XSLT mapping in a ccBPM scenario
    File to Multiple IDocs (XSLT Mapping)
    Comparsion of Different mappings:
    Comparing Performance of Mapping Programs
    Complete mapping guide url:
    http://help.sap.com/saphelp_nw04/helpdata/en/73/f61eea1741453eb8f794e150067930/content.htm
    cheers

  • Is it possible to embed fonts in Keynote theme?

    I've created custom theme for Keynote'08 and everything works fine.
    My theme uses corporate fonts.
    At the moment the theme is distributed with additional font pack and the user have to install both, but I'd like to simplify the theme installation process.
    Is it possible to embed fonts in Keynote theme?

    Got it, and it make sense...
    I was thinking about something like adding fonts to theme-files folder,
    but well, I can live without this "feature".
    Thx Your for the answer.

Maybe you are looking for

  • Use of Gif With Animination In Forms 6i

    Hai everone, i am trying to use GIF FILE with Animination in forms 6i but it not working Animination is not working can any one help me or any one have designed form pls help to find solution. Thanx

  • Airport Express Ethernet Port

    Ok, I have an Airport Extreme base station, and I was thinking of getting an Airport Express to extend the range of my wireless network. I have been reading on the Airport Express part of the Apple site and it says the Ethernet port can be used to co

  • Will my MacBook work without the screen?

    The screen on my 2011 MacBook is broken but the unit works fine with an external display. If I remove the screen (as its an unsightly mess) will the unit still work?

  • Control Tab order?

    How can i control(customize) the Tab order? By default Tab order is from left to right on the Form, I need to change this order. Do i have to use focusLost/Gained ? Thx Ali

  • Requirements for SSD?

    Hello everyone. I am considering upgrading to an SSD from my HDD. I have an early 2011 MacBook Pro. Are there any specifications for what kind of hard drive I could use for my machine or are all hard drives standard? For example would this one work?: