Re: [perl-win32-gui-users] Creating Win32::GUI::Bitmap object from memory data

2004-07-11 Thread Glenn Linderman
On approximately 7/11/2004 6:26 AM, came the following characters from the keyboard of Pavel: Hello Is it possible to create Win32::GUI::Bitmap object not from file, but from memory data? Or how can I add bitmap to ImageList direct from memory data? something like: # $img is a content of one.

[perl-win32-gui-users] Creating Win32::GUI::Bitmap object from memory data

2004-07-11 Thread Pavel
Hello Is it possible to create Win32::GUI::Bitmap object not from file, but from memory data? Or how can I add bitmap to ImageList direct from memory data? something like: # $img is a content of one.bmp file my $b = Win32::GUI::Bitmap::Create(16,16,0,24,$img); # dont works $IL->Add($b); thanks