About Extract Information from a Indd File

Hi!
I need to extract meta information and a little preview from a indd file and others like Quark, i thought the adobe Indesign SDK Product could help me, but i saw this SDK is only for create plugins, my question is: Can i do that with a SDK from adobe? Or do anyone knows some tool to resolve my problem.
Scenario: I have a web application and i need  too run this solution with the adobe solution.
Regards,
Rafael Bueno

We already use XMP SDK metadata to extract metadata file information, but the thumbnail generated by XMP is very small.
I need something to open the document and export a image in big resolution and extract all images inside the document, this is not a XMP information.
Regards,
Rafael Bueno

Similar Messages

  • Extract information from Javadoc files

    I want to extract class, method & parameter information from the javadoc files (in html format, not from source code).
    Are there any existing API's / opensource projects that would help me do this.
    I have tried searching google and the forums, but I end up finding results related to extracting javadoc info from the source files. However I am interested in recovering this information from the generated HTML files.
    Any pointers would be helpful.
    - Ajay

    The situation is like this: I have a stub jar file alongwith the documentation in HTML form. The classes in the jar file do not have any debug information so eclipse can not extract any parameter name information from the jar file. It does extract some info from the documentation, but quite a lot of the variables are still not named.
    It becomes a tedious job to work with the API when you can not figure out which parameter refers to what. I have to often lookup the documentation to figure it out.
    My plan is to recreate the stub jar by decompiling it and merging the parameter name information derived from the html documentation to create create source files. Then I can recompile them with debugging enabled to generate class files.
    Any ideas or open source projects that would let me do this quickly?

  • How to design plug-in which extract information from file opened in illustrator

    Hi Everyone,
    I want to design a plug-in in adobe illustrator which could extract information from pdf file which is opened in illustrator.
    Can anyone give me direction from where could I start.??
    Thanks in advance.

    This is very difficult in any API because there are no tables in PDF.
    If the table is at a known exact location you would extract text from each known cell location
    If you have to discover tables you need to decide how to recognise them: perhaps by looking for drawn lines and analysing their relationship to see if they form a grid; then use the positions derived to get the text from the table.

  • How to design plug-in which extract information from file opened in illustrator in Illustrator

    Hi Everyone,
    I want to design a plug-in in adobe illustrator which could extract information from pdf file which is opened in illustrator.
    Can anyone give me direction from where could I start.??
    Thanks in advance.

    Moving this discussion to illustration community.

  • PowerShell - Extracting Information from XML

    Hello,
    I want to extract some information from an XML file. Below is the screenshot:
    How do I go about it? Thanks.

    Thanks. Please note though, the data I want to extract is exactly at
    jobDetail -> jobDetailInfo -> 2nd
    jobDetailRow -> 3rd jobDetailCol. I want every other CData discarded.

  • Programatically extract information from PDF

    I am very green to Adobe/Java programming, so this is just a plausibility question not really a how to question.  Is it possible to take text from a PDF document that isn't a form?  I have heard about  database integration with forms  but what if the document doesn't have recoginzed fields?
    The department of labor has an online form that prints to PDF.  Much of the information that is typed there must be re-typed over and over again in communications with employers.  I'm wondering if we could take the information from the PDF and put it in a database to be merged in our office-created forms.
    Sorry if my question is totally out there and thanks for any help.

    I am scadoosh, but not iluvtofly.  The information is in the same place in the forms. I could send the form if that is helpful.  It is a form that we have to fill and submit online.  We were hoping we could implement a solution where we could either extract information from the form that has been "printed to pdf" or the opposite, where we would fill in a database and programmatically fill the form.
    When you say an Adobe LiveCycle product, what is that?  Is it software or hardware?  Would we have to purchase something in addition to Adobe Acrobat?  What do we need to implement such a solution?
    Are there Adobe people who design custom products?  Or could we get training somewhere on how to implement an Adobe LiveCycle solution.  If there are custom designers,  could they implement a solution so that if the government moved fields a little bit, we could adjust the LiveCycle solution to fit the new form.
    Thanks!

  • How to extract information from client security certificates and display it

    Hi guys,
    just wanted to know is it possible to extract information from an digital security certificate and get that displayed on top level navigation of the portal. So for ex. I want to extract the clients name and code and area from where they come from to be displayed on top level.
    thanks
    anton

    RoopeshV wrote:
    Hi,
    The below code shows how to read from txt file and display in the perticular fields.
    Why have you used waveform?
    Regards,
    Roopesh
    There are so many things wrong with this VI, I'm not even sure where to start.
    Hard-coding paths that point to your user folder on the block diagram. What if somebody else tries to run it? They'll get an error. What if somebody tries to run this on Windows 7? They'll get an error. What if somebody tries to run this on a Mac or Linux? They'll get an error.
    Not using Read From Spreadsheet File.
    Use of local variables to populate an array.
    Cannot insert values into an empty array.
    What if there's a line missing from the text file? Now your data will not line up. Your case structure does handle this.
    Also, how does this answer the poster's question?

  • How to extract text from a PDF file?

    Hello Suners,
    i need to know how to extract text from a pdf file?
    does anyone know what is the character encoding in pdf file, when i use an input stream to read the file it gives encrypted characters not the original text in the file.
    is there any procedures i should do while reading a pdf file,
    File f=new File("D:/File.pdf");
                   FileReader fr=new FileReader(f);
                   BufferedReader br=new BufferedReader(fr);
                   String s=br.readLine();any help will be deeply appreciated.

    jverd wrote:
    First, you set i once, and then loop without ever changing it. So your loop body will execute either 0 times or infinitely many times, writing the same byte every time. Actually, maybe it'll execute once and then throw an ArrayIndexOutOfBoundsException. That's basic java looping, and you're going to need a firm grip on that before you try to do anything as advanced as PDF reading. the case.oops you are absolutely right that was a silly mistake to forget that,
    Second, what do the docs for getPageContent say? Do they say that it simply gives you the text on the page as if the thing were a simple text doc? I'd be surprised if that's the case.getPageContent return array of bytes so the question will be:
    how to get text from this array? i was thinking of :
        private void jButton1_actionPerformed(ActionEvent e) {
            PdfReader read;
            StringBuffer buff=new StringBuffer();
            try {
                read = new PdfReader("d:/getjobid2727.pdf");
                read.getMetaData();
                byte[] data=read.getPageContent(1);
                int i=0;
                while(i>-1){ 
                    buff.append(data);
    i++;
    String str=buff.toString();
    FileOutputStream fos = new FileOutputStream("D:/test.txt");
    Writer out = new OutputStreamWriter(fos, "UTF8");
    out.write(str);
    out.close();
    read.close();
    } catch (Exception f) {
    f.printStackTrace();
    "D:/test.txt"  hasn't been created!! when i ran the program,
    is my steps right?                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • How to extract text from a PDF file using php?

    How to extract text from a PDF file using php?
    thanks
    fabio

    > Do you know of any other way this can be done?
    There are many ways. But this out of scope of this forum. You can try this forum: http://forum.planetpdf.com/

  • How to Extract Data from the PDF file to an internal table.

    HI friends,
    How can i Extract data from a PDF file to an internal table....
    Thanks in Advance
    Shankar

    Shankar,
    Have a look at these threads:-
    extracting the data from pdf  file to internal table in abap
    Adobe Form (data extraction error)
    Chintan

  • How can I extract data from a sound file in carbon

    hello,
    I am a student and I start recently learning carbon. I have to do a application which can read and extract data from a sound file and use that data to do some kind of visual representation of the file. I would like to know if someone can give some directions, tutorial,some code sample etc.
    thank you for your help
    chenita7

    hello orangekay
    My idea is to create an application that can read a sound file( AIFF, MP3 or other) in order to extract some kind of data ( numbers or any values) and use that data to represent the sound file visually.
    I dont know which kind of data can be extract from a sound file, and in which way i can manipulate that data to became a visual representation of the sound file. this is what I want to do as my second assignment for a subject at school, introduction to programming. has to be done based in carbon.
    regards
    chenita7

  • Extracting information from a table based on different criteria

    Post Author: shineysideup
    CA Forum: Formula
    Hi Folks
    I have a bit of a strange one here.
    I need to extract information from a single table based on different critera.
    Sounds simple enough but here's the tricky part.
    This table is a table that contains the build of a product. All the parts that are used to make the product and also the sub-parts that are used to make the primary product parts.
    Example:
    I have a part that is in the product and the part no is 1111. This part is actually part of another part that is part no 1112
    What I need to do is display part no 1111 with all of its details but then also show that it is also part of part no 1112.
    The way the table holds this information is as follows.
    Seq_No      Parent_Seq_No     Part_No
    The seq_no is item no that is given to the part number. If the part is a member of another part then there is also a parent_seq_no.
    Everything needs to tie back to the seq_no and the parent_seq no as the part itself can be used in a parent or it can be used on its own. This way you can actually have the same part appearing in the list several times but the seq_no will be different for each one. If the part can be used in two different sub-builds (with each part being used twice in each sub-build) and also on its own once then you would have 5 different seq_nos two parent_seq_nos.
    What I need to do is to list all of the parts but then also when a part is part of a parent_seq_no I need to be able to display the parent seqno but also the part_no for that as the parent would also be listed as an individual item in the part list.
    At the moment listing the part_no, seq_no and parent_seq_no is easy but when I try to list the part_no for the parent I jsut keep getting the original sub part again. I can do this with a sub-report but with what I need to do with the data after listing the parts a sub-report is not an option for me.
    This make sense?
    Thanks

    Post Author: Charliy
    CA Forum: Formula
    As long as the chain only goes one link deep, you should be able to Alias the table and link it (left outer)  from the child part to the parent part.  Then build a Detail B (or Group Footer if that's where you're printing) and conditionally suppress is if there is no "Parent Part".

  • I would like to cut and paste information from a word file onto a pdf file, as well as draw lines onto the pdf file.  How can I accomplish that task?  Is there software I can purchase?

    I would like to cut and paste information from a word file onto a pdf file, as well as draw lines onto the pdf file.  How can I accomplish that task?  Is there software I can purchase?

    Hi jgallu7382,
    The latter is easily accomplished using the Drawing Markup tools, which are available in both the free Adobe Reader, and in Acrobat. Copying/pasting text into the PDF is something that you could do using the editing tools that are available only in Acrobat. Note, however, that Acrobat isn't intended to be a text-editing application, so editing there won't be as robust as in an application designed specifically for that purpose. (It's also worth mentioning that you won't be able to alter a PDF if it has document permissions applied that would prevent you from doing so.)
    I hope that answers your questions.
    Best,
    Sara

  • Hi i am new to labview. i want to extract data from a text file and display it on the front panel. how do i proceed??

    Hi i am new to labview
    I want to extract data from a text file and display it on the front panel.
    How do i proceed??
    I have attached a file for your brief idea...
    Attachments:
    extract.jpg ‏3797 KB

    RoopeshV wrote:
    Hi,
    The below code shows how to read from txt file and display in the perticular fields.
    Why have you used waveform?
    Regards,
    Roopesh
    There are so many things wrong with this VI, I'm not even sure where to start.
    Hard-coding paths that point to your user folder on the block diagram. What if somebody else tries to run it? They'll get an error. What if somebody tries to run this on Windows 7? They'll get an error. What if somebody tries to run this on a Mac or Linux? They'll get an error.
    Not using Read From Spreadsheet File.
    Use of local variables to populate an array.
    Cannot insert values into an empty array.
    What if there's a line missing from the text file? Now your data will not line up. Your case structure does handle this.
    Also, how does this answer the poster's question?

  • Extracting information from Microsoft Acces

    Hello
    I need help, how do I extract information from tables in a database of Microsoft Access to SAP BW?
    If there is a manual please will thank you.
    Nandirri

    Please check if your client have XI or PI consultant, discuss with them.
    Regards,
    Sushant

Maybe you are looking for

  • Folders automatically switch to read only

    Some folders on my mac automatically cahnge their permissions from read & write to read only, which means whenever I want to edit a document I have to enter my password and reset the folder permissions. It just happens randomly, I am an Admin on the

  • GB will not open due to new sounds bug - no answers

    Error message - "New Post - GarageBand was not able to install new sounds. Close and re-open GarageBand to download and install them again". Saw one thread on this and there was no resolution at the end of it. Seemed like multiple people are sufferin

  • Role of S Partition in Installing New Operating System

    Hello, I've been taking a look on here and understand that the Q partition is for the backup to factory settings and the S partition is part of the start up system (working with a 2009 T400). I am looking to install Windows 7 and have no interest in

  • Multiple server parameters

    Hi Folks, I would like to know how to set multiple server parameters in HTTP Load Balancing? Thanks in advance. Yours sincerely InfoSeeker09

  • Can't login password protected site in Windows XP !

    i use iWeb to make a password protected web page and publish to .Mac. I test it at home using my iMac G5 with Safari and Firefox, everything is ok. when i am at office today, i test it by using Windows XP PC with Firefox and IE, it just keep asking m