From: Robin Dunn Date: Fri, 19 Nov 2004 19:57:21 +0000 (+0000) Subject: Added ConvertColourToAlpha X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/6f7ecb3beeb755aebfdd95d7e9d5fc4586b2adc9 Added ConvertColourToAlpha git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@30643 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/wxPython/src/_image.i b/wxPython/src/_image.i index 7c3ea50467..3d216f9a8e 100644 --- a/wxPython/src/_image.i +++ b/wxPython/src/_image.i @@ -146,6 +146,17 @@ If the image image doesn't have alpha channel, ConvertAlphaToMask does nothing.", ""); + DocDeclStr( + bool , ConvertColourToAlpha( unsigned char r, unsigned char g, unsigned char b ), + "This method converts an image where the original alpha information is +only available as a shades of a colour (actually shades of grey) +typically when you draw anti-aliased text into a bitmap. The DC +drawing routines draw grey values on the black background although +they actually mean to draw white with differnt alpha values. This +method reverses it, assuming a black (!) background and white text. +The method will then fill up the whole image with the colour given.", ""); + + // Set image's mask to the area of 'mask' that has colour bool SetMaskFromImage(const wxImage & mask,