Cropping out 3-hole punch images in Acrobat 6.0 Pro

Ask a Question related to Adobe Acrobat Windows, Design and Development.

  1. #1

    Default Cropping out 3-hole punch images in Acrobat 6.0 Pro

    I'm having a problem with margins shifting to the left after I crop out 3-hole punch images on either side of the page. I don't quite understand how the crop margins work. I tried changing the left margin to 1" within the Crop Pages dialog box but it shifts the remaining page image off the page to the left. Can anyone tell me what I'm doing wrong?
    Loretta C Guest

  2. Similar Questions and Discussions

    1. Resizing / Cropping images in flash
      Sorry in advance if this isn't the correct forum for this posting. I am working on a website that allows users to upload images to a server and I...
    2. Acrobat 5.x crash during cropping
      Ah - so you guessed I'm tired ;-) OK - so what OS 9.x are you running? Hope it's not the dread 9.0X? If so then you need to jump to 9.1 or...
    3. Cropping Images Help Needed
      Is there anyway to crop .jpg images so that they are all of the same width and height? I use the following math to calculate the correct aspect...
    4. cropping images in FreeHand 11
      images cropped with the crop tool in FreeHand 11.0.01 (Windows 2000) appear at their original size after I close and open the document again. I...
    5. Cropping images in PS7
      1) Make a circular selection 2) Image->Crop. 3) Select->Inverse 4) delete 5) deselect
  3. #2

    Default Re: Cropping out 3-hole punch images in Acrobat 6.0 Pro



    Can anyone tell me what I'm doing wrong?




    It sounds like you're not doing anything wrong, but that you are expecting the tool to behave differently than it does. The "Crop" tool is removing an inch from the left hand side of your PDF, so the remaining PDF is 1 inch less wide, so the margin has 'shifted' to the left; it sounds more as if you were hoping to "erase" the images of the 3 hole punch, which is not what the crop tool does.
    Fr._Watson@adobeforums.com Guest

  4. #3

    Default Re: Cropping out 3-hole punch images in Acrobat 6.0 Pro

    This is what I do

    1. Place a white background, no border, no text, no icon button field over the hole punch images, call all the fields the same name, then duplicate them over all pages.

    2. Paper capture the document

    3. Delete the 'White' buttons

    The punch holes have gone!

    It works because the paper capture process takes a new 'snapshot' image of the page as it appears on screen at the start of the process, so anything hidden is ignored.
    Ian_Mellors@adobeforums.com Guest

  5. #4

    Default Re: Cropping out 3-hole punch images in Acrobat 6.0 Pro

    Or draw a read only text box over the offending holes and fill with white.
    Larry_Tilley@adobeforums.com Guest

  6. #5

    Default Re: Cropping out 3-hole punch images in Acrobat 6.0 Pro

    Both Larry's & Ian's suggestions worked ... now I have one more question. Is there a way to do this easily on multiple pages? Usually when I'm scanning these pages, I'm working with about 30 pages.
    Loretta C Guest

  7. #6

    Default Re: Cropping out 3-hole punch images in Acrobat 6.0 Pro

    One offending page at a time.
    Larry_Tilley@adobeforums.com Guest

  8. #7

    Default Re: Cropping out 3-hole punch images in Acrobat 6.0 Pro

    "Place a white background, no border, no text, no icon button field over the hole punch images, call all the fields the same name, then duplicate them over all pages."

    Duplicating the 'White' button over all pages can be tricky if you have a double sided document. What I do is scan all the odd and even pages seperately, process them, then combine the two pdfs using javascript. If you are using AA5 the following sould do it ..

    crete a txt file in your My Documents\Adobe\Acrobat\javascripts folder called merge.js, copy the following into this file and save. Restart Acrobat.

    function merge() {

    var evenFile = app.response({ cQuestion: "Please enter the \"Even File\" (e.g. C:\\My Documents\\Even.pdf). ", cTitle:
    "Even File"});
    var oddPages = this.numPages

    try {
    for (i=0; i<oddPages; i++) { this.insertPages((i*2),evenFile,i); } } catch(e) { app.alert(e); } }

    function reversemerge() {

    var evenFile = app.response({ cQuestion: "Please enter the \"Even File\" (e.g. C:\\My Documents\\Even.pdf). ", cTitle:
    "Even File"});
    var oddPages = this.numPages

    try {
    for (i=0; i<oddPages; i++) { this.insertPages((i*2),evenFile,(oddPages-i-1)); } } catch(e) { app.alert(e); } }

    app.addSubMenu({ cName: "Extras", cParent: "Document", nPos: 0});
    app.addMenuItem({ cName: "Merge odd and even pages...", cParent: "Extras",
    cExec: "merge();"});
    app.addMenuItem({ cName: "Reverse merge odd and even pages...", cParent: "Extras",
    cExec: "reversemerge();"});

    You get a new menu under 'Document' called 'Extras' with two options to merge pdfs.
    Ian_Mellors@adobeforums.com Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139