Most voted "pdf" questions
Portable Document Format (PDF) is an open standard for electronic document exchange maintained by the International Organization for Standardization. Questions can be tagged with this tag when the subject is about creating, reading, editing Pdfs using different languages.
Learn more…353 questions
Sort by count of
-
-3
votes1
answer147
viewsAlways keep the same name as a PDF file on upload
How can I keep the same name of a file at the time of upload, for example if the person chooses a file with the name spreadsheet.pdf I can always save it with a fixed name, as a.pdf document, today…
-
-3
votes3
answers507
viewsHow to merge two Pdfs into Base64 in one
I have the following scenario: I receive two files encoded as Base64, each representing a pdf. I need to read those files and turn them into a single encoded file like Base64. Input example: PDF1 =…
-
-3
votes1
answer257
viewsExtract images from a pdf file using a python script
good morning, I have this code #!/usr/bin/env python #-*- coding: utf-8 -*- import os try: from textract import * except ModuleNotFoundError: os.system('sudo apt-get install -y python3 python-dev…