如果你想用Alphablending显示一些图像,试着使用
Graphics32
图书馆。
在这里,您将发现一个组件“ImgView32”。有了这个,你可以很容易地显示任何位置和值的位图。你必须使用TBitmapLayer,并使你的图纸。
ImgView1:TImgView32;
a:array of TBitmapLayer;
procedure TForm1.FormCreate(Sender: TObject);
var i:integer;
begin
ImgView1.Layers.Clear;
SetLength (a,10);
for i:=0 to High (a) do
begin
a[i]:=TBitmapLayer.Create(ImgView1.Layers);
a[i].Location:=FloatRect(0,0,ImgView1.Width,ImgView1.Height);
a[i].Scaled:=false;
a[i].Bitmap.DrawMode:=dmOpaque;
a[i].Bitmap.MasterAlpha:=255;
end;
end;
procedure TForm1.FormDestroy(Sender: TObject);
begin
ImgView1.Layers.Clear;
end;
procedure Form1.DrawTextToLayer(Layer:TBitmapLayer;Text:string;X,Y:integer);
var I:TImage32;
begin
I:=TImage32.Create(Form1);
I.Width:=ImgView1.Width;
I.Height:=ImgView1.Height;
I.SetupBitmap;
I.Bitmap.DrawMode:=dmBlend;
I.Bitmap.Font.Size:=20;
I.Bitmap.Font.Name:='Arial';
I.Bitmap.Font.Style:=[fsBold];
I.Bitmap.RenderText(x,Y,Text,2,clBlack32);
Layer.Bitmap.Assign(I.Bitmap);
I.Free
end;
procedure TForm1.Button1Click(Sender: TObject);
begin
DrawTextToLayer(a[0],'Testing 1',10,10);
DrawTextToLayer(a[1],'Testing 2',20,20);
a[0].Bitmap.MasterAlpha:=255;
a[1].Bitmap.MasterAlpha:=100;
end;