[Mono-bugs] [Bug 323034] Problem with animated GIF with delay == 0 and "combine"
bugzilla_noreply at novell.com
bugzilla_noreply at novell.com
Wed Oct 31 09:58:11 EDT 2007
https://bugzilla.novell.com/show_bug.cgi?id=323034#c5
Sebastien Pouliot <spouliot at novell.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Summary|Problem with animated GIF with delay == 0 and |Problem with animated GIF with delay == 0 and
|mis-decoding |"combine"
--- Comment #5 from Sebastien Pouliot <spouliot at novell.com> 2007-10-31 07:58:10 MST ---
[from GIMP]
* all frames, except frame #15 (300ms), have a 0 ms delay
* frames [10-14] are "combine" instead of "replace" and are mis-rendered
Smaller test case (source part) that accept a filename:
using System;
using System.Drawing;
using System.Windows.Forms;
public class MainForm : Form {
private PictureBox _pictureBox;
public MainForm (string filename)
{
_pictureBox = new PictureBox ();
_pictureBox.Dock = DockStyle.Top;
_pictureBox.Height = 352;
_pictureBox.Image = Image.FromFile (filename);
Controls.Add (_pictureBox);
ClientSize = new Size (360, 352);
}
[STAThread]
static void Main (string[] args)
{
Application.Run (new MainForm (args [0]));
}
}
--
Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.
You are the assignee for the bug.
More information about the mono-bugs
mailing list