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

Eliminar paginas vacías en forma masiva en ADOBE

New Here ,
Dec 17, 2025 Dec 17, 2025

Hola a todos, derrepente alguien sabe como eliminar masivamente en archivos grandes paginas vacias en el adobe acrobat.

Sucede que estoy trabajando archivos muy pesados y encima que se cuelga a cada rato tengo que eliminar como 10 mil paginas vacías por archivo por cada archivo.

71
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
Adobe Employee ,
Dec 19, 2025 Dec 19, 2025
LATEST

Hello @jenner_0217

 

I hope you are doing well, and thank you for reaching out.

 

Could you please share more details? Do you want to delete blank pages from PDF files? If yes, you can remove blank pages in bulk using Acrobat, but there’s no single-click “delete all empty pages” button. 

 

Option 1: Use the Organize Pages tool

Open the PDF in Adobe Acrobat Pro.
Go to All Tools > Organize Pages.
Scroll through and select blank pages (hold Ctrl or Shift for multiple selections).
Click Delete.

 

Option 2: Automate with Action Wizard

Go to All Tools > Action Wizard.
Create a new action:

Add Execute JavaScript.
Use a script that checks each page for content and deletes it if it is empty. Run the action on your large files.

 

Sample Script: Please note you might have to change the script, as this is a sample example of a  

 

for (var i = this.numPages - 1; i >= 0; i--) {
    var b = this.getPageBox("Crop", i);
    var txt = this.getPageNthWord(i, 0, true);
    if (!txt) this.deletePages(i);
}

 

Suggestions: 

  • Split the file first: For 10,000+ pages, break the PDF into smaller chunks before running the action.
  • Disable thumbnails: Speeds up processing.

I hope this helps.

Thanks,

Anand Sri.

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