Note that there are some explanatory texts on larger screens.

plurals
  1. POUnicodeDecodeError: 'ascii' codec can't decode byte 0x87 in position 10: ordinal not in range(128)
    primarykey
    data
    text
    <p>I'm working with <a href="http://visvis.googlecode.com/hg/vvmovie/images2gif.py" rel="nofollow">images2gif</a> and getting this error. Any ideas?</p> <p><code>UnicodeDecodeError: 'ascii' codec can't decode byte 0x87 in position 10: ordinal not in range(128)</code></p> <p>Test file:</p> <pre><code>from PIL import Image from images2gif import writeGif FRAMES = 2 FRAME_DELAY = 0.75 WIDTH, HEIGHT = 600, 600 frames = [] img1 = Image.open('1.jpg') img2 = Image.open('2.jpg') frames.append(img1) frames.append(img2) writeGif("test.gif", frames, duration=FRAME_DELAY, dither=0) </code></pre> <p>Traceback:</p> <pre><code>Traceback (most recent call last): File "gif.py", line 15, in &lt;module&gt; writeGif("topmovie.gif", frames, duration=FRAME_DELAY, dither=0) File "/Users/Craig/Documents/github/RTB/images2gif.py", line 575, in writeGif gifWriter.writeGifToFile(fp, images, duration, loops, xy, dispose) File "/Users/Craig/Documents/github/RTB/images2gif.py", line 435, in writeGifToFile fp.write(header.encode('utf-8')) </code></pre> <p>images2gif line 435: <code>fp.write(header.encode('utf-8'))</code></p> <p><strong>Updated traceback:</strong></p> <pre><code>Traceback (most recent call last): File "gif.py", line 16, in &lt;module&gt; writeGif("test.gif", frames, duration=FRAME_DELAY, dither=0) File "/Users/Craig/Documents/github/RTB/images2gif.py", line 579, in writeGif gifWriter.writeGifToFile(fp, images, duration, loops, xy, dispose) File "/Users/Craig/Documents/github/RTB/images2gif.py", line 440, in writeGifToFile fp.write(globalPalette) TypeError: must be string or buffer, not None </code></pre>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload