Python Forum
Combine images using Pillow and Python
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Combine images using Pillow and Python
#2
Hello,

I'm trying to write a python script using Pillow :
count files ( png images ) number create an image for every 64 images. example: if the folder containing 640 images ( or any other number ), I will get 10 images as a thumbnail of 64 images/outputimage

any idea?

I started by this step :
import os
import os.path
from PIL import Image


image_dir = os.path.abspath("path_to_png_folder")
# list all files in directory
files = os.listdir(image_dir)
# get all PNGs
png_files = filter(lambda x: x.endswith(".png"), files)
# make file paths absolute
image_files = map(lambda x: os.sep.join([image_dir, x]), png_files)

print (image_files)

n_files = len(image_files)
# print (n_files)

target_img = None
n_targets = 0
collage_saved = False
for n in range(n_files):
    img = Image.open(image_files[n])
    img.thumbnail((100, 100))

    if n % 64 == 0:
        # create an empty image for a collage
        target_img = Image.new("RGB", (800, 800))
        n_targets += 1
        collage_saved = False

    # paste the image at the correct position
    i = int(n / 8)
    j = n % 8
    target_img.paste(img, (100*i, 100*j))

    if (n + 1) % 64 == 0 and target_img is not None:
        # save a finished 8x8 collage
        target_img.save("{0:04}.png".format(n_targets))
        collage_saved = True

# save the last collage
if not collage_saved:
    target_img.save("{0:04}.png".format(n_targets))
I got 10 images, the first one contain 8x8 images, the others are empty ( black ). also, since my png files are a sequence from 0.png to 640.png; have any idea how to let the paste operation take images by order.
example: out1.pan will contain 0.png to 63.png

Thank you
Reply


Messages In This Thread
Combine images using Pillow and Python - by GMA - Jun-05-2018, 04:26 PM
How combine images using Pillow and Python ? - by GMA - Jun-06-2018, 11:06 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  how to read multispectral images on python noorasim 0 1,814 Feb-28-2021, 03:54 PM
Last Post: noorasim
  How do I insert images in Python using gspread (or any other package)? ivansing23 0 2,302 Jul-27-2020, 01:26 PM
Last Post: ivansing23
  My journey with attaching file instead of images using Python numbnumb54 1 1,816 Jul-24-2020, 02:37 AM
Last Post: scidam
  A more efficient way of comparing two images in a python vukan 0 2,047 Mar-17-2020, 11:39 AM
Last Post: vukan
  how to compare two different size images in python and find corresponding pixel value squidsirymchenry 1 4,634 Feb-03-2020, 06:48 AM
Last Post: michael1789
  How to get first 5 images form the document using Python BeautifulSoup sarath_unrelax 0 1,669 Dec-19-2019, 07:13 AM
Last Post: sarath_unrelax
  Compare two images with Python is possible? Delemir78 3 4,858 Dec-17-2019, 09:03 PM
Last Post: Larz60+
  Python Pillow I_Am_Groot 1 2,682 Oct-13-2018, 07:28 AM
Last Post: j.crater
  [split] Python Pillow - Photo Manipulation keegan_010 1 3,006 Oct-11-2018, 09:57 AM
Last Post: Larz60+
  Python Pillow - Photo Manipulation keegan_010 2 2,953 Oct-11-2018, 03:49 AM
Last Post: keegan_010

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020