VoyForums
[ Show ]
Support VoyForums
[ Shrink ]
VoyForums Announcement: Programming and providing support for this service has been a labor of love since 1997. We are one of the few services online who values our users' privacy, and have never sold your information. We have even fought hard to defend your privacy in legal cases; however, we've done it with almost no financial support -- paying out of pocket to continue providing the service. Due to the issues imposed on us by advertisers, we also stopped hosting most ads on the forums many years ago. We hope you appreciate our efforts.

Show your support by donating any amount. (Note: We are still technically a for-profit company, so your contribution is not tax-deductible.) PayPal Acct: Feedback:

Donate to VoyForums (PayPal):

Login ] [ Contact Forum Admin ] [ Main index ] [ Post a new message ] [ Search | Check update time | Archives: 123[4]5678910 ]


[ Next Thread | Previous Thread | Next Message | Previous Message ]

Date Posted: 14:10:38 02/01/03 Sat
Author: erik
Subject: Re: Howto display WMF images transparent ?
In reply to: erik 's message, "Howto display WMF images transparent ?" on 11:16:48 02/01/03 Sat

I found a solution to this problem by using the delphi TMetafile instead of TImageScrollbox in this case only.
Because the TMetafile does not format it as a bitmap but leave it as a vector-graphic it is much better quality as well.

This is my code now...

if UpperCase(RightStr(myGraphic.Filename,3)) = 'WMF' then
begin
myGraphic.metafile := TMetafile.Create;
myGraphic.metafile.Transparent := true;
myGraphic.metafile.LoadFromFile(myGraphic.Filename);
myGraphic.width := myGraphic.metafile.Width;
myGraphic.height := myGraphic.metafile.height;
end
else
begin
myGraphic.image := TImageScrollBox.Create(self);
myGraphic.image.Color := self.Color;
myGraphic.image.LoadFromFile(myGraphic.Filename,1);
myGraphic.width := myGraphic.image.Graphic.Width;
myGraphic.height := myGraphic.image.Graphic.height;


Maybe someone else can use this approach as well.

grtz,

Erik

>Hi,
>
>I tried setting the image.graphic.transparent property
>but it didn't do anyhting actually ?
>
>grtz,
>
>Erik

[ Next Thread | Previous Thread | Next Message | Previous Message ]


Replies:


[ Contact Forum Admin ]


Forum timezone: GMT-5
VF Version: 3.00b, ConfDB:
Before posting please read our privacy policy.
VoyForums(tm) is a Free Service from Voyager Info-Systems.
Copyright © 1998-2019 Voyager Info-Systems. All Rights Reserved.