Slashdot Mirror


User: sppavlov

sppavlov's activity in the archive.

Stories
0
Comments
15
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 15

  1. Re:Not exploitable in Firefox on GdkPixbuf Suffers Image Decoding Vulnerabilities · · Score: 5, Informative

    We only use a single code path for rendering images. We only use gdk-pixbuf to decode GNOME images to find icons for mimetypes.

  2. Re:Not exploitable in Firefox on GdkPixbuf Suffers Image Decoding Vulnerabilities · · Score: 5, Informative

    Mozilla does not use gdk-pixbuf for drawing images -- stuart "pavlov" parmenter (mozilla image library owner)

  3. Not exploitable in Firefox on GdkPixbuf Suffers Image Decoding Vulnerabilities · · Score: 5, Informative

    The only places using gdk-pixbuf in Firefox for loading images are all for loading images from your local machine. No from-the-network code paths use gdk-pixbuf.

  4. Re:An unfortunate hack on Presenting APNG: Like MNG, Only Better · · Score: 1

    You'll note that APNG does support variable frame rates and location of images at positions other than (0,0). Neither of these are complex features and the latter allows you to have smaller subsequent frames ala GIF resulting in much smaller animations.

  5. Re:An unfortunate hack on Presenting APNG: Like MNG, Only Better · · Score: 4, Informative

    We are changing the format of APNG so that all the frames live inside of a single IHDR/END. This should resolve any problems you might have. v0.3 of the spec (should be out tomorrow) will have these changes.

  6. Re:I don't like it on Presenting APNG: Like MNG, Only Better · · Score: 1

    We're actually changing the format to have everything inside a single IHDR/IEND. This won't be a problem in v0.3 of the spec.

  7. Re:An unfortunate hack on Presenting APNG: Like MNG, Only Better · · Score: 1

    There are no additional PNG headers for the additional IHDR/IENDs, so you should have no trouble finding the next image by looking for a PNG header

  8. Re:Give me animated JPEG, its easy as piss to code on Presenting APNG: Like MNG, Only Better · · Score: 1

    It doesn't. It wouldn't be super hard to add, but no one has ever asked for it, so I never added it to imagelib.

  9. Re:Too little, too late on Presenting APNG: Like MNG, Only Better · · Score: 1

    It wouldn't suprise me to see at least the minority browser vendors supporting APNG in the not so distant future...

  10. Re:On talking about the format on Presenting APNG: Like MNG, Only Better · · Score: 3, Informative

    Vlad and I are currently looking at adding composite operators as well as disposal methods such as those in GIF. They should be in the spec by 1.0.

  11. Re:Why wasn't animation included in the first plac on Presenting APNG: Like MNG, Only Better · · Score: 5, Informative

    APNG files _are_ PNG files. We didn't create a whole new format (since that would be silly) so APNG files will still be .PNG files. The first frame in an APNG file looks to current PNG decoders to just be a regular PNG. The APNG spec specifies some additional chunks that if found tell an APNG aware decoder how to find the rest of the frames.

  12. Re:Give me animated JPEG, its easy as piss to code on Presenting APNG: Like MNG, Only Better · · Score: 2, Informative

    The standard way to animated JPEGs in the past has always been using server push (multipart/x-mixed-replace). Mozilla does support this. A lot of webcam sites use this.

  13. Re:Animations on Presenting APNG: Like MNG, Only Better · · Score: 1

    Think about uses of animations in applications. The Mozilla UI guys would love to be able to do a nice looking (no sharp edges, nice transparency, etc) throbber images.

  14. Re:bah, MNG has JNG! on Presenting APNG: Like MNG, Only Better · · Score: 1

    JNG won't be part of APNG. JNG is really its own spec and shouldn't really be related to MNG except that libmng can decode JNGs.

  15. Re:MNG as a format on Presenting APNG: Like MNG, Only Better · · Score: 2, Informative

    We were only aiming to replace animated GIFs. MNG does have some interesting properties which may make it more useful for things like this, however it has been my experiance talking to web developers that the thing they really want is a small fast easy to use animated GIF replacement.