Created
May 15, 2019 18:32
-
-
Save JulianaGuama/8a3f84f1edcae4f3174a749383bc5fbf to your computer and use it in GitHub Desktop.
Como transformar pdf em jpg com Python
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from pdf2jpg import pdf2jpg | |
fileInput = r'C:/Users/your-user/fileLocal/file.png' | |
fileOutput = r'C:/Users/your-user/fileLocal/file.jpg' | |
image = pdf2jpg.convert_pdf2jpg(fileInput, fileOutput, pages="ALL") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment