Ok, I developed this in another thread, with the help of several other members (LaVolpe, Dilettante, Wqweto, Schmidt, & The Trick).
All it does is read a standard RGBA type (32bpp) PNG file and place it into a VB6 image control (with its alpha channel intact).
I've tested it on PNG files of several different sizes, and it displays an image control of exactly the same pixel width & height.
There are also optional scaling and overall opacity settings in the LoadPngIntoPictureWithAlpha call. You're welcome to use those as your needs arise.
Just as an FYI, the LoadPngIntoPictureWithAlpha creates an image that is not stretched for any changed (non 96) DPI settings (where you're running your monitor at non-100% scale). So, it's probably best to use this in a DPI aware mode (or at least you should be aware that this thing will be pixel-for-pixel with respect to the original PNG). Another option would be to figure out your monitor's scaling, and then feed that into the scale argument of the LoadPngIntoPictureWithAlpha call.
I just listed the API and UDT declarations (at the top of the BAS module) in the order in which they were used. You're certainly welcome to re-order them in anyway you like.
In the attached project, there's also a translucent (not fully transparent) PNG included for your testing.
If you check the display size of the image control, either turn the border off on it, or remember that there are 4 extra pixels (2 per side) that make that border.
![Name: Alpha3.jpg
Views: 75
Size: 62.4 KB]()
I might do more with this in the future, but this piece of it is done.
All it does is read a standard RGBA type (32bpp) PNG file and place it into a VB6 image control (with its alpha channel intact).
I've tested it on PNG files of several different sizes, and it displays an image control of exactly the same pixel width & height.
There are also optional scaling and overall opacity settings in the LoadPngIntoPictureWithAlpha call. You're welcome to use those as your needs arise.
Just as an FYI, the LoadPngIntoPictureWithAlpha creates an image that is not stretched for any changed (non 96) DPI settings (where you're running your monitor at non-100% scale). So, it's probably best to use this in a DPI aware mode (or at least you should be aware that this thing will be pixel-for-pixel with respect to the original PNG). Another option would be to figure out your monitor's scaling, and then feed that into the scale argument of the LoadPngIntoPictureWithAlpha call.
I just listed the API and UDT declarations (at the top of the BAS module) in the order in which they were used. You're certainly welcome to re-order them in anyway you like.
In the attached project, there's also a translucent (not fully transparent) PNG included for your testing.
If you check the display size of the image control, either turn the border off on it, or remember that there are 4 extra pixels (2 per side) that make that border.
I might do more with this in the future, but this piece of it is done.