I've tried using the new drop shadow feature and found I was unable to get the black shadow to appear. The white border is created but the black shadow is missing.
Is there documentation avaliable showing how to show the black color or any other color?
linojr99 wrote: I've tried using the new drop shadow feature and found I was unable to get the black shadow to appear. The white border is created but the black shadow is missing.
Is there documentation avaliable showing how to show the black color or any other color?
private: int _DropShadow(HBITMAP & src, HBITMAP & dest, int size, int depth, int keep_size);
public: int DropShadow(Image & src, Image *& dest, int size, int depth, int keep_size);
public: int DropShadowF(String * src, String * dest, int size, int depth, int keep_size);
/////////////////////////////////////////////////////////////////////////////////////
// DropShadow
//
int Converter::Effects::_DropShadow(HBITMAP & src, HBITMAP & dest, int size, int depth, int keep_size)
{
int error;
GFL_BITMAP * src_bmp = NULL;
GFL_BITMAP * dest_bmp = NULL;
return error;
}
int Converter::Effects::DropShadow(Image & src, Image *& dest, int size, int depth, int keep_size)
{
HBITMAP src_bmp=NULL, dest_bmp=NULL;
int error;