X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/be43ef045a3bc040da1173d526d95347e7902216..f1fabff5b28f3fa789247db5a30b167a4c92c1a2:/wxPython/src/_image.i diff --git a/wxPython/src/_image.i b/wxPython/src/_image.i index 57ab53657f..154f55d5e0 100644 --- a/wxPython/src/_image.i +++ b/wxPython/src/_image.i @@ -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 colour bool SetMaskFromImage(const wxImage & mask, byte mr, byte mg, byte mb); @@ -479,7 +491,7 @@ public: DocStr( Quantize, "Reduce the colours in the source image and put the result into the -destination image, setting the palette in the detination if +destination image, setting the palette in the destination if needed. Both images may be the same, to overwrite the source image.", " :todo: Create a version that returns the wx.Palette used.");