[Mono-bugs] [Bug 62684][Wis] New - CompositingQuality not implemented
bugzilla-daemon@bugzilla.ximian.com
bugzilla-daemon@bugzilla.ximian.com
Sun, 8 Aug 2004 17:01:47 -0400 (EDT)
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 nigel@hresult.com.
http://bugzilla.ximian.com/show_bug.cgi?id=62684
--- shadow/62684 2004-08-08 17:01:47.000000000 -0400
+++ shadow/62684.tmp.19620 2004-08-08 17:01:47.000000000 -0400
@@ -0,0 +1,64 @@
+Bug#: 62684
+Product: Mono: Runtime
+Version: unspecified
+OS: other
+OS Details: FC2
+Status: NEW
+Resolution:
+Severity:
+Priority: Wishlist
+Component: misc
+AssignedTo: mono-bugs@ximian.com
+ReportedBy: nigel@hresult.com
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL:
+Cc:
+Summary: CompositingQuality not implemented
+
+In code such as :
+
+protected System.Drawing.Image GenerateResizedImage(System.Drawing.Image
+original)
+ {
+
+ // Creates a Graphics for the oResampled image
+ Graphics oGraphics = Graphics.FromImage
+(original) ;
+
+ // Sets High Quality Mode.
+ oGraphics.CompositingQuality =
+CompositingQuality.HighQuality ;
+ oGraphics.SmoothingMode =
+SmoothingMode.HighQuality ;
+ oGraphics.InterpolationMode =
+ InterpolationMode.HighQualityBicubic ;
+
+
+CompositingQuality call fails :
+
+System.NotImplementedException: Feature not implemented.
+in <0x001b9> System.Drawing.GDIPlus:CheckStatus (System.Drawing.Status)
+in <0x00024> System.Drawing.Graphics:set_CompositingQuality
+(System.Drawing.Drawing2D.CompositingQuality)
+in <0x00052> (wrapper remoting-invoke-with-check)
+System.Drawing.Graphics:set_CompositingQuality
+(System.Drawing.Drawing2D.CompositingQuality)
+in <0x000d8> PhotoGallery.Utils.ImageProvider:GenerateResizedImage
+(System.Drawing.Image)
+in <0x00046> PhotoGallery.Utils.ImageProvider:GenerateResizedImage
+(string)
+in <0x000f6>
+PhotoGallery.Utils.CachedImageProvider:OutputToResponseStream
+(string,System.Web.HttpResponse)
+in <0x0016b> PhotoGallery.ImageServlet:Page_Load (object,System.EventArgs)
+in <0x00069> (wrapper delegate-invoke)
+System.MulticastDelegate:invoke_void_object_EventArgs
+(object,System.EventArgs)
+in <0x00086> System.Web.UI.Control:OnLoad (System.EventArgs)
+in <0x00024> System.Web.UI.Control:LoadRecursive ()
+in <0x00198> System.Web.UI.Page:InternalProcessRequest ()
+in <0x000c2> System.Web.UI.Page:ProcessRequest (System.Web.HttpContext)
+in <0x002f3> ExecuteHandlerState:Execute ()
+in <0x00084> StateMachine:ExecuteState
+(System.Web.HttpApplication/IStateHandler,bool&)