Skip to main content
Participant
June 23, 2020
Question

Dúvida na edição de arquivo pdf escaneado / Doubt in editing scanned pdf file

  • June 23, 2020
  • 2 replies
  • 544 views

Gostaria de saber se alguém sabe alguma ferramenta ou recurso para editar um arquivo pdf escaneado. a edição que preciso e girar as páginas, porém nem todas, tenho virar elas de forma intercalada para virar somente a metade das páginas do documento em 180 graus. Resumindo eu preciso escolher as páginas que irei girar 180 graus. / I would like to know if anyone knows any tools or resources to edit a scanned pdf file. I need to rotate the pages, but not all of them, I have to rotate them interchangeably to turn only half of the document pages 180 degrees. In short I need to choose the pages that I will rotate 180 degrees

This topic has been closed for replies.

2 replies

try67
Community Expert
Community Expert
June 24, 2020

This can be done using a script. Do you want to rotate the odd (1, 3, 5, etc.) pages, or the even ones (2, 4, 6, etc.)?

gfbianchiAuthor
Participant
December 13, 2020

Yes my friend i wanna to rotate pages 1,3,5 or 2,4,6...... How can I use a script and rotate the odd, as you said?

try67
Community Expert
Community Expert
December 14, 2020

This code will rotate all odd pages (1, 3, 5, etc.) in the file by 180 degrees:

 

for (var p=0; p<this.numPages; p+=2) {
	this.setPageRotations(p, p, 180);
}

 

You can run it from the JS Console or even from a button, or as a part of an Action.

gary_sc
Community Expert
Community Expert
June 23, 2020

Hi gfbianchi,

 

That is all doable in Acrobat DC Pro. To access every other page is not completely automatic but there is a way to significantly speed up the process. 

 

If you go to the Organize Tool and spread the thumbnails out to even numbers, you can select every other row (hold the Shift key down) and then rotate all of them as needed.

 

Then save and you're done!

 

From your question I'm not sure you currently have Acrobat DC Pro but you will need that to do what you want.

 

Good luck!

gfbianchiAuthor
Participant
December 13, 2020

Hello Gary!
Thank you very much for the support. I am grateful. I don't really have the Acrobat DC Pro version. I use the normal one, but regardless, thanks.