Extract highlighted text in PDF

Hi,
  I want to write a tool which can extract highlighted text from the pdf and export the text into another pdf file. Can somebody give me directions how to do that.
if you think some tool already has that capacity, please let me know. Most of the tool I know just extract the summary like the location of the highlighted portion but not the actual text associated with it.
reards,
Avesh

Hi,
The question relating to extract text from pdf file is beyond the scope of c# forum , please try to refer to:
http://www.adobe.com/support/acrobat/
HarryPlease remember to mark the replies as answers if they help and unmark them if they provide no help.
Welcome to the All-In-One Code Framework! If you have any feedback, please tell us.

Similar Messages

  • Highlight text in pdf

    How do I highlight text in pdf in iBooks? Can't seem to do that...

    iBooks is pretty feeble with PDF. There are many other pdf readers available that have many more features. Goodreader, iannotate, etc.

  • Why can't I highlight text in PDFs that I have stored in iBooks?  Can't check definitions or make notes. Does anyone know of a solution to this problem?

    Why can't I highlight text in PDFs that I have stored in iBooks?  Can't check definitions or make notes. Does anyone know of a solution to this problem?

    maybe you should post it here
    https://discussions.apple.com/community/app_store/ibooks

  • How to Extract the Highlight Text in PDF File

    Hi Scripters,
    i want know, how to extract the hightlight text in pdf files for text only format for (*.txt) file extension save.
    regards
    baby

    Hi,
    Okay i'll try do best.
    thanks for your reply.
    Regards
    Baby

  • Is there a way to extract highlighted text from preview

    Hi I'm new to the community but would like to know if there is a way to extract all of the text I have highlighted in a pdf viewed in preview? Basically a quick versioin of cutting and pasting multiple highlighted items at once.

    You might want to look at the source for the icon editors here.
    Mark Yedinak
    "Does anyone know where the love of God goes when the waves turn the minutes to hours?"
    Wreck of the Edmund Fitzgerald - Gordon Lightfoot

  • Highlighting Text in pdf Documents using Preview

    Am using Snow Leopard (10.6.3) with Preview version 5.0.2.
    Tried highlighting text using the instructions in Preview help. No success.
    I click Annotate; chose the Highlight Colour but then appear to be unable to select the text.
    Anyone any ideas?
    Thanks

    Thanks for the hint. I think I've just discovered why I cannot do it. The pdf document I'm trying to highlight is the result of the output from a scanner. Hence it is effectively a "picture" - not text. The only thing that I have been able to do is to choose Annotate and then choose "Add Oval" or whatever and select its size and colour and then position this over the text I wish to highlight.
    Because it is effectively a picture you cannot select text. I tried it on another pdf document that IS text and your solution works a treat.
    Thanks again
    Malcolm

  • Highlighting text in pdf's

    Hi, my first post here so hello all.
    Ok i've a simple question really. Can Oracle text display a pdf document with the chosen search criteria highlighted in the pdf??? I've seen that it can do this with html text but can it actually do the highlighting directly to pdf documents???
    Thanks

    Hi Omar, Thanks for your reply. Are you sure it doesn't support highlighting??? The reason I ask is we had an oracle e-architect present to us who was convince Oracle text in 9i would support this feature??

  • Highlighting text in PDF document

    I am a surgeon and subscribe to lot of medical journals which are now increasingly made available for downloading in PDF format. I am used to highlighting the important text in an article with an ordinary hi-lighter pen to make it easy when I need to go back to that article.
    Is there a way one can highlight the text in a PDF document the way one can highlight it on a paper? Will professional versions of Acrobat solve my problem?
    Sanjay Ghotkar

    A little late for the original post, but for anyone else looking to highlight text in Acrobat Pro 9 and be able to change the highlighter color...
    Accessing the highlighter tool:
    Right-click on the Toolbar.
    Select/check "Comment and Markup." This is the toolbar that contains the Highlight Text tool.
    Changing the highlighter color:
    You can right-click on the highlighted text and go to Properties, etc, but there's a more convenient method.
    While using the Highlight Text tool, turn on the Properties Bar (make it visible)
    Window:  Ctl+E
    Mac:  Cmd+E
    Mouse:  Right-click on the Toolbar and select/check Properties Bar.
    This will give you quick access to your highlighter properties, and it will remember your selected color between uses.
    The Properties Bar is context aware and will change based on the tool you're actively using, so you have access to change your highlight color through it when the Highlight Text tool is selected/in use.

  • How to highlight text in pdf file programmatically

    I am using below mentioned code to highlight text programmaticaly using VB.net But required text is getting selected but doen't get permanently highlighted. Can anybody help me out.
    Dim gAvDoc As
    Acrobat.CAcroAVDoc 
    Dim myhitlist As
    Acrobat.CAcroHiliteList 
    Dim mypdpage As
    Acrobat.CAcroPDPage 
    Dim acroPageView As
    Acrobat.CAcroAVPageView 
    Dim textSelect As
    Acrobat.CAcroPDTextSelect 
    Dim gPDFPath As
    String
    Dim gApp AsAcrobat.AcroApp 
    gPDFPath =
    "C:\Test.pdf"
    gApp = CreateObject("AcroExch.App") 
    gApp.Show()
    gAvDoc = CreateObject("AcroExch.AVDoc") 
    gAvDoc.Open(gPDFPath,
    "")acroPageView = gAvDoc.GetAVPageView()
    acroPageView.GoTo(1)
    myhitlist = CreateObject(
    "AcroExch.HiliteList")myhitlist.Add(50, 10)
    mypdpage = acroPageView.GetPage()
    textSelect = mypdpage.CreateWordHilite(myhitlist)
    gAvDoc.SetTextSelection(textSelect) 
    gAvDoc.ShowTextSelect()
    gAvDoc.Close(True) 

    Patrick on writting saving code also its not hightlighting the text. Text gets selected but it doen't get highlighted with yellow color...
    Dim gAvDoc As
    Acrobat.CAcroAVDoc 
    Dim myhitlist As
    Acrobat.CAcroHiliteList 
    Dim mypdpage As
    Acrobat.CAcroPDPage 
    Dim acroPageView As
    Acrobat.CAcroAVPageView 
    Dim textSelect As
    Acrobat.CAcroPDTextSelect 
    Dim gPDFPath As String 
    Dim gApp As Acrobat.AcroApp 
    Dim mypddoc As Object
    gPDFPath ="C:\Test.pdf"
    'Initialize Acrobat by creating App object
    gApp = CreateObject("AcroExch.App")mypddoc = CreateObject(
    "AcroExch.PDDoc") 
    gApp.Show()
    mypddoc.Open(gPDFPath)
    gAvDoc = CreateObject("AcroExch.AVDoc") 
    gAvDoc = mypddoc.OpenAVDoc("testing")acroPageView = gAvDoc.GetAVPageView()
    acroPageView.GoTo(1)
    myhitlist = CreateObject(
    "AcroExch.HiliteList")myhitlist.Add(50, 10)
    mypdpage = acroPageView.GetPage() 
    textSelect = mypdpage.CreateWordHilite(myhitlist)
    gAvDoc.SetTextSelection(textSelect)
    gAvDoc.ShowTextSelect()
    mypddoc.Save(PDSaveFull, gPDFPath)
    gAvDoc.Close(True)

  • Can't print highlighted text on pdf's in Preview

    I had printing problems with my office printer Canon IR series. the Canon update UFR II V 2.24 fixed this but brought a new problem.
    I can't print annotated pdf's correctly.
    Any highlighted text is covered with a full colour bar with no text visible under it. It just covers the text.
    Is there a fast way of printing with no annotations or of fixing this problem and just print the highlights correctly?!
    Thanks

    Centrolene wrote:
    Any highlighted text is covered with a full colour bar with no text visible under it. It just covers the text.
    Is there a fast way of printing with no annotations or of fixing this problem and just print the highlights correctly?!
    Just tested this to the iR C3380i using the UFR2 v2.24 and can replicate the symptom. I found that if you change the Graphics Mode from UFR2 to Raster, the text will print. To get to this setting, select to print with the UFR2 driver and change to the Quality menu. Then select Quality Setting button to show the Quality Settings pane. Here you will see the Raster Mode setting. Select and OK the change and now you can print the annotated PDF.
    You will probably note that this workaround was the same solution to the Graphics Mode message that appeared with the previous version of the UFR2 driver with the 10.6.7 update. The v2.24 driver stopped this message from appearing but this latest symptom would suggest there is still something not completely right with this new driver, although I seem to remember there being issues with the older driver on earlier versions of 10.6 and the Graphics Mode setting was the only solution.

  • Copy Highlighted Text in Pdf file

    Hi everyone,
    Recently I downloaded the Adobe Reader X (version 10.0). This version allows me to highlight text (in yellow colour). However, If I want to copy a highlighted block of text (for instance to paste into a Word document), I am not able to do this. When I select the highlighted text and click on the right mouse click, it doesn't give me the opportunity to copy this text. Therefore, I was wondering whether I can copy the highlighted text in another way?
    Thanks in advance for a reply.
    Kind regards,
    Sleighon

    kaemus78 wrote:
    It seems you don't understand where the problem is.
    Indeed, I do not understand what the problem is.  When I tested it yesterday (using Reader 11.0.1) I actually took some screenshot, but I didn't think it necessary to post them.  I'll do it now.
    Opening a random PDF from My Documents
    then highlight some text
    apply the Select Tool (using right-click)
    select the same highlighted text
    copy (Ctrl+C) then paste it into an empty Word document
    Ok, the highlighting did not get copied over - is this the problem?

  • Saving highlight text as pdf

    Is there any way to save just highlighted items on safari as a pdf? Just because images are irrelevant to my savings.

    you can disable images through the Develop Menu before saving the pdf.
    if that's not good enough, you can drag the highlighted text to a TextEdit window and save it there as a pdf.

  • Highlight text in pdf file

    Has anyone worked on "Regenerate the PDF appearance stream and draw a box behind the text highlighted.
    3rd point of this link - http://incubator.apache.org/pdfbox/userguide/highlighting.html.
    I have one pdf file and I know the X, Y cordinated and height and width of text to highlight.
    I am using pdfbox utility.and i want to highlight the existing text with yellow color.
    Any help would be highly appreciated.
    Thanks
    Gunjan

    Patrick on writting saving code also its not hightlighting the text. Text gets selected but it doen't get highlighted with yellow color...
    Dim gAvDoc As
    Acrobat.CAcroAVDoc 
    Dim myhitlist As
    Acrobat.CAcroHiliteList 
    Dim mypdpage As
    Acrobat.CAcroPDPage 
    Dim acroPageView As
    Acrobat.CAcroAVPageView 
    Dim textSelect As
    Acrobat.CAcroPDTextSelect 
    Dim gPDFPath As String 
    Dim gApp As Acrobat.AcroApp 
    Dim mypddoc As Object
    gPDFPath ="C:\Test.pdf"
    'Initialize Acrobat by creating App object
    gApp = CreateObject("AcroExch.App")mypddoc = CreateObject(
    "AcroExch.PDDoc") 
    gApp.Show()
    mypddoc.Open(gPDFPath)
    gAvDoc = CreateObject("AcroExch.AVDoc") 
    gAvDoc = mypddoc.OpenAVDoc("testing")acroPageView = gAvDoc.GetAVPageView()
    acroPageView.GoTo(1)
    myhitlist = CreateObject(
    "AcroExch.HiliteList")myhitlist.Add(50, 10)
    mypdpage = acroPageView.GetPage() 
    textSelect = mypdpage.CreateWordHilite(myhitlist)
    gAvDoc.SetTextSelection(textSelect)
    gAvDoc.ShowTextSelect()
    mypddoc.Save(PDSaveFull, gPDFPath)
    gAvDoc.Close(True)

  • Not be able to highlight text in pdf file???

    Hello there,
    There is an issue with Mac I guess I mean I am not able to use highlight tool in phf but pretty sure the file is ok coz I can highlight the same file on the other laptop. Have this happened to you before and how to deal with it?
    Thanks!

    Patrick on writting saving code also its not hightlighting the text. Text gets selected but it doen't get highlighted with yellow color...
    Dim gAvDoc As
    Acrobat.CAcroAVDoc 
    Dim myhitlist As
    Acrobat.CAcroHiliteList 
    Dim mypdpage As
    Acrobat.CAcroPDPage 
    Dim acroPageView As
    Acrobat.CAcroAVPageView 
    Dim textSelect As
    Acrobat.CAcroPDTextSelect 
    Dim gPDFPath As String 
    Dim gApp As Acrobat.AcroApp 
    Dim mypddoc As Object
    gPDFPath ="C:\Test.pdf"
    'Initialize Acrobat by creating App object
    gApp = CreateObject("AcroExch.App")mypddoc = CreateObject(
    "AcroExch.PDDoc") 
    gApp.Show()
    mypddoc.Open(gPDFPath)
    gAvDoc = CreateObject("AcroExch.AVDoc") 
    gAvDoc = mypddoc.OpenAVDoc("testing")acroPageView = gAvDoc.GetAVPageView()
    acroPageView.GoTo(1)
    myhitlist = CreateObject(
    "AcroExch.HiliteList")myhitlist.Add(50, 10)
    mypdpage = acroPageView.GetPage() 
    textSelect = mypdpage.CreateWordHilite(myhitlist)
    gAvDoc.SetTextSelection(textSelect)
    gAvDoc.ShowTextSelect()
    mypddoc.Save(PDSaveFull, gPDFPath)
    gAvDoc.Close(True)

  • Extracting highlighted text WITHOUT additional rubbish

    Hi
    I have Acrobat 8 standard and I wish to extract (either into word or pdf) my highlighted sentences and along with sticky notes comments WITHOUT the date, authors name or subject. I can easily extract this information with all these details. I have looked at the Summarize Comments' options, but it does not let me remove the author, subject or date. All I want is the comments printed in a list format nothing else.
    Is this possible?
    Cheers

    You can make your one PDF report or placing the comments context in the JavaScirpt console and include only the annotation properties that you want.

Maybe you are looking for

  • Quicken, Word and exel won't open

    I have system 10.6.8 andhavebeen usingword, exelandquicken with no problems until today. All of a sudden they will not launch. I tried to reinstall office but the launcher on the DVD won't launch. ere is the message Iget Process:         LaunchCFMApp

  • No local help files for Photoshop CS6 extended

    Hi I wish to use local help files for Photoshop CS6 but only online support is available. Local files are not listed under the Adobe Help preferences. The option to search only local rather than online help is greyed out. I found and downloaded a PDF

  • Why is mac mail and ical always asking for my login keychain?

    This problem is driving me crazy!  Every time I close my Mac and then reopen it, I get windows saying that Mail needs my login keychain, and the same for iCal and sys admin.  I've done the KeyChain first aid and nothing works.  Help!

  • !Charging is not supported with this device! When using original charger.

    My iPhone4 suddenly won't take a charge. Because I carry it in my pocket, I suspected there was a lack of conductivity. I used air to clean the slot and a small plastic pick. Some dust bunnies came out of the slot and I plugged it in to charge. I got

  • Authentication issue about java plug-in

    Hi all: Since it is a urgent issue and I really need some help,I post the same problem again .Here is my problem description: I have a website hosted on a Microsoft IIS web server,the web server name is win2003stdbase1.Because of some custom needs,th