Last active
September 15, 2022 14:32
-
-
Save danielsharvey/929a525712a2b89ebb561226cc32f3e7 to your computer and use it in GitHub Desktop.
Revisions
-
danielsharvey revised this gist
May 28, 2017 . No changes.There are no files selected for viewing
-
danielsharvey revised this gist
May 28, 2017 . No changes.There are no files selected for viewing
-
danielsharvey revised this gist
May 28, 2017 . 1 changed file with 2 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -3,15 +3,15 @@ from PIL import Image,ImageOps import struct import sys if len(sys.argv) < 3: print "Need two args: source_filename and result_filename\n"; sys.exit(0) filename = sys.argv[1] result_filename = sys.argv[2] with open(filename) as f: contents = f.read() unk1, width, height, unk2, unk3, unk4 = struct.unpack('<6i', contents[-24:]) im = Image.frombytes('RGBA', (width,height), contents, 'raw', 'RGBA', 0, 1) r,g,b,a = im.split() im = Image.merge('RGBA', (b,g,r,a)) im.save(result_filename) -
danielsharvey revised this gist
May 28, 2017 . 1 changed file with 16 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1 +1,17 @@ #!/usr/bin/python from PIL import Image,ImageOps import struct import sys if len(sys.argv) < 3: print "Need two args: filename and result_filename\n"; sys.exit(0) filename = sys.argv[1] result_filename = sys.argv[2] with open(filename) as f: contents = f.read() unk1, width, height, unk2, unk3, unk4 = struct.unpack('<6i', contents[-24:]) im = Image.fromstring('RGBA', (width,height), contents, 'raw', 'RGBA', 0, 1) r,g,b,a = im.split() im = Image.merge('RGBA', (b,g,r,a)) im.save(result_filename) -
danielsharvey created this gist
May 28, 2017 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1 @@ #!/usr/bin/python