Notes |
(0009337)
Karlheinz (reporter)
2006-05-22 14:22
|
With this combination it is working.
You need the switch from false to true otherwise the picture is not transparent.
WTOImage.Transparent := false;
WTOImage.Picture := DM_SKraft_F.ImageWTOLogo.Picture;
WTOImage.Transparent := true; |
|
(0009523)
obones (administrator)
2006-06-09 03:05
|
I don't see any reasons why this would happen, TJvImage is a mere wrapper around TImage. And on top of that, I think it is much better to always set Transparent AFTER the image has been loaded. What do you think? |
|
(0009567)
Karlheinz (reporter)
2006-06-10 06:41
|
The problem is that you need the switch from Transparent=false to Transparent=true to get the transparent picture.
If you have set transparent to true inside of the objectinspector and your source looks like
WTOImage.Picture := DM_SKraft_F.ImageWTOLogo.Picture;
WTOImage.Transparent := true;
the picture is NOT transparent and that is different to the behavior of TImage. |
|
(0009571)
obones (administrator)
2006-06-11 02:38
|
I'm seing this as well, but don't understand why yet. |
|
(0009572)
obones (administrator)
2006-06-11 04:20
|
This is now fixed in SVN. |
|