[Mono-bugs] [Bug 55004][Wis] Changed - Bitmap class doesn't seem to work
bugzilla-daemon@bugzilla.ximian.com
bugzilla-daemon@bugzilla.ximian.com
Mon, 1 Mar 2004 07:40:42 -0500 (EST)
Please do not reply to this email- if you want to comment on the bug, go to the
URL shown below and enter your comments there.
Changed by rkumar@novell.com.
http://bugzilla.ximian.com/show_bug.cgi?id=55004
--- shadow/55004 2004-02-29 12:38:04.000000000 -0500
+++ shadow/55004.tmp.12709 2004-03-01 07:40:42.000000000 -0500
@@ -1,14 +1,14 @@
Bug#: 55004
Product: Mono/Class Libraries
Version: unspecified
OS: Red Hat 9.0
OS Details:
-Status: NEW
-Resolution:
-Severity:
+Status: RESOLVED
+Resolution: FIXED
+Severity: Unknown
Priority: Wishlist
Component: Sys.Drawing.
AssignedTo: mono-bugs@ximian.com
ReportedBy: nigel@hresult.com
QAContact: mono-bugs@ximian.com
TargetMilestone: ---
@@ -45,6 +45,35 @@
How often does this happen?
Every time
Additional Information:
The construct-from-file constructor (new Bitmap("woo.jpeg")) works
correctly it seems.
+
+------- Additional Comments From rkumar@novell.com 2004-03-01 07:40 -------
+Can you please test your program against CVS? System.Drawing code is
+under development and somethings might not work properly. However, I
+could not reproduce the problem reported above at my end. Following
+code works fine under my set up. I have the latest code from CVS.
+
+// saved as Test55004.cs
+using System;
+using System.Drawing;
+
+
+public class Test {
+
+ public static void Main () {
+
+ Bitmap bmp = new Bitmap (100, 100);
+ Console.WriteLine ("Bitmap created without any problem.");
+ }
+}
+
+[ravi@ravi System.Drawing]$ mcs -r:System.Drawing Test55004.cs
+Compilation succeeded
+[ravi@ravi System.Drawing]$ mono Test55004.exe
+Bitmap created without any problem.
+[ravi@ravi System.Drawing]$
+
+I am marking this bug as "resolved". If you face the same problem with
+the latest CVS code also, please feel free to reopen the bug.