How to crop permanently in Acrobat?

24

9

After cropping anything by using the crop tool in Adobe Acrobat, how do I ensure that the cropped area is fixed and can't be seen even when I increase the crop margin?

For example: how would I crop the following example (image and text) to ensure the image and the part "I don't want to include this text" are really removed, and not hidden somewhere in the result?

enter image description here

Adobe Reader's crop tool only seems to hide the cropped part; it does not really remove it:

Reader's Crop Tool

metal gear solid

Posted 2010-04-05T12:49:19.327

Reputation: 7 796

1Could you post a screenshot or anything to further explain what you're trying to resize and where you're watching it in? – Ivo Flipse – 2010-04-05T12:51:56.363

Answers

15

Using Adobe Acrobat X

You can do this with a Preflight fixup. It is annoying to set up, but pretty easy to use after that.

  1. Tools Print Production Preflight Select single fixups Options Create New Preflight Fixup
  2. Name Permanent crop
  3. Fixup category Pages
  4. Type of fixup Set page geometry boxes
  5. Source MediaBox
  6. Destination Relative to TrimBox (meaning "use the dimensions of the TrimBox").
  7. OK
  8. Fix

How to REALLY crop a PDF

Steven Penny

Posted 2010-04-05T12:49:19.327

Reputation: 7 294

2This is the best answer! Works. If you are looking for setting to crop box just replace the destination to be CropBox. Keep all values at zero because it is a relative setup. – emem – 2015-06-25T09:11:51.037

The linked tutorial page is provides much more details and is really helpful. Thank you. – Xin – 2016-04-18T20:03:43.603

It cost me a while and some frustration before I discovered this: the numbers you enter should be NEGATIVE. So for example, if you want to remove the left 2 inches of the page, you should enter Left: "-2" (Unit: inch). (This was what worked for me; YMMV.) – Kenny LJ – 2018-02-02T02:34:06.767

Also, in addition to the above steps, you also have to Remove hidden information (see some of the answers below). Otherwise, there will still be hidden text/images in the cropped-out areas, as you can see if you click on "Edit PDF". – Kenny LJ – 2018-02-02T02:36:54.757

For Acrobat DC (latest version of Acrobat), it's (5) Pagebox: "MediaBox"; and (6) Dimension based on: "Relative to TrimBox". – Kenny LJ – 2018-02-02T02:52:44.390

12

In Acrobat DC,

Type "redact" in the Search Tools... field at the top of the right sidebar, then choose "Remove Hidden Information."

Type 'Redact' in Search Tools... field

In Acrobat X,

  • Tools
    • Protection

      • Hidden Information

        • Remove Hidden Information

It works with me...


If the purpose is just to hide the information that was cropped, this works. But if you want to actually make the page smaller, this doesn't do that. The full document is still the original size, with the cropped portions turned white.

Using Adobe Acrobat 9,

  1. Create a temporary folder, place the pdf to be cropped there
  2. Crop the file using Adobe Acrobat
  3. Open the Adobe cropped pdf file
  4. Select File -> Export -> Image -> PNG
  5. Click "Save"
  6. Go into the temporary folder, select all the PNG files, right click select "Combine supported files in Acrobat"
  7. Click "Combine files"
  8. Save the newly combined file. This file has is permanently cropped and is of the same quality as the original

ssa

Posted 2010-04-05T12:49:19.327

Reputation: 129

As mentioned, the Tool rasterizes my vector graphics. How do I prevent the vectors from getting rasterized ? – harveyslash – 2014-08-20T15:08:01.863

8This tool rasterizes my vector graphics in Adobe Acrobat X. Not useful for me... – krlmlr – 2012-05-29T10:04:46.847

Excellent answer, it works for me. The problem is that after I do it, my file is ten times bigger! What happened!? – Limited Atonement – 2012-11-16T17:34:22.083

Ha, but then, I "save as reduced size pdf" and the size is now .2 times the original size. For clarity, the original (from scanner) was 2.01M, the sanitized was 23.15M, and the sanitized, reduced is .44M. ::wags head:: – Limited Atonement – 2012-11-16T17:36:02.670

5

The simplest way is to print as PDF (again) the cropped document. Since the crop tool of Acrobat just hides the area from printing, the resulting new PDF document will not show the hidden areas anymore.

In the latest version of Acrobat (at least with v10) printing to pdf from pdf is "not supported". However, the earlier suggestion to remove hidden information and objects using the "protection" area of the tool box was helpful. Specifically, it removed the items I was trying to crop out. However, I have yet to find a way to change page size in a permanent way using the latest version of Acrobat Pro.

marco

Posted 2010-04-05T12:49:19.327

Reputation: 59

1I was able to print to another PDF today for a cropped page in version 10.1.0, and in the print properties I was able to change the pagesize. – Lance Roberts – 2011-07-25T17:32:34.000

4

Go to Document → Examine Document.

There you can press "remove" to delete the hidden information.

Hua

Posted 2010-04-05T12:49:19.327

Reputation: 99

Note that in Acrobat 8, this does remove entire elements but not image data that is outside the cropped area. It seems to work more as you’d expect in Acrobat 9 and later. Always verify! – Nicholas Riley – 2014-03-25T00:13:46.830

2

Adobe pdf's retain pieces of information often when you don't want it too... there was even a case recently where the military where blacking out text but in a second layer, which once removed made a lot of classified information readable.

Its hard to tell what adobe keeps and doesn't, if there is information you don't want in the pdf I think your best bet is not to put it there in the first place... if it is a picture, copy it out of adobe, crop it, and paste it back into a brand new pdf.

I'm not entirely sure that any of the listed tools will actually crop it properly like you want.

Jarvin

Posted 2010-04-05T12:49:19.327

Reputation: 6 712

Do you have other Adobe tools? I had this problem before when preparing a phone bill for someone else. I only wanted to generate the pieces pertinent to that person. I ended up doing it offline (as Dan suggested) and then creating another, new PDF file. I think you can even crop using Windows Paint... – nicorellius – 2010-04-06T18:09:16.643

@nic and Dan: for some testing in another question, the OP wanted to crop text (and maybe some graphics), while still being able to select (and copy) the remaining non-cropped text... (Difficult, if not impossible.) – Arjan – 2010-04-06T20:23:06.947

1

I found this AppleScript on another site Mac Production Artist Tips and Scripts :

tell application "Adobe Acrobat Pro"
  tell active doc
    repeat with i from 1 to count of pages
      tell page i
        set cbox to crop box
        set media box to cbox
      end tell
    end repeat
  end tell
end tell

Hope that helps. It's crazy that there's no easily accessible method to ACTUALLY crop pages in Acrobat.

I needed to modify it because I needed to crop to the trim box thus:

tell application "Adobe Acrobat Pro"
  tell active doc
    repeat with i from 1 to count of pages
      tell page i
        set tbox to trim box
        set media box to tbox
      end tell
    end repeat
  end tell
end tell

Lorin Rivers

Posted 2010-04-05T12:49:19.327

Reputation: 119

0

I built a tool that handles basic redaction free PDF Redaction tool. When you upload the document, it gives you the ability to draw redaction marks and on the way out flattens it completely removing any embedded information and sanitizes metadata. You could use this to crop the page, just be ware that this will rasterize any vector graphics you have on the page.

levinology

Posted 2010-04-05T12:49:19.327

Reputation: 111

Thanks for the heads up. In OP's case it looks like the goal is to crop within a page size. To achieve that effect, you could draw large white strokes to white out the area, however, this will not actually change the size of the page. It will also fully rasterize your document, so if you have vector graphics this won't specifically work. – levinology – 2019-01-31T08:25:06.397

-2

I have had some success cropping and then printing to Adobe PDF in my printer selection. This is an option that I believe comes with a full version of Acrobat. There are many other programs and downloads that can provide such a "printer".

user34496

Posted 2010-04-05T12:49:19.327

Reputation: