I have Apache2 + PIL + Django + X-sendfile. My problem is that when I save an animated GIF, it won't "animate" when I output through the browser.

Here is my code to display the image located outside the public accessible directory.

def raw(request,uuid):
    target = str(uuid).split('.')[:-1][0]
    image = Uploads.objects.get(uuid=target)

    path = image.path
    filepath = os.path.join(path,"%s.%s" % (image.uuid,image.ext))

    response = HttpResponse(mimetype=mimetypes.guess_type(filepath)) 
    response['Content-Disposition']='filename="%s"'\
                                    %smart_str(image.filename)
    response["X-Sendfile"] = filepath
    response['Content-length'] = os.stat(filepath).st_size

    return response

UPDATE

It turns out that it works. My problem is when I try to upload an image via URL. It probably doesn't save the entire GIF?

def handle_url_file(request):
    """
    Open a file from a URL.
    Split the file to get the filename and extension.
    Generate a random uuid using rand1()
    Then save the file.
    Return the UUID when successful.
    """

    try:
        file = urllib.urlopen(request.POST['url'])
        randname = rand1(settings.RANDOM_ID_LENGTH)
        newfilename = request.POST['url'].split('/')[-1]
        ext = str(newfilename.split('.')[-1]).lower()
        im = cStringIO.StringIO(file.read()) # constructs a StringIO holding the image
        img = Image.open(im)

        filehash = checkhash(im)

        image = Uploads.objects.get(filehash=filehash)
        uuid = image.uuid

        return "%s" % (uuid)

    except Uploads.DoesNotExist:

        img.save(os.path.join(settings.UPLOAD_DIRECTORY,(("%s.%s")%(randname,ext))))
        del img

        filesize = os.stat(os.path.join(settings.UPLOAD_DIRECTORY,(("%s.%s")%(randname,ext)))).st_size
        upload = Uploads(
            ip          = request.META['REMOTE_ADDR'],
            filename    = newfilename,
            uuid        = randname,
            ext         = ext,
            path        = settings.UPLOAD_DIRECTORY,
            views       = 1,
            bandwidth   = filesize,
            source      = request.POST['url'],
            size        = filesize,
            filehash    = filehash,
        )

        upload.save()
        #return uuid
        return "%s" % (upload.uuid)
    except IOError, e:
        raise e

Any ideas?

Thanks!

Wenbert

link|improve this question

Does it appear animated when you send the data normally via the response? – Ignacio Vazquez-Abrams Jan 10 '11 at 5:02
1  
Ignacio, I just found out that the "def raw(request)" actually works. And the problem is found in the handle_url_file() definition. It doesn't save the entire GIF? – wenbert Jan 10 '11 at 6:06
feedback

1 Answer

up vote 1 down vote accepted

Where does that Image class come from and what does Image.open do?

My guess is that it does some sanitizing of the image data (which is a good thing), but does only save the first frame of the Gif.

Edit:

I'm convinced this is an issue with PIL. The PIL documentation on GIF says:

PIL reads GIF87a and GIF89a versions of the GIF file format. The library writes run-length encoded GIF87a files.

To verify, you can write the contents of im directly to disk and compare with the source image.

link|improve this answer
it comes from "import Image" - some kind of python image library. I forgot what. :/ – wenbert Jan 11 '11 at 1:13
Image is from PIL – wenbert Jan 11 '11 at 1:35
1  
I think im = cStringIO.StringIO(file.read()) is only saving a part of the gif file – wenbert Jan 11 '11 at 5:12
1  
I think it's a PIL issue, I edited my answer. – Daniel Hepper Jan 11 '11 at 8:29
1  
I overcomplicated things. bob2 (irc #python) suggested that I just use: "with open(path_to_save, 'wb') as output: output.write(data)" – wenbert Jan 12 '11 at 7:06
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.