PDF "Author" metadata in apostrophes

I use Dublin Core properties to specify the company name as author for our PDF files, for example:
<dc:creator>My Company, Inc.</dc:creator>
When I open the PDF in Acrobat Reader and view the document properties, however, the "Author" is displayed in apostrophes: "My Company, Inc."
It should be displayed without the apostrophes: My Company, Inc.
Is there any way to avoid having the apostrophes display in the document properties? The company name cannot be rewritten, it should be written exactly as above.

What quote character should I use?
If I use left and right double quotation marks:
<dc:creator>&#x201C;My Company, Inc.&#x201D;</dc:creator>
the Author field displays as:
"“My Company, Inc.”"
If I use quotation mark:
<dc:creator>&#x0022;My Company, Inc.&#x0022;</dc:creator>
the Author field displays as:
"""My Company, Inc."""
The Author field should just display as:
My Company, Inc.
I view the PDF in Adobe Reader 9.

Similar Messages

  • PDF file metadata into Sharepoint List while uploading

    Hi,
    I have a .pdf file. It has values for title and comments in the file properties. Iam uploading it to a Sharepoint List/Library. In the metadata of List/Library  the values(Title and Comments) are not getting populated. But then for other type of files like .doc,.ppt etc its working fine.
    I wrote an Event Listener also while uploading the document, to set it thru code. But then in the
    event receiver properties im not able to find the values for Title. Im using like this...
    properties.AfterProperties["vti_Title"].DefaultValue
    I tried googling and finally posted..
    Any help please...

    Hi,
    Nice to see your response. Im doing the same way to update the list item field values. Its also working fine. But then the only exception case is when i upload a .pdf document.
    For these kind of documents(.pdf) the metadata field values like Title,Comments etc are empty. Even though the original file has values for title,Comments,Keywords etc..
    My case is only with the documents other than the office suite.
    If you provide me the extraction of metadata for a .pdf file in my listener, then its easy to bind to a field value.
    Thanks.

  • Author metadata separated by semi-colons truncated in file properties and "Get Info"

    I'm using Acrobat Professional 9.0 (CS3) for Mac to edit the metadata for a collection of PDFs to be made available on the web. When I enter the data, I am inputting a list of authors separated by commas, like this: Smith J, Watson C, Brown J. If I click on "Additional metadata", the data I've already entered is transposed into the various XMP fields. And the commas separating the author names are changed to semi-colons. I gather that this happens because XMP wants to separate multiple authors with semi-colons, and Acrobat wants the metadata in XMP fields to match the metadata stored for the file properties. Fine.
    However, if I save such a PDF and then use Get Info on my Mac (OSX 10.4) to look at the file properties, the list of authors is now truncated where the first semi-colon appears. The list is also truncated in Windows XP if I right-click and select properties. The list is also truncated when I look at the file properties in Preview on my Mac, or if I look at file properties using FoxIT, or using Adobe Acrobat Reader 7 or earlier. The only way a site visitor will actually be able to view the full list of authors in a file saved this way is to use Adobe Reader version 8 or later.
    I would like to preserve XMP/Dublin Core/etc metadata in the proper format in the XMP code, but would also like users of standard, popular file viewers to be able to access the full list of authors. Is there a way to do this with Acrobat 9?
    Also, once I've saved a file and the XMP metadata has been altered, Acrobat seems to permanently change the way that the authors are listed in the file properties. I cannot manually change those settings any longer without Acrobat overriding my changes and converting commas to semi-colons, or surrounding the entire list of authors in quotation marks. Is there a way to get around these Acrobat overrides and manually take control of my metadata again?
    Does Windows Vista read the authors list correctly in the file properties if it is separated by semi-colons?
    It seems to me that in an attempt to get XMP metadata working smoothly across the entire CS line, Adobe has jumped the gun somewhat and is now forcing Acrobat users to use "file properties" metadata that is really only fully compatible with Adobe products. Is there a way I can get some backwards compatibility on this?
    Thanks for any suggestions or insight anyone can provide to this vexing issue.
    Phil.

    Bridge has some pretty powerful and helpful features. However, I am unable to figure out how to access the non-XMP "file properties" fields through Bridge, and if I add metadata via Bridge, then I run into the same problem regarding the use of semi-colons to separate authors.
    If I had more time, or a larger set of files I might investigate the use of ExtendScript to import all my metadata from an Excel file (where it already exists) into the PDF file properties and XMP metadata.
    The best solution for my case though appears to be to use Acrobat 9 and to do the double-edit process for each file. I should be able to just cut-and-paste the metadata from the Excel file, and then if I save the Authors list to the end, I can simply paste it once into the XMP field (through the Advanced metadata button) and then return to the regular file properties page and paste it again in there, where Acrobat will add quotes around it.
    Lastly, if anyone else happens to find this post and is looking for similar information, I would recommend searching in the Bridge forum as well as the Acrobat forum.
    Phil.

  • Export to PDF with MetaData

    I have a script that exports each individual page to a pdf with each page having it's own metadata.
    It works fine except for on small thing.
    The keyword array looks like this in the final PDF.
    ; "Keyword1, Keyword2, Keyword3
    How do I get rid of the semicolon and quotes?
    Thanks!
    main ();
    function main() {
    var curDoc = app.activeDocument;
    var docPath = app.activeDocument.filePath; 
    // Array of paragraph Style names
    var paraStyleNames = ["meta-title", "meta-alt", "meta-subject"]; // insert here your para names !
    var missingParaStyles = [];
    // check, if the styles are valid
    for ( var p = 0; p < paraStyleNames.length; p++ ) {
        var curName = paraStyleNames[p];
        // if the style is missing, push it to the array
        if ( !curDoc.paragraphStyles.itemByName(curName).isValid ) {
            missingParaStyles.push( curName );
    var folderPath = new Folder(docPath + "/" + curDoc.name.replace(/\.indd$/,"") + "-pdf");
        if (!folderPath.exists)
            folderPath.create();
    // loop through all pages
    for ( var i = 0; i < curDoc.pages.length; i++ ) {
        // the current page
        var curPage = curDoc.pages[i];
    // Page number
        var pName = (curPage.name < 10) ? ("0" + curPage.name) : curPage.name;
       // controls the loop
        var controller = true;
      // all paragraphs on the current page
        var allPageParas = curPage.textFrames.everyItem().paragraphs.everyItem().getElements();
        // loop through all paragraphs and check, if one has the para style applied
        for ( var p = 0; p < allPageParas.length; p++ ) {
            if ( !controller ) break;
            // the current para
            var curPara = allPageParas[p];
            // loop through the styles
            for ( var n = 0; n < paraStyleNames.length; n++ ) {
                if ( curPara.appliedParagraphStyle.name == "meta-title" ) {
                    var docTitle = curPara.contents;
                   } // end if
                if ( curPara.appliedParagraphStyle.name == "meta-alt" ) {
                    var docAlt = curPara.contents;
                } // end if
             if ( curPara.appliedParagraphStyle.name == "meta-subject" ) {
                    var docKeywords = curPara.contents;
                    var docDirectory = Array(docKeywords); 
                } // end if
            } // end for paraStyleNames
        } // end for allPageParas
    for (var i = 0; i < docDirectory.length; i++) {
        docDirectory[i] = docDirectory[i].replace(/; /g, "");
        var filePath = folderPath + "/" + curDoc.name.replace(/\.indd$/,"")  + "-" + pName + ".pdf";
        var myFile = File( filePath );
        var pdfPreset = "Labels";
        with (curDoc.metadataPreferences){
        documentTitle = docTitle;
        author = curDoc.name.replace(/\.indd$/,"") ;
        description = docAlt;
        contentCreator = curDoc.name.replace(/\.indd$/,"")  + "-" + pName ;
        keywords =  docDirectory;
    with (app.pdfExportPreferences) {
      pageRange = curPage.name; 
      viewPDF = false }
      curDoc.exportFile( ExportFormat.PDF_TYPE, myFile, false, pdfPreset );
      } // end for > main

    You mean rendered on top of the image? That info is already embedded inside the image as metadata. To render metadata on top of your image, you can use the slideshow module, add a text overlay with your custom metadata and export to jpegs. You can do similar things inside the Print module but you cannot control the placement of the text.

  • Looking for a .pdf organizer/metadata editor

    Hi,
    I have a bunch of .pdf files of research papers that I would like to organized and publish to the web. I would like to be able to quickly preview the .pdf, rename, modify basic metadata like title, author, keywords and subject, and then upload to the web where the directory can be viewed or searched based on the metadata. What would you advise?
    I am testing "A-PDF preview and rename" and I like the tool so far except I would like to be able to copy and past text out of the previewed document to be used in metadata fields.
    I currently use CS4 with acrobat 9 pro.
    Thanks,
    bob

    I found a better, partial solution, in case anyone is interested. Cost 60 bucks but does most of what I want it to do "PDF Explorer 1.5". No frills database for .pdf files that allows copy and past into metadata fields. Still nothing on sharing the database via the net or summarizing metadata as a web gallery. Maybe bridge can do this? or Photoshop? Would be cool to be able to create a photoshop image gallery that uses the .pdf cover page as the image and includes the display of chosen metadata... I will keep plugging but am still interested in anyone's ideas on this.
    b

  • How to extract pdf document metadata and first page as image

    Hi,
    I have an asp.net application that allows uploading pdf documents - ebooks.
    1) How can I extract book title, author and other metadata from uploaded pdf.
    2) How can I create a thumbnail image of first page of pdf book.
    3) What is the minimum adobe software that must be installed on server to support this 2 features?
    Any sample in c# would be very helpfull. 
    Thanx,
       Valter

    3) What is the minimum adobe software that must be installed on server to support this 2 features?
    You may look at the LiveCycle products.

  • Filling out iBooks author metadata in inspector

    When filling out the inspector document info for the title is there a way to see all that you have just typed in to make sure everything is correct. It seems the field only shows three or four words. How can I edit it? Also, I have a subtitle, am I supposed to include it on that line also after the title?

    I am no iBA guru Jimmy, I work be trial and error to find what works for me.
    The questions was about titels and sub titles. The inspector doc option is "Title" so obvioulsy there is no field for a sub  title.  My post clearly explains what I do, so  having a none hypenated title is just that.. a title. Fo rteh 'Author"  hypenating as I  explained is simly a note if you like.
    The only place for a sub title is during the delivery process. 
    I am not  sure it was the same post.. but  you and henmning(?) had an exchange about  metatdata  to the effect that  filling in the Doc information was wasted, you were correct in your response, and if the .iBA files is changed to a zip and opened, the metadata can be  found in the index.xml file.
    And as you say is used when searching the store.
    Title, Decription, and Keywords are the basic metatdata in any webpage

  • PDF dimensions metadata still hopeless in CS6

    This has been a particular bugbear of mine and it seems CS6 is no better.
    The Dimensions attribute on the Metadata panel gives you nothing useful when you're looking at PDFs. It WILL show some dimensions but I'm picking what it is showing is the JPEG preview dimensions, not the actual PDFs print dimensions. What use is that?
    Would it be too hard to put in useful print dimensions, eg. the dimensions of the Cropbox, and especially the Trimbox (as in the Set Page Boxes panel in Acrobat X Pro), so that the Bridge metadata actually gives you USEFUL information?
    Why should I have to open a PDF to find out its actual print dimensions, when there is a Dimensions attribute in Bridge? I should be able to click on a thumbnail and Bridge will tell me whether it's A4 or A1, etc.
    Cheers
    Luke

    Hi, Luke.
    Please enter a feature request on http://feedback.photoshop.com, and do describe the current situation, and what you are looking for.

  • PDF document Metadata

    Hi all.
    I want to add some custome metadata to PDF file.
    I use Cos layers for it. So exists a Root/Metadata stream. I reading this stream (by CosDictGet and CosStreamOpenStm) and modify stream XML by MSXML engine. After modifying XML I put it to new created stream, then put this stream into Root dict under "Metadata' key by CosDictPut (before this I remove Metadata key from Root dict by CosDictRemove). Problem is that after saving document Root/Metadata stream will replacing by new metadata stream (no mine).
    Here is code sample:
        CosDoc destCosDoc = PDDocGetCosDoc(pdDoc);
        CosObj rootDict = CosDocGetRoot(destCosDoc);
        CosObj metadata = CosDictGet(rootDict,ASAtomFromString("Metadata"));
        CosObj  length_o =  CosDictGet  (metadata,  ASAtomFromString("Length") );
        int length = CosIntegerValue(length_o);
        ASStm stream = CosStreamOpenStm(metadata,cosOpenFiltered);
        CStringA buff;
        ASStmRead(buff.GetBufferSetLength(length),1,length,stream);
        buff.ReleaseBuffer();
        ASStmClose(stream);
         //.... modifying XML (buff variable)

    I use it like this:
      CosDictPutKeyString(rootDict,"Metadata",metadataStream);
      PDDocSave(pdDoc,PDSaveFull | PDSaveKeepModDate, NULL,ASGetDefaultFileSys(),NULL,NULL);
      CosObj metadata_obj = CosDictGetKeyString(rootDict,"Metadata");
    But still no effect.
    If after saving  I get Root/Metadata (metadata_obj) stream it didn't return  my stream (modified by me) but modified by Acrobat. But if I comment PDDocSave and get Root/Metadata it return XML stream modified by me. So PDSaveKeepModDate not working..

  • Are there any character limits to PDF keyword metadata?

    I'm working on a project that involves scanning a lot of handwritten documents, so manually entering keyword metadata is key for searchability. Is there any character limit to individual keywords or the entire keywords field?
    Thanks,
    Sean

    Well I answered the second part of my question myself. It turns out the keyword field in Acrobat has a 1,999 character limit.

  • Aperture and Canon 5D mark II import problem: copyright and author metadata

    After importing RAW images to Aperture, I missing my name and copyright info in metadata, everything els is there; lens, focal length, shutter sped... I try several methods from camera direct, from memory card, using EOS software to HD and to Aperture. Nothing works. Did anybody have same problem?

    Ah. I didn't know that.
    This type of information is defined typically in IPTC, not EXIF. Aperture probably ignores those EXIF fields; in general if it gets EXIF data it doesn't understand, I think it ignores it.
    As to your other comment about making this data unmodifiable -- it's not really possible to make it immutable. EXIF in general is a lot harder to modify than IPTC, but unless the file is encrypted and self-checksumming, a person with a sector editor (or an application designed to change EXIF) will get around this.
    I don't think there's yet a standard way to really "protect" full-sized image files, at least for JPEG or TIFF files.

  • PDF (metadata) is not displayed in WIN7 Windows Explorer

    The PDF Tab (metadata) does not get displayed (such as: Title, Author, Subject, Keywords) when viewed in Win7 Windows Explorer.
    This information is displayed when you view the Properties information via Adobe Reader (v9.4).
    This is causing issues with our document management.
    When looking around at various blogs this is all I have found:
    Adobe implemented in pdfshell.dll an ActiveX interface called IColumnProvider, and Microsoft dropped support for this interface in Windows Vista (replacing it with something called the Property System). So, the PDF Title column feature didn't go away with Windows7, it went away with Windows Vista. http://msdn.microsoft.com/en-us/library/bb776831%2 8VS.85%29.aspx
    Has pdfshell.dll been updated to provide the Property System interface that Vista and Windows 7 require? See http://msdn.microsoft.com/en-us/library/bb776859 %28v=VS.85%29.aspx
    Has anyone else experience this and is there a valid work around?

              Hi Bernd,
        I use Adobe reader XI and metadata is not very friendly, if i have no metadata in explorer it's annoying but if acrobat reader is showing wrong information in file properties there must be something to do to clarrify the situation.
    NB:
    What i've tried
    Adding keywords with exiftools (works good for other tags), result ok when viewing properties with evince, but not with adobe reader (; subject in place of ; keyword)
    So i erased xmp metadata and retried, job done!
    Does someone can explain howto solve this problem because i'm not in favor of deleting adobe pr*sm informations
    http://www.adobe.com/products/xmp/index.html
    What i found is for myself => RTFM as extracting the tags should be done with the -g (with group) option to avoid problems when writing back.
    Result is ok no more mix.
    Thanks for reading,
    Gilles

  • ANN: Half-hour webinars (free) -- Web-based videos in PDFs (Apr 18) / Metadata in PDFs (Apr 25)

    (free; no fluff, no hype, no nonsense; starting 9am PT)
    Integrating web-based videos in your PDFs
    (with FrameMaker-to-Acrobat TimeSavers + Multimedia Asst)
    Thursday, April 18
    https://www3.gotomeeting.com/register/954869454
    Metadata in PDFs authored with FrameMaker
    Thursday, April 25
    https://www3.gotomeeting.com/register/578895294
    Shlomo Perets
    MicroType, http://microtype.com
    FrameMaker/Acrobat/Captivate training & consulting * FrameMaker-to-Acrobat TimeSavers/Assistants

  • Demanding more human-oriented PDF metadata!

    I am trying to write a plugin for PDF reader where an user, most likely a scholar, can select some text and have a bibliography automatically made ready by the plugin. It saves lots of time for scholars and university students doing research projects. To do that, a PDF file needs to store information about the author, the publisher, publish date information. I checked out PDF standard metadata, and they don't have what I need. What come the closest is creator, producer, but they are the programs that generate the PDF, not the publisher. I want to say that in the case where academic writers choose to publish their writing in PDF, can't they embed publisher, author, and so on information into the PDF file? To me, doing so makes lots of sense, as more and more academic articles are published in PDF format, and the PDF format should catch up with that!

    You have two choices.
    1) You can use custom Acrobat-centric metadata which centers around the use of the key/values pairs in the /Info dictionary.
    2) Use the more modern XML-based metadata system called XMP which is referenced from the /Metadata key in the /Catalog dictionary.
    Leonard

  • Terminal command equivalent to Automator's 'set metadata pdf'

    Hi,
    When I make pdf docs I sometimes want to erase my name from the Author metadata, and put something into Title and so on.
    I know that Automator has an action called set pdf metadata, which I have successfully used.  But I would like a Terminal command that I could use instead.
    Googling this question returns suggestions of downloading pdf-manipulation libraries which are too elaborate for me to use.  I'm hoping that Automator is simply utilising a terminal command already built-in.
    Is there such a command?
    Diddles

    A bit of experimenting.
    Given a file temp.pdf in the current working directory . . .
    xattr -w "com.apple.metadata:kMDItemAuthors" "diddles1234" temp.pdf
    writes the string "diddles1234" to the Authors metadata field of temp.pdf.
    xattr -w "com.apple.metadata:kMDItemTitle" "newmetatitle" temp.pdf
    writes the string "newmetatitle" to Title metadata field of temp.pdf.
    However, if you try to put spaces into the string like this:
    xattr -w "com.apple.metadata:kMDItemTitle" "new meta title" temp.pdf
    the title field will not be changed to "new meta title". In fact, if you start with "original title" as the value of kMDItemTitle, successfully change it to "newmetatitle", and then later try to change it again to "new meta title", the value of kMDItemTitle reverts to "original title". The OS appears to "forget" the intermediate change to "newmetatitle".
    As best I can figure, in the event of a failed xattr write command, the original kMDItemTitle is rebuilt from semi-redundant data within the PDF--but more experimentation would be required to prove it. (The same is true of kMDItemAuthors, by the way.) Quick take away: The first two commands above will work if you don't use spaces in the strings to be inserted into the metadata fields. Someone more proficient in UNIX may have a better solution or explanation.

Maybe you are looking for