Extracts information from an Indd file

Hello!

I need extract metadata and one small preview of an indd file and other as Quark, I thought that adobe Indesign SDK product might help me, but I saw this SDK is only to create plugins, my question is: can I do with an SDK from adobe? Or do anyone know a few tools to solve my problem.

Scenario: I have a web application and I too ran this solution with the adobe solution.

Kind regards

Rafael Bueno

This 'something' would be InDesign Server. Get ready for a great price. Alternatively, if you control the workstations used to create these documents, you can install a script of the event or write a plugin to export all of the data you want, whenever the document is saved.

Dirk

Tags: InDesign

Similar Questions

  • How to extract information from the ovf file from a file of eggs by programming?

    How to extract information from the ovf file from a file of eggs by programming?

    Hello

    Please provide details:

    -On what OS you are programming (Linux, Windows,...)?

    -What programming or scripting language do you use?

    An EGG file is just a tarball of hard, .ovf and .mf files. The .ovf file is always the first. For example, on a Unix like operating system, this should be easy.

    For Windows, there are several options available to manage programmatically the tarballs. See for example http://www.codeproject.com/Articles/470999/tarlib-Windows-TAR-Library.

    And the ovf itself file is in XML format. For handling XML files are libraries available for literally every OS and programming language.

    Google is your friend.

    Andreas

  • Extract information from signature in VBA to a PDF file

    Hi all

    I need to extract information from signatures of PDF files in VBA (mainly the name of the signer and the date of signature. PDF files have several signatures inside them).

    So I have a few questions:

    -Are there an example somewhere to do such a thing?

    -I need Acrobat Pro for this? This is an important point because the code is supposed to be run on machines where ONLY Acrobat Reader is installed.

    -If the above is not possible, do you know a command line utility that would do the thing (and I could run from my VB code)

    Thank you for your help

    Emphyrio

    As already mentioned, you will need Adobe Acrobat Standard or Pro VB/JS bridge. If you want to make this work with just the free reader, you are limited to what you can do in JavaScript environment. Basically, this means that you must open the file in the player and then for example use a menu item to trigger functions to get information about signatures in your file. For example, this information may appear on a dialog box, and you would be able to copy & paste from this dialog (which means no VBA integration at all).

    Of course, you can use either Adobe PDF Library (licensed through Datalogics), or other 3rd party PDF frameworks/libraries. It's a site run by Adobe, you will understand that we cannot give you advice regarding 3rd party solutions that compete with the own Adobe solution.

  • I want to extract information from the same input field in multipal PDFs (created using document pro) and export them to an excel file. Is this possible? If this isn't the case, Adobe seeks to make this project a reality.

    I want to extract information from the same input field in multipal PDFs (created using document pro) and export them to an excel file. Is this possible? If this isn't the case, Adobe seeks to make this project a reality.

    -Extract all data from a single file can be done via the tools - forms - more form Options - export data...

    -Extract some data from a single file will require a script to measure.

    -Extract all the data from multiple fields in a single file can be done via the tools - forms - more form Options - merge data files into spreadsheet...

    -Extraction of data from several files will require a script Custom Action, as I've written before.

  • Extract information from a form of Muse

    I'm looking for a way to extract information from a muse of. The form is a type of query. ID like to be able to take emails all receipts and pull so that the names, email, zip code things like that and put it in a file pdf or something similar if it is a list of all that info. is there an option in adobe or a third party app that I could use?

    Not with the basic form. You need one of the plans Business Catalyst paid extra and advanced forms to process the data. In either case, it will be probably be much simpler and more profitable (as in totally free) to register directly for Surveymonkey, Polldaddy or ultimately OpenPetition.org. No point to try to reinvent the wheel.

    Mylenium

  • How to extract information from tree logical structure using the PDF Library?

    How to extract information from tree logical structure using the PDF Library?

    Adobe's PDF Library has PDSEdit APIs to extract information of the logical structure of a tagged PDF file.

    But I couldn't find any example code to demonstrate the C API on PDSEdit layer.

    I google search using different keywords, find none.

    I contact datalogics (which gives me the evaluation of adobe PDF library copy), no code sample on APIs PDSEdit yet.

    Everyone knows any code example can demonstrate extract structure logic tree information PDSEdit APIs (in C/C++ or Java)

    from a tagged PDF file? And is there any sample to demonstrate that connects a tagged logical tree contained in the content stream?

    I thank very you much in advance!

    logicaltree

    Did you look at the code snippets in the SDK?  There are a bunch of samples to work with PDSEdit and structure/marking.

  • How to extract pages from a large file?

    How to extract pages from a large file?

    Free Adobe Acrobat Reader cannot extract pages. This would require the purchase of the full version of Adobe Acrobat.

  • Extract data from an xml file takes almost an hour to 2.5 M data.

    Hello

    Any help would be much appreciated. Extract data from an xml file takes almost an hour to 2.5 M. data is there a solution to this.

    WITH t AS
    (SELECT XMLTYPE (response) pass FROM dual
    )
    SELECT
    b.entity_id,
    c.INSTANCE_ID,
    d.attribute_id,
    d.DATA_TYPE,
    d.ATTRIBUTE_VALUE,
    d.outcome_style
    T,.
    XMLTABLE (XMLNamespaces ("http://schemas.xmlsoap.org/soap/envelope/" AS "SOAP-ENV"
    'http://oracle.com/determinations/server/10.3/rulebase/assess/types' AS 'type')
    , ' SOAP - ENV:Envelope / SOAP - ENV:Body / typ: assess-response/typ: global instance / typ:entity'
    PASSAGE t.col
    Path of COLUMNS entity_id VARCHAR2 (256) "@id".
    path XMLTYPE res_tmp2 'typ:instance') b
    xmltable (XMLNamespaces ("http://schemas.xmlsoap.org/soap/envelope/" AS "SOAP-ENV"
    'http://oracle.com/determinations/server/10.3/rulebase/assess/types' AS 'type')
    , "typ:instance".
    PASSAGE b.res_tmp2
    Path of COLUMNS instance_id VARCHAR2 (256) "@id".
    path XMLTYPE res_tmp3 'typ:attribute') c
    xmltable (XMLNamespaces ("http://schemas.xmlsoap.org/soap/envelope/" AS "SOAP-ENV"
    'http://oracle.com/determinations/server/10.3/rulebase/assess/types' AS 'type')
    , "typ:attribute".
    PASSAGE c.res_tmp3
    Path of VARCHAR2 (256) COLUMNS attribute_id '@id '.
    , data_type VARCHAR2 (256) path '@type '.
    , attribute_value VARCHAR2 (256) path '.'
    path VARCHAR2 (256) outcome_style '@inferred') d;

    Thank you
    Mhand

    OK, in this case the best option is to store the answer in a binary table of XMLType (may be a temporary table if you want to) and run the query from there:

    CREATE TABLE tmp_xml OF XMLType
    XMLType STORE AS SECUREFILE BINARY XML -- default storage in your version
    ;
    
    INSERT INTO tmp_xml VALUES(XMLType(response));
    
    SELECT b.entity_id,
           c.instance_id,
           d.attribute_id,
           d.data_type,
           d.attribute_value,
           d.outcome_style
    FROM tmp_xml t,
         XMLTABLE(
           XMLNamespaces('http://schemas.xmlsoap.org/soap/envelope/' AS "SOAP-ENV"
                        , 'http://oracle.com/determinations/server/10.3/rulebase/assess/types' AS "typ")
         , 'SOAP-ENV:Envelope/SOAP-ENV:Body/typ:assess-response/typ:global-instance/typ:entity'
           PASSING t.object_value
           COLUMNS
    ...
    
  • Extract information from the arrayCollection collection

    Hello world

    I have a very simple problem, but I'm a new flex developer and I have no idea what to do.

    that I extracted information from a database by using a Web service in coldfusion.

    in flex, I recovered my query result in an arrayCollection collection

    private var tabInfosDriver:ArrayCollection

    Private function driverInfoHandler(event:ResultEvent):Sub

    tabInfosDriver = event.result as ArrayCollection; collection

    and if I give {tabInfosDriver} as a dataprovider to a DataGrid, the result of the query is displayed correctly, something like that.

    Header1 By tete2 Header3 Header4 Header5
    someValuevalue2someValue3someValue4someValue5


    now, I want to use header1 someValue to fill a textField instance.

    I tried:

    Label1.text = tabInfosDriver.getItemAt (1.0) m:System.NET.SocketAddress.ToString)

    but it wrong: the index table out of range and in any case, I want to use the name of the header field, which is the database table to call its value

    Label1.text = tabInfosDriver.getItemAt("header1").value.toString)

    What can I do? I don't know that it is easy to solve. I looked at all the methods of the collection arrayCollection object, but I can't understand wich one to use.

    Please forgive me of my language, I do not speak English very often.

    Dominic

    Often you can either return the data to the Flex application in standard object notation, or to reconfigure the data in this way once he returns to the Flex application in the result handler. The standard notation, to which I am referring is:

    {

    {key1: 'value 1', key2: "Value2", key3: "Value3"},

    {key1: 'value 1', key2: "Value2", key3: "Value3"},

    {key1: 'value 1', key2: "Value2", key3: "Value3"},

    {key1: 'value 1', key2: "Value2", key3: "Value3"}

    }

    So in this way the data is structured, already as an associative array, because such a table is really just an ActionScript object.

    If these data should be accessible in two ways:

    var tempVar:String = myObject.key1;

    var tempVar:String = myObject ["key1"];    (maybe myObject ["key1"])

    Moreover, this "standard object notation" is also known under the name of JSON and there are libraries for handling JSON to the format of the data in Flex, PHP, etc if you have not necessarily to treat it as JSON, which comes, which makes it a little more formal and provides additional APIs:

    http://code.Google.com/p/AS3corelib/

  • Extract data from xml zipped files.

    Hello
    I have a table with a blob field and because of space constraints, I save my huge xml file in the format compressed in this blob field.
    Is it possible to extract data from the blob field xml?

    Thank you

    Vincent pek

    Yes.

    Have a look here: http://technology.amis.nl/blog/8090/parsing-a-microsoft-word-docx-and-unzip-zipfiles-with-plsql (be aware, "docx" is also a zip file)

  • Extract information from comments to vmware in multiple ESXI

    HIL

    We have 20 ESXI - standlone servers, where requirment is that we must seek information from all data from VM.

    A script can be everything to this requirment.

    If you have special characters in your password (like @) you have to put the password in single quotes.

    SE connect-VIServer $_-user root - password "pass@1234" | Out-Null

  • A single PDF can extract information from PDF one another?

    I'm considering the purchase of Acrobat Pro XI. Before I do, I just check on a particular ability (obscure).

    For each person in my organization, I have a PDF document with a lot of information (including their name and title). All these PDF files are formatted in the same (if the title name and is entered in the same field of text of each). These PDF files, I want to create a certificate for each employee, extract the name and title of the document and put them on another model of certificate PDF pre-made. This process will be initiated by maybe the push of a button? Is this possible?

    Thanks in advance (hope that makes sense).

    Acrobat 11 is no longer available for General directly from Adobe licenses and will be difficult to find copies the same from Adobe authorized resellers. Be very careful on the purchase of eBay, Craig's list, etc that you don't know what you will get. Acrobat CC is the latest version of Acrobat

    In regards to what you're trying to do, it is possible, but with a bit of programming with JavaScript, if the data that you are trying to extract in a PDF form field and you even copy on a field of forms in the certificate.

    -Dov

  • Why information from individual PDF files that were created by using the form to fill out is changing when I try to combine the files?

    I have several pdf documents created using a form to fill out.  When I try to create a combined PDF information either is removed from all pages after the first page or all the pages after the fact look page 1 as duplicate page 1.  what I am doing wrong?

    The problem is that these files have fields with the same name in them, thus

    When you merge them they become copies of each other and of all their

    the values are the same.

    To avoid it you must either rename the fields before you merge the files

    or flatten, converting them to static content.

    The game, March 24, 2016 at 22:00, peggyp13342216, [email protected]>

  • ASP / PHP pages: how to get the streaming of information from an XML file?

    Hi all

    I use Adobe Flash Media Streaming Server 3.5 but I can't find any file output (an XML fx) that I can pull info from and use it on my site via a script PHP or ASP. It might be nice - website - to retrieve the info like 'attending of online users', ' running / streaming State "(online or offline) and other relevant information on streaming, so I on the site Web can I view how many who are online when a webtv event is streaming.

    I see the news when I connect to the web admin for FMS, but I need a solution that can work with ASP or PHP.

    Simply, I can't find any file / address for this type or exit out of FMS - can you help me?

    Thank you

    Kind regards

    Jens

    What is rtmp url to which you are connected? RTMP://servername/live/Server1 or just rtmp://serverName/live?

  • Extract information from your unique, Phase algorithm/formula

    I use the Subvi extracted a single signal to make calculations of phase of a research project. Phase measures appear to be quite accurate. For my report, I need to be able to specify how phase measures are calculated. Is there a relatively compact way to indicate the formula that LabVIEW uses to perform these measurements?

    Read the detailed help file will give you a formula.  If you want more details, open the block diagram and it performs an FFT of the input data and then uses a peak finding algorithm to interpolate the exact frequency of the three dominant bins.

    Lynn

Maybe you are looking for

  • Need update Bios for Satellite L40

    Has anyone know where is the * link * to the update of the Bios Satellite L40? I'm looking around at Toshiba but did not find.My wifi is not working, it is not detected. I read another threat, Jaba say "need bios update before install Atheros driver.

  • ScanJet G4050

    I just finished on both sides of the scanner glass and reassembled the scanner without an incident. When I rebooted and tried a scan, everything seemed to work except the preview of the analysis is totally black.  Light of the scanner, the carriage m

  • CQ5814will not turn on.

    Windows 7 Light and fan turns on but that's it.

  • HP DeskJet 930C prints truncated documents.

    Original title: HP DeskJet 930CNo printed documents will be only garble Have tried as far as I know Widows XP Professional

  • When I'm multitasking my windows don't stay open in the background.

    Original title: MULTITASKING. WHEN I'M MULTITASKING MY WINDOWS DON'T STAY OPEN IN THE BACKGROUND AND WHEN I PRESS ON WINDOWS /TAB WINDOWS ONLY, ARE THE OFFICE WINDOW AND AWARE THAT I WAS ON. HOW CAN I KEEP MY WINDOWS OPEN IF I CAN CASCADE THROUGH?