Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
4

Cropping to the trim box!!

New Here ,
Mar 06, 2018 Mar 06, 2018

How, in 2018, can it still not be possible to crop a pdf by simply choosing the box (trim, bleed, crop) that you want to crop to? This seems like the most useful and fundamental task that you could perform in Acrobat, but as far as I can tell, there is still no way to simply crop to the trim box. And don't tell me to Remove White Margins because that doesn't work when there are crop marks in those margins.

Sorry if I sound angry, but really, I've been trying to get the answer to this for ten years.

Here's where somebody can embarrass me and answer the question that I bet thousands of other people also have, so go for it.

Thanks,

RV

TOPICS
Edit and convert PDFs
14.4K
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
1 ACCEPTED SOLUTION
Community Expert ,
Mar 07, 2018 Mar 07, 2018

Good catch! Yes, there is a preflight fixup to do just that:

2018-03-07_14-43-08.png

View solution in original post

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Mar 07, 2018 Mar 07, 2018

I don't think this is a very common problem - at least based on my experience here in the Adobe Forums, but also on the old AcrobatUsers.com site. If you find a feature that is missing from Acrobat, you can always post a new feature request: Feature Request/Bug Report Form or jump straight to the Acrobat section: Acrobat for Windows and Mac: Top (1232 ideas) – Share your feedback on Acrobat DC

You can however accomplish what you want with a few lines of JavaScript, which you can then wrap in e.g. a custom command (see here Create Custom Commands in Adobe Acrobat DC Pro - KHKonsulting LLC )

for (var i=0; i<this.numPages; i++) {

    var ar = this.getPageBox("Trim", i);

    this.setPageBoxes("Crop", i, i, ar);

}

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Beginner ,
Mar 15, 2022 Mar 15, 2022

That is beautiful, thank you very much for sharing it Karl. Worked like a charm!

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Jul 19, 2023 Jul 19, 2023

Hi folks,

 

since three days I am desperately trying to cut DIN A5 pages (landscape) to DIN A6 pages using Acrobat XI Pro in order to be able to create a brochure using PdfBooklet. This is because PdfBooklet wants “real” DIN A6 pages and not “pseudo” DIN A6 pages, which are in fact (still) DIN A5 pages, because Adobe considers it “useful” to just hide the “cut away” part and not actually cut it away.

 

I tried creating a custom command (“Set CropBox to TrimBox”) via JavaScript, or a preflight profile of the same name – nothing worked, or I couldn’t get it right.

 

Since I see from this (albeit outdated) thread that there is such a preflight profile since Acrobat Pro DC 2015, would it be possible to post it here so that I can at least import it into my outdated preflight (Acrobat XI Pro)? If so, my very best thanks in advance.

 

Ransom77

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
Mar 07, 2018 Mar 07, 2018

I think I saw a preflight profile that does exactly that.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Mar 07, 2018 Mar 07, 2018

Good catch! Yes, there is a preflight fixup to do just that:

2018-03-07_14-43-08.png

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Mar 07, 2018 Mar 07, 2018

Thank you to both of you guys for remembering and finding that obscure profile! If I can just remember it, it will be a lifesaver.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Jun 06, 2019 Jun 06, 2019

Hello,

Is there any way to batch this function.  I have folders of PDFs with various trim sizes.  I use to use an application/droplet on a Mac that would automatically crop the PDF to trim called PDF Trim but it no longer works with the new MacOS.

Morgan

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Guide ,
Jun 07, 2019 Jun 07, 2019

Yes, you can use the Action Wizard in Acrobat DC to create an action that you can apply to a file, or a folder of files.

Tools> Action Wizard> New Action> Document Processing> Specify settings> select the Preflight profile "Set crop box to trim box".

Note, in order for the Action wizard to see the profile, you might first need to export the profile to your desktop, then import it (use the little fly out menu). Here is a link to better instructions:

Adobe DC Action Wizard and Preflight page scaling

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Jun 14, 2019 Jun 14, 2019

Thanks Luke for the info, we got it to work.

Morgan

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Guide ,
Jun 14, 2019 Jun 14, 2019

Glad you got it to work. Using the Action Wizard is a bit tricky the first few times you use it, but it's a useful tool.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Beginner ,
Nov 11, 2021 Nov 11, 2021

Thanks guys, but unfortunately, in 2021 I couldn't find this command anymore. However, the reply above by Karl Heinz Kremer helped me a lot. I followed his link, created a JavaScript button as described there, and pasted the code into it. This works perfectly now.

 

Screenshot 2021-11-11 173958.png

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Mar 15, 2022 Mar 15, 2022

It's still there, you need to select Acrobat Pro 2015 profiles and the blue wrench icon.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
May 09, 2023 May 09, 2023

Thank you Karl

 

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Jul 20, 2023 Jul 20, 2023

Since I’m afraid that my yesterday’s post got lost due to an (unintentional) positioning, I’m now catching up with it at the (hopefully) right place.

Hi folks,

since three days I am desperately trying to cut DIN A5 pages (landscape) to DIN A6 pages using Acrobat XI Pro in order to be able to create a brochure using PdfBooklet. This is because PdfBooklet wants “real” DIN A6 pages and not “pseudo” DIN A6 pages, which are in fact (still) DIN A5 pages, because Adobe considers it “useful” to just hide the “cut away” part and not actually cut it away.

I tried creating a custom command (“Set CropBox to TrimBox”) via JavaScript, or a preflight profile of the same name – nothing worked, or I couldn’t get it right.

Since I see from this (albeit outdated) thread that there is such a preflight profile since Acrobat Pro DC 2015, would it be possible to post it here so that I can at least import it into my outdated preflight (Acrobat XI Pro)? If so, my very best thanks in advance.

Ransom77

 
 

 

 

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Jul 24, 2023 Jul 24, 2023

Hi folks,

So you can understand my problem. This is what a booklet with PdfBooklet looks like when real DIN A6 pages are used:

 

right.jpg

 

This is what a booklet with PdfBooklet looks like when “fake” DIN A6 page are used – i.e. DIN A6 pages which were achieved by cutting a DIN A5 page (landscape) into right and left halves:

 

false.jpg

 

I have tried so many things: the “Trim and shift ...” module of Quite Imposing Plus, the “Resize Pages .... ” as well as “Crop to TrimBox” tool from abracadabraTools 2020, Remove hidden information, and also the attempts mentioned in the previous post (custom command, preflight profile) – nothing has helped, it is not possible to create a completely normal booklet with PdfBooklet, because any invisible (not removed) information of the PDF messes up the otherwise perfectly working PdfBooklet (based on Python).

I join the thread creator (2018) or ask for help here: Is it not possible, using Adobe Acrobat (XI Pro), to simply cut a page apart, so that one gets, for example, two real DIN A6 pages from a real (resp. scanned) DIN A5 page (landscape)?

I don’t understand why Adobe makes such a simple (and obvious) task so incredibly difficult (resp. impossible for me). I have no problems with Adobe implementing all the special cases (Art Box, Bleed Box, Trim Box, MediaBox, Crop Box and BBox) to provide professional users with everything they need for their work, but it should also be possible to implement such a simple task, as you still know it from tinkering as a child, in a straightforward way.

Greetings,
Ransom77

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Oct 12, 2023 Oct 12, 2023
LATEST

Why would Adobe remove an Acrobat function that worked ?
I like the new Acrobat feature: "Don't open the application when I double click a PFD file feature, because there are so many  processes running."

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines