How do I OCR only one part of a long document?

OCR with a pdf file is usually very simple.  Not here.  It is a legal document (PDF) with line numbers on the left and vertical lines on both sides of the text I want to OCR.  If the OCR includes line numbers, I'll have to spend hours to remove them. The left also include the name of a law firm and low a the title of the document, that I blacked out.  (Line numbering is quite common on legal stationery pre-printed within days to write, most courts have got beyond the way things have been done at the time, but it is obvious.  Obviously makes OCR a challenge!)  In earlier versions of Acrobat, I used a tool called simple gum with a (long since disappeared) British firm that carefully erased what from a pdf file, as all the stuff I want to get rid of here, before you run the OCR and save the document in Word format. This tool does not work with Acrobat 9 and the version that I am now using, Acrobat X.  Oh, and just retype the text is not an option for me.

There MUST be a way to do this!  Any suggestions?

Sample page.jpg

Acrobat 8 by XI (at least the Pro versions) provide the redaction tool.

Used correctly this tool completely removes the selected PDF page content.

(so it's good to read the help for this application).

Be well...

Tags: Acrobat

Similar Questions

  • How can I print only the part selected a page?

    When I highlite prints part of the entire page. How can I print only the part selected page?

    Try:

    Highlite your text

    Press CTRL + P to start the print menu

    "All" is selected by default in the scope . Change it by selecting 'selection ', and then click OK.

    This example shows only the text that is selected. Microsoft® Security MVP, 2004-2009

  • How can I keep only one instance of the javafx application at the same time?

    Hello
    How can I keep only one instance of the javafx application at the same time?
    Let not the user run the javafx application is running on your PC.

    Hello. This program does what you want. You can probably find a better solution.

    import javafx.application.Application;
    import javafx.event.ActionEvent;
    import javafx.event.EventHandler;
    import javafx.scene.Scene;
    import javafx.scene.control.Button;
    import javafx.scene.layout.StackPane;
    import javafx.stage.Stage;
    
    import java.io.BufferedReader;
    import java.io.File;
    import java.io.FileReader;
    import java.io.FileNotFoundException;
    import java.io.*;
    import java.nio.channels.FileLock;
    import javafx.application.Platform;
    import javafx.stage.WindowEvent;
    
    public class Simpleapp extends Application {
    
        public static void main(String[] args) {
    
            launch(args);
        }
    
        @Override
        public void start(Stage primaryStage) throws Exception {
    
            final File file = new File("flag");
            final RandomAccessFile randomAccessFile = new RandomAccessFile(file, "rw");
            final FileLock fileLock = randomAccessFile.getChannel().tryLock();
    
            System.out.print(fileLock == null);
            if (fileLock == null) {
                Platform.exit();
            }
    
            primaryStage.setTitle("Hello World!");
            Button btn = new Button();
            btn.setText("Say 'Hello World'");
    
            StackPane root = new StackPane();
            root.getChildren().add(btn);
            primaryStage.setScene(new Scene(root, 300, 250));
    
            primaryStage.setOnCloseRequest(new EventHandler() {
    
                @Override
                public void handle(WindowEvent arg0) {
                    try {
                        fileLock.release();
                        randomAccessFile.close();
                        System.out.println("Closing");
                    } catch (Exception ex) {
                        System.out.print(ex.getMessage());
                    }
    
                }
            });
    
            primaryStage.show();
        }
    }
    
  • How can I printscreen, only one of the two screens I use now?

    I work with two screens and when I try to printscreen the computer takes the two images on the screen and print, making the really small screen images to the point that they are almost impossible to read.
    I want a pint only one of the two screens.

    Hello

    Try the capture tool:

    How to use the Windows Vista Snipping Tool
    http://www.bleepingcomputer.com/tutorials/tutorial135.html

    Use capture tool to capture screenshots
    http://windowshelp.Microsoft.com/Windows/en-us/help/1337cdba-52a2-4704-ad4d-2d7bace605b41033.mspx

    How to take screenshot with the capture - simple tool
    http://Lifehacker.com/228885/Windows-Vista-tip--take-screenshots-with-the-Snipping-Tool

    Cup - best tool screenshot screenshot
    http://desktoppub.about.com/od/screencaptures/IG/Snipping-Tool/Snipping-Tool.--0k.htm
    http://graphicssoft.about.com/b/2009/05/15/using-the-Snipping-Tool-in-Windows-Vista.htm

    How to take a screenshot with the tool captures of Vista
    http://www.WikiHow.com/take-a-screenshot-with-the-Snipping-Tool-in-Vista

    Use the Windows Vista Snipping Tool to take screenshots
    http://www.tips4pc.com/articles/Windows%20Vista/use_the_windows_vista_snipping_t.htm

    I hope this helps.
    Rob - bicycle - Mark Twain said it is good.

  • How can I display only a part of the screen?

    My screen contains a title and simple 5 LayoutManagers.

    (but it's not complicated, we could simplify to only three LayoutManagers: upper, middle and lower).

    I want only one of them to be scrollable (one named "_fieldManagerMiddle"), since it will contain long text, others must stay fix, since they contain graphics and Menu. In particular, the last Director downstairs (_fieldManagerBottom) must remain where it is.

    (1) my problem is:

    When the_fieldManagerMiddle contains a long text (by clicking a button in the menu of the _fieldManagerMenu above) he is floating, but it means that the entire screen becomes scrollable.

    I tried to add Manager.NO_VERTICAL_SCROLL to other managers, but it did not help.

    It's pretty simple.

    How can I get that only the mid-level becomes scrolls and the rest does not move?

    It's code; What is missing? What's wrong?

      super();
        setTitle(new LabelField("results"));
    
            /* add the five layout managers */
        _fieldManagerTop = new HorizontalFieldManager();
        _fieldManagerMenu = new HorizontalFieldManager();
        _fieldManagerMiddle =  new VerticalFieldManager(Manager.VERTICAL_SCROLL |
                    Manager.VERTICAL_SCROLLBAR){
            protected void sublayout( int maxWidth, int maxHeight )
            {
                int remainingplace = Display.getHeight()-_fieldManagerTop.getPreferredHeight() -_fieldManagerMenu.getPreferredHeight() - _fieldManagerBottom.getPreferredHeight() - title.getPreferredHeight() ;
                super.sublayout( Display.getWidth(), remainingplace);
                setExtent( Display.getWidth(), remainingplace);
                }
            };
            _fieldManagerBottom = new HorizontalFieldManager(HorizontalFieldManager.FIELD_RIGHT)
            {
                public void paint(Graphics graphics)
                {
                    graphics.setBackgroundColor(Color.NAVY);
                    graphics.setColor(Color.WHITE); // foreground color
                    graphics.clear();
                    super.paint(graphics);
                }
                protected void sublayout( int maxWidth, int maxHeight )
                {
                    int displayWidth = Display.getWidth();
                    int displayHeight = 25;
                    super.sublayout( displayWidth, displayHeight);
                    setExtent( displayWidth, displayHeight);
                }
            };
    

    I would be very grateful if you could help me with that!

    (2) I also have a second question (but less important): the Middle Manager has to take all the remaining space of the screen, so I subtracted the other Manager height and the height of this Manager at the result of this subtraction:

    int remainingplace = Display.getHeight()-_fieldManagerTop.getPreferredHeight() -_fieldManagerMenu.getPreferredHeight() - _fieldManagerBottom.getPreferredHeight() - title.getPreferredHeight() ;
                super.sublayout( Display.getWidth(), remainingplace);
                setExtent( Display.getWidth(), remainingplace);
    

    This seems not to be correct: if I, the last Director downstairs doesn't have enough room.

    Any ideas?

    The best way to do it, is to use the screen, which is already divided into 3 sections, superior, medium and low, of which only half is scrolling.

    The top depends on what you add to setTitle (who may be a Manager), the background is determined by what you add using setStatus (even once, you can add a handler), and just use the normal add to add the scrolling of the Middle component.

  • How can I select only a part of a page to analyze instead of having to scan the entire page?

    On my old Epson scanner I could do a preview and select only a position from one page to analyze.  In the garden of Image with my MX 6320, the only option is to scan the entire page.

    How can I select what I want scan before scanning?

    Thank you

    Allen

    Hello

    Mac 10.9.4.  I called Canon and the Lady walked me through what I need to know.  She told me to get rid completely of my kindergarten picture on my Mac, then in the utility scan select Scan speed and now I get a preview window where I can choose the portion I want scanned.

    Thank you

    Allen

  • How can I remove only one instance shared a member of Hyperion Planning

    Hello

    Can someone tell me how I can load the Hyperion Planning IKM to remove only specific instance of a shared member of Hyperion Planning? I tried specifying the shared member, the parent of the shared instance, "Shared" as the type of data storage, and 'Level 0 Delete' operation. Instead of delete just the shared under the specified parent instance, however, the IKM deleted member base, which in turn deleted all instances shared member and member data (thing lucky I work in a development environment!). At one point, I thought I had things works as I wanted to, but now I think I must have confused.

    Is anyone know definitively that a specific instance of a shared member can be removed the planning and, if so, exactly how do?

    Thank you very much.

    Thank you, well it's good news that it's working now.

    See you soon

    John
    http://John-Goodwin.blogspot.com/

  • How can I display only a part of the scale in the waveform graph

    This is the first time I try to use the waveform graph, since now, I used the table of waveform.
    The reason why I moved to the chart, it's that I need cursors.

    I have 2 problem

    the first: in the diagram, the graph moves when I add a new data and the scale of the x-axis stay the same size, in the right size I always saw the new data. How can I do that with waveform graph?

    Second: How do I say Labview to the day I click on the graph, I need that because when move graphic I lose the day, and to make I need to zoom out, I drag the imprecateurs.

    All this must be done programmatically. The LabVIEW graphic accepts tabular data, not only as the table and the graph doesn't have the ability to retain the previous points, like the story of a graph. You will need to retain previous values and then continually update the graph with the old and new values to get a shift register "chart as behavior. Cursors should be written programmatically re of each iteration, since you rewrite the entire graph.

  • How can I copy only a part of a file and move it to another folder

    I have more 100 000 music files in a folder on my external hard drive. I started to copy them to another disk to save the backup, but after 8 hours of copy and before the end of the copy, the computer stops and the copy process has been interrupted.  How could I go to continue the copy process without having to start from the beginning?

    You can hold down the key left mouse and wide from bottom right to top left, or vice versa, to highlight.

    Other ways include:

    To highlight all - point peak one and Ctrl + A will highlight all.

    To highlight a section - highlight the first one you want. Scroll to last and click while holding down the SHIFT key.

    To highlight several messages that affect - hold down the CTRL key while you click each message in order to highlight.

  • How can I burn only a part chosen project on a DVD?

    Afternoon everyone,

    We have uploaded a number of clips of our HDV that we wanted to use to make a short film (a value of 1 hour of clips will eventually be a movie about half of this length). After that, we decided to do a "Preview" of 2 minutes with a value of mixed clips (5 in total) with music... I made a new copy of the entire project and then deleted everything that we did not want to go to the original collection of 1 hours of clips downloaded so that the project has left just two minutes of clips.

    When we tried to burn this DVD he seemed to try to do the entire project, including a whole bunch of nothing where I deleted everything in 2 minutes.

    Could you please tell me how select only 2 minutes to a value of 5 clips and audio so that I can burn only few DVD and also upload to YouTube.

    Thank you 1 million of a disputed novice who cannot find all the instructions to achieve...

    JON

    Jon,

    Looks like you have done, just as it should, the Save_As and delete everything that is not desired. If you did the removal of the chronology, nothing of the old project, which should be included there. A DVD is transcoded and burned the chronology. If the assets are not there, they will be not included in the DVD, even if you don't have whatever it is deleted from the project Panel.

    Tell us about the Clips now on your Timeline. Also, you can check the timeline, by hitting the \ (backslash key) and looking towards the end of the timeline. You got any "orphaned"? Check all video tracks, even if you have to scroll to see them all. Is the duration of the timeline (displayed in the program monitor) corresponds to what you think it should? If this isn't the case, then you probably orphans, you missed the deletion.

    Good luck

    Hunt

  • How can I remove only a part of my "sent" folder?

    for example only the older items 50

    Use the methods of standard selection on the computer.
    Click on the first message you want to delete. Scroll to the last message you want to delete and press and hold the SHIFT key while clicking on this message. Now that block messages are selected. Press the delete of your choice.

    You can click on the header labeled DATE sort by date. By clicking on the DATE, a second time will reverse the sort order. This could make it easier locate the messages you want to delete.

  • How to make a only one log-in to snapfish & eprint

    I created after installation of my HP Photosmart 6520 snapfish as the HP setup completed.  All right.  Then, as suggested by the installation process of HP, I proceeded to learn how to set up ePrint.  I entered my email and a password.  He said that the email was already in use (Duh!).  So I tried again and enter a new password.  Bottom line, he said the solution was to create a unique login for Snapfish and ePrint.  I've seen it referenced in response to a similar question from the forum.  The person was having the same problem and the respondent said they would create a single account for the 2 processes.  ANY HELP WOULD BE APPRECIATED.

    Hello

    You set up the account on eprintcenter.com or HPconnected.com?

    Looks like you may have an existing snapfish account, and he wants this password to create the account. If you don't remember the password for snapfish, try to make a password to snapfish.com. Once you have instead of making the eprint account just log in with the same email and password used for snapfish and he needs to create a unified account.

  • How can I print only one item highlighted on a page?

    If I highlight a paragraph on a page how can I print just a paragraph?

    Hello
    Make a right-click paragraph highlghted. Open Notepad or wordpad and right click, select Paste to place the paragraph in a new document. Save the document and then print it.

    Best regards
    ERICO

  • I lost my settings how to analyze moore only one page at a time?

    I lost my settings in acrobat reader, how do I scan multiple pages at once?

    Hi brianm42726067,

    Make sure that you scan using Acrobat application scan documents in PDF, Adobe Acrobat format. You won't get this parameter to free Acrobat Reader DC.

    Kind regards
    Nicos

  • How to remove 1 only one copy of a disc hotbackup RMan?

    Hello
    I find the function "backup copies" of RMan a lot because I can write a backup to the local disk and a network drive at the same time.

    Is there a way to remove only 1 of the whileing of backups using the syntax as "sysdate-14" drive, so only 2 weeks of backups exist on my local drive while all backups will remain on my network?

    Thank you!

    Configure the backup copies of data file for device type to 2 disc;
    Configure archivelog backup copies of disc is peripheral to 2;

    delete noprompt obsolete recovery force x days window device type disk;

    RMAN is not a rename command.

Maybe you are looking for

  • I downloaded the latest version of firefox, but I'm macOS10.4.11. It can be restored?

    Hello, I downloaded the latest version of firefox and then discovered that my system does not support. I'm on macOS10.4.11 and I would like to revert to the version that was working this morning. I realize that I win the asshole of the day, but can y

  • Satellite P10-804, liquid machine down, all of a sudden

    Hi all! I bought my laptop 2 years ago and recently concluded that the laptop shut down suddenly without notice... no not because of the virus because there is no about this symtom. I don't know if the laptop is too hot or what reason caused the clos

  • error 80070643, cannot install security essentials

    I'm trying to install security essentials The operation will fail with error code 80070643 I tried many patches assumed for this problem as shown on the boards I run the microsoft Fixit utility, which said it corrects a problem with the updated engin

  • AnyConnect macosx tls1.2 support

    Does anyone know what version of macOSX AnyConnect supports the tls1.2? I've gleamed of the post here this AnyConnect 4.0.00048 and higher supports TLS1.2 but am assuming it as AnyConnect-Win. Please correct my thinking... If I'm wrong! Thank you Fra

  • DVD/RW drive has a corrupt... driver error 39

    DVD/RW drive has a corrupt... driver error 39 How to replace this driver Device Manager indicates that the driver is the best available The device is Optiarc DVD +-RW AD - 5560 a ATA