Skip to content

Instantly share code, notes, and snippets.

@cpressey
Created April 28, 2015 19:19
Show Gist options
  • Star 5 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save cpressey/9b82f3eb2cd81cd1a44f to your computer and use it in GitHub Desktop.
Save cpressey/9b82f3eb2cd81cd1a44f to your computer and use it in GitHub Desktop.
Really quick-and-dirty Python script to create glitched (intentionally corrupted) JPEGs
#!/usr/bin/env python
# the contents of this file are in the public domain
import os
import random
import sys
def main(args):
filename = args[0]
dirname = args[1]
count = int(args[2])
with open(filename, 'rb') as f:
contents = f.read()
for i in xrange(0, count):
write_out_with_glitch(contents, os.path.join(dirname, "glitch%02d.jpg" % i))
def write_out_with_glitch(contents, filename):
size = len(contents)
print "writing %s bytes to %s..." % (size, filename)
with open(filename, 'wb') as f:
for byte in contents:
if random.randint(0, 999) == 0:
f.write(chr(random.randint(0, 255)))
else:
f.write(byte)
if __name__ == '__main__':
main(sys.argv[1:])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment