Script Python "generate"

De Les Fabriques du Ponant
Aller à : navigation, rechercher

Le texte du script est à enregistrer dans un fichier à nommer generate.py et l'exécuter en python.

Ce script sert à préparer les fichier du projet Light painting. Pour l'utiliser : placer le ficheir image dans le même dossier que le script et jouer le script.

source : pixelstick par Lucas Berbesson for LA FABRIQUE DIY LICENSE MIT

Voir https://github.com/LucasBerbesson/pixelstick

Jouer le script python

Sous Mac

ouvrir le fichier avec IDLE (interface graphique de python installée par défaut sur mac), dans le menu cliquer sur "Run" puis sur "Run Module"

Sous Linux

version Debian 9.9 aller dans le dossier où sont rangés le fichier generate.py et l'image au format .png puis faire $ python generate.py

Sous Windows

?

le script

"""
Written by Lucas Berbesson for LA FABRIQUE DIY

LICENSE MIT
"""

import os
from os.path import basename

from PIL import Image

for filename in os.listdir('.'):
   if filename.endswith(".png") or filename.endswith(".jpg"):
        text_file_name = "{}.txt".format(os.path.splitext(filename)[0])
        text_file = open(text_file_name, "w+")
        im = Image.open(filename)
        im = im.rotate(90,expand=True)
        im.save("test.png")
        pixels = list(im.getdata())
        for pixel in pixels:
            try:
                red,green,blue,brightness = pixel
                text_file.write("{}, {}, {}\n".format(red,green,blue))
            except:
                print(text_file_name)
        text_file.write("300, 300, 300")
        text_file.close()