5x5のタイル状にしてみた。 好みの夕暮れの色があるように、好みのノイズ量があるに違いないので、もう少しノイズの入れ方を考えないと。 import base64,re,Image from random import randint def glitch(infile,outfile): jpg_text = base64.encodestring(open(infile,"rb").read()) glitched_text = "" count = 0 width,height = Image.open(infile).size num = width * height / 10000 for c in jpg_text: if c == '0': if randint(0,num) == 0: count += 1 glitched_text += str(randint(0,9))