Merge pull request #6 from msaoudallah/master

added images2pdf script
This commit is contained in:
Kaushlendra Pratap 2018-10-03 11:34:37 +05:30 committed by GitHub
commit 3934a9b88f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 69 additions and 0 deletions

19
images2pdf/README.md Normal file
View File

@ -0,0 +1,19 @@
# images2pdf
this is a small script to make a pdf from list of images.
### Dependencies:
1- PIL package
2- fpdf
### how to run :
1- create a directory with images you want to create a pdf from
2- name those images with numbers as the order you want
3- run the script , it will ask you for the directory , and a name for your pdf
### to do :
1- modify the position of the image to be at the center of the page
2- modify the dimensions of the image to fill the page
3- put some comments on the code

50
images2pdf/imges2pdf.py Normal file
View File

@ -0,0 +1,50 @@
### img2pdf ####
import os
import sys
from fpdf import FPDF
from PIL import Image
import glob
images_path = raw_input("Enter the path of the folder containing images : ")
images =images_path+"/*.*"
assert os.path.exists(images_path), "this diretory doesn't exist, "+str(images_path)
f = os.chdir(images_path)
print("Hooray we found your directory!")
image_list = []
for filename in glob.glob(images):
image_list.append(filename)
pdf = FPDF( unit = 'mm')
imnames = [i.split("\\") for i in image_list]
imnames = [i[-1] for i in imnames ]
imnums = [i.split('.') for i in imnames]
imnums = [i[0] for i in imnums]
imnums = [int(i) for i in imnums]
pos = 0
images_dict = dict(zip(image_list, imnums))
sorted_images = sorted(images_dict , key = images_dict.get)
for i in list(sorted_images):
pdf.add_page()
im = Image.open(i)
pdf.image(i,pos,pos,200,250)
pdf_name = raw_input("Enter the pdf name : ")
pdf_name = pdf_name+".pdf"
pdf.output(pdf_name)