再学GDI+[93]: TGPImage(13)

本例效果图:

代码文件:unit Unit1;
interface
uses
 Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
 Dialogs, StdCtrls, ComCtrls;
type
 TForm1 = class(TForm)
  TrackBar1: TTrackBar;
  TrackBar2: TTrackBar;
  TrackBar3: TTrackBar;
  TrackBar4: TTrackBar;
  Label1: TLabel;
  Label2: TLabel;
  Label3: TLabel;
  Label4: TLabel;
  procedure FormPaint(Sender: TObject);
  procedure FormCreate(Sender: TObject);
  procedure FormDestroy(Sender: TObject);
  procedure TrackBar1Change(Sender: TObject);
  procedure TrackBar2Change(Sender: TObject);
  procedure TrackBar3Change(Sender: TObject);
  procedure TrackBar4Change(Sender: TObject);
 end;
var
 Form1: TForm1;
implementation
{$R *.dfm}
uses GDIPOBJ, GDIPAPI;
var
 img: TGPImage;
 var
 ColorMatrix: TColorMatrix = (
  (1.0, 0.0, 0.0, 0.0, 0.0),
  (0.0, 1.0, 0.0, 0.0, 0.0),
  (0.0, 0.0, 1.0, 0.0, 0.0),
  (0.0, 0.0, 0.0, 1.0, 0.0),
  (0.0, 0.0, 0.0, 0.0, 1.0));
procedure TForm1.FormCreate(Sender: TObject);
begin
 img := TGPImage.Create('c:\temp\test.png'); {这是专门加工的颜色测试图片}
 TrackBar1.Height := 23;
 TrackBar1.ShowSelRange := False;
 TrackBar1.Max := 100;
 TrackBar1.Position := TrackBar1.Max;
 TrackBar2.Height := 23;
 TrackBar2.ShowSelRange := False;
 TrackBar2.Max := 100;
 TrackBar2.Position := TrackBar2.Max;
 TrackBar3.Height := 23;
 TrackBar3.ShowSelRange := False;
 TrackBar3.Max := 100;
 TrackBar3.Position := TrackBar3.Max;
 TrackBar4.Height := 23;
 TrackBar4.ShowSelRange := False;
 TrackBar4.Max := 100;
 TrackBar4.Position := TrackBar4.Max;
 DoubleBuffered := True;
end;
procedure TForm1.FormDestroy(Sender: TObject);
begin
 img.Free;
end;
procedure TForm1.FormPaint(Sender: TObject);
var
 g: TGPGraphics;
 ImageAttributes: TGPImageAttributes;
begin
 g := TGPGraphics.Create(Canvas.Handle);
 ImageAttributes := TGPImageAttributes.Create;
 ColorMatrix[0,0] := TrackBar1.Position / 100; {调整红色}
 ColorMatrix[1,1] := TrackBar2.Position / 100; {调整绿色}
 ColorMatrix[2,2] := TrackBar3.Position / 100; {调整蓝色}
 ColorMatrix[3,3] := TrackBar4.Position / 100; {调整透明度}
 ImageAttributes.SetColorMatrix(ColorMatrix);
 g.DrawImage(img,                      {要绘制的图像}
       MakeRect(10, 10, img.GetWidth, img.GetHeight), {图像将放缩以适合此矩形}
       0, 0,                     {绘图位置}
       img.GetWidth, img.GetHeight,          {大小}
       UnitPixel,                   {单位}
       ImageAttributes                {图像属性}
       );
 ImageAttributes.Free;
 g.Free;
end;
procedure TForm1.TrackBar1Change(Sender: TObject);
begin
 Repaint;
end;
procedure TForm1.TrackBar2Change(Sender: TObject);
begin
 Repaint;
end;
procedure TForm1.TrackBar3Change(Sender: TObject);
begin
 Repaint;
end;
procedure TForm1.TrackBar4Change(Sender: TObject);
begin
 Repaint;
end;
end.

时间: 2024-08-30 09:55:21

再学GDI+[93]: TGPImage(13)的相关文章

再学GDI+[97]: TGPImage(17)

获取GDI+所支持的可编码.可解码的图像格式 其实这和 TGPImage 是没有关系的. 本例效果图: 代码文件:unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls; type TForm1 = class(TForm) Memo1: TMemo; procedure FormCreate(Sender: TO

再学GDI+[95]: TGPImage(15)

我通过做此例同时证实了 GDI+ 可以直接显示 png.gif.tif 格式的透明图片. //红色与绿色绕蓝色旋转(r 是弧度) ColorMatrix: TColorMatrix = ( (Cos(r), Sin(r), 0.0, 0.0, 0.0), (-Sin(r), Cos(r), 0.0, 0.0, 0.0), (0.0, 0.0, 1.0, 0.0, 0.0), (0.0, 0.0, 0.0, 1.0, 0.0), (0.0, 0.0, 0.0, 0.0, 1.0)); //绿色与蓝

再学GDI+[99]: TGPImage(19)

本例效果图: 代码文件:unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls, ExtCtrls; type TForm1 = class(TForm) OpenDialog1: TOpenDialog; Button1: TButton; Button2: TButton; procedure FormCrea

再学GDI+[92]: TGPImage(12)

本例效果图: 代码文件:unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls, ComCtrls; type TForm1 = class(TForm) TrackBar1: TTrackBar; procedure FormCreate(Sender: TObject); procedure FormPaint

再学GDI+[91]: TGPImage(11)

本例效果图: 代码文件:unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls; type TForm1 = class(TForm) CheckBox1: TCheckBox; procedure FormCreate(Sender: TObject); procedure FormPaint(Sender: T

再学GDI+[88]: TGPImage(8)

本例效果图: 代码文件:unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls; type TForm1 = class(TForm) CheckBox1: TCheckBox; procedure FormCreate(Sender: TObject); procedure FormDestroy(Sender:

再学GDI+[87]: TGPImage(7)

本例效果图: 代码文件:unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs; type TForm1 = class(TForm) procedure FormCreate(Sender: TObject); procedure FormDestroy(Sender: TObject); procedure FormPaint(S

再学GDI+[86]: TGPImage(6)

本例效果图: 代码文件:unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs; type TForm1 = class(TForm) procedure FormCreate(Sender: TObject); procedure FormDestroy(Sender: TObject); procedure FormPaint(S

再学GDI+[84]: TGPImage(4)

本例效果图: 代码文件:unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs; type TForm1 = class(TForm) procedure FormPaint(Sender: TObject); procedure FormCreate(Sender: TObject); procedure FormDestroy(S