PMXBOT Log file Viewer

Help | Karma | Search:

#pil logs for Wednesday the 8th of June, 2016

(Back to #pil overview) (Back to channel listing) (Animate logs)
[13:32:33] <travis-ci> python-pillow/Pillow#3358 (master - 62551a8 : wiredfool): The build passed.
[13:32:33] <travis-ci> Change view : https://github.com/python-pillow/Pillow/compare/4cca857b1eb2...62551a8b49b2
[13:32:33] <travis-ci> Build details : https://travis-ci.org/python-pillow/Pillow/builds/136144921
[13:40:17] <travis-ci> radarhere/Pillow#1144 (master - a83ae6c : wiredfool): The build passed.
[13:40:17] <travis-ci> Change view : https://github.com/radarhere/Pillow/compare/6fe8d0f15b9f...ac6e86765d3d
[13:40:17] <travis-ci> Build details : https://travis-ci.org/radarhere/Pillow/builds/136146523
[13:44:15] <travis-ci> wiredfool/Pillow#916 (master - a83ae6c : wiredfool): The build has errored.
[13:44:15] <travis-ci> Change view : https://github.com/wiredfool/Pillow/compare/2af16a7b584a...ac6e86765d3d
[13:44:16] <travis-ci> Build details : https://travis-ci.org/wiredfool/Pillow/builds/136146872
[13:50:54] <travis-ci> python-pillow/Pillow#3359 (master - 45b28a2 : wiredfool): The build has errored.
[13:50:54] <travis-ci> Change view : https://github.com/python-pillow/Pillow/compare/62551a8b49b2...45b28a2a4b87
[13:50:55] <travis-ci> Build details : https://travis-ci.org/python-pillow/Pillow/builds/136145178
[13:51:04] <travis-ci> wiredfool/Pillow#917 (malloc_check - 92a13d9 : wiredfool): The build passed.
[13:51:04] <travis-ci> Change view : https://github.com/wiredfool/Pillow/compare/30e861a139ff...92a13d975d32
[13:51:05] <travis-ci> Build details : https://travis-ci.org/wiredfool/Pillow/builds/136148395
[13:52:54] <travis-ci> python-pillow/Pillow#3360 (master - a83ae6c : wiredfool): The build passed.
[13:52:54] <travis-ci> Change view : https://github.com/python-pillow/Pillow/compare/45b28a2a4b87...a83ae6caee63
[13:52:55] <travis-ci> Build details : https://travis-ci.org/python-pillow/Pillow/builds/136145522
[17:31:30] <zinefer> hi guys - i am struggling to get PIL to save an image i am editing in python 3 ... it's a gif, and i keep getting `ValueError: unrecognized raw mode` this seems to be some issue with the palette, but no amount of googling seems to be able to tell me what to do to fix it
[17:36:10] <zinefer> here is a quick paste of what i am working with: http://pastebin.com/tpr0TD7E
[18:43:23] <zinefer> aha! a simple img = img.convert("RGBA") seems to have allowed me to start saving files but now my animation is gone x,x
[19:13:36] <zinefer> no, i think this is a redherring
[19:41:15] <zinefer> so my image is in mode "P" and saving it out causes the unrecognized raw mode ... converting it to RGBA right before the save seems to work but it becomes greyscale
[20:18:30] <wiredfool> zinefer: it's possible that the rawmode error is coming from the palette
[20:18:52] <wiredfool> you might try not converting to 'p' mode initially
[20:19:38] <wiredfool> hey aclark
[20:21:02] <zinefer> @wiredfool: like this img = Image.open('data/signal/signalsrc.gif').convert("P") ?
[20:21:20] <zinefer> running for some food ... brb
[20:22:14] <wiredfool> no, leave out the convert to 'p' mode. GIFs should likely already be in that mode, and there may be side effects in doing the conversion again
[20:23:20] <wiredfool> and palettes have a mode.
[20:24:20] <wiredfool> also, there's this: https://github.com/python-pillow/Pillow/issues/1592
[20:49:26] <zinefer> "you might try not converting to 'p' mode initially" ahh i missed the word not, sorry
[20:50:45] <zinefer> it throws the same error with and without the .convert("P") call
[20:57:45] <zinefer> and i have run across issue #1592 - but it mentions the raw mode error is a normal thing and to see https://github.com/python-pillow/Pillow/issues/1280
[20:57:53] <zinefer> but that issue doesn't really explain how to fix the problem
[21:22:19] <wiredfool> what is len(img.palette.palette) and img.palette.rawmode?
[21:29:14] <zinefer> print(len(img.palette.palette)) #768
[21:29:31] <zinefer> print(img.palette.rawmode) #RGB