Delphi and DirectX Delphix (): Tdib. Drawtransparent, Drawtranslucent, Dra

Source: Internet
Author: User
Tags transparent color

Delphi and DirectX Delphix (): Tdib. Drawtransparent, Drawtranslucent, Drawalpha ();

Tdib. Drawtransparent: Transparent by the specified transparent color;

Tdib. Drawtranslucent: First by the specified transparent color transparent, and then translucent;

DIB. Drawalpha: Transparent by the specified transparent color, and then by the specified transparency.

This example effect chart:

Code files:

Unit Unit1;
Interface
Uses
Windows, Messages, sysutils, variants, Classes, Graphics, Controls, Forms,
Dialogs, DIB, Stdctrls;
Type
TForm1 = Class (Tform)
Dxpaintbox1:tdxpaintbox;
Button1:tbutton;
Button2:tbutton;
Button3:tbutton;
Button4:tbutton;
Button5:tbutton;
Button6:tbutton;
Button7:tbutton;
Procedure Formcreate (Sender:tobject);
Procedure Formdestroy (Sender:tobject);
Procedure Button1Click (Sender:tobject);
Procedure Button2click (Sender:tobject);
Procedure Button3click (Sender:tobject);
Procedure Button4click (Sender:tobject);
Procedure Button5click (Sender:tobject);
Procedure Button6click (Sender:tobject);
Procedure Button7click (Sender:tobject);
End
Var
Form1:tform1;
Implementation
{$R *.DFM}
Var
Dib:tdib;
Procedure Tform1.formcreate (Sender:tobject);
Begin
Dib: = Tdib. Create;
Dib. SetSize (Dxpaintbox1.width, Dxpaintbox1.height, 24);
Dib. Fill (0);
Dib. Canvas.Brush.Style: = Bsclear;
Dib. Canvas.Font.Color: = clred;
Dib. Canvas.Font.Name: = ' Tahoma ';
Dib. Canvas.Font.Size: = 32;
Dib. Canvas.Font.Style: = [Fsbold];
Dib. Canvas.textout (A, ' Delphix ');
Self.color: = Clwhite;
End
Procedure Tform1.formdestroy (Sender:tobject);
Begin
Dib. Free;
End
Procedure Tform1.button1click (Sender:tobject);
Begin
DXPaintBox1.DIB.Assign (DIB);
Dxpaintbox1.repaint;
End
Procedure Tform1.button2click (Sender:tobject);
Begin
DXPaintBox1.DIB.Fill (Self.color);
DXPaintBox1.DIB.DrawTransparent (DIB, 0, 0, Dib.) Width, Dib. Height, 0, 0, clblack);
Dxpaintbox1.repaint;
End
Procedure Tform1.button3click (Sender:tobject);
Begin
DXPaintBox1.DIB.Fill (Self.color);
DXPaintBox1.DIB.DrawTransparent (DIB, 0, 0, Dib.) Width, Dib. Height, 0, 0, clred);
Dxpaintbox1.repaint;
End
Procedure Tform1.button4click (Sender:tobject);
Begin
DXPaintBox1.DIB.Fill (Self.color);
DXPaintBox1.DIB.DrawTranslucent (DIB, 0, 0, Dib.) Width, Dib. Height, 0, 0, clblack);
Dxpaintbox1.repaint;
End
Procedure Tform1.button5click (Sender:tobject);
Begin
DXPaintBox1.DIB.Fill (Self.color);
DXPaintBox1.DIB.DrawTranslucent (DIB, 0, 0, Dib.) Width, Dib. Height, 0, 0, clred);
Dxpaintbox1.repaint;
End
Procedure Tform1.button6click (Sender:tobject);
Begin
DXPaintBox1.DIB.Fill (Self.color);
DXPaintBox1.DIB.DrawAlpha (DIB, 0, 0, Dib.) Width, Dib. Height, 0, 0, clblack);
Dxpaintbox1.repaint;
End
Procedure Tform1.button7click (Sender:tobject);
Begin
DXPaintBox1.DIB.Fill (Self.color);
DXPaintBox1.DIB.DrawAlpha (DIB, 0, 0, Dib.) Width, Dib. Height, 0, 0, clred);
Dxpaintbox1.repaint;
End
End.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.