Skip to main content
December 17, 2025
Question

Eliminar paginas vacías en forma masiva en ADOBE

  • December 17, 2025
  • 1 reply
  • 90 views

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.

1 reply

AnandSri
Legend
December 19, 2025

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.