]> git.saurik.com Git - wxWidgets.git/commitdiff
ConvertAlphaToMask
authorRobin Dunn <robin@alldunn.com>
Wed, 25 Aug 2004 21:16:40 +0000 (21:16 +0000)
committerRobin Dunn <robin@alldunn.com>
Wed, 25 Aug 2004 21:16:40 +0000 (21:16 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@28899 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

wxPython/src/_image.i

index b475672670759385cc927955788931cfdbfbf600..154f55d5e0f66515430ad784da3f83b7a9fb8033 100644 (file)
@@ -134,7 +134,19 @@ public:
 values than startR, startG, startB.  Returns a tuple consisting of a
 success flag and rgb values.", "");
 
+    
+    DocDeclStr(
+        bool , ConvertAlphaToMask(byte threshold = 128),
+        "If the image has alpha channel, this method converts it to mask. All pixels
+with alpha value less than ``threshold`` are replaced with mask colour and the
+alpha channel is removed. Mask colour is chosen automatically using
+`FindFirstUnusedColour`.
+
+If the image image doesn't have alpha channel, ConvertAlphaToMask does
+nothing.", "");
+    
 
+    
     // Set image's mask to the area of 'mask' that has <mr,mg,mb> colour
     bool SetMaskFromImage(const wxImage & mask,
                           byte mr, byte mg, byte mb);