再学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(Sender: TObject);
  procedure FormMouseDown(Sender: TObject; Button: TMouseButton;
   Shift: TShiftState; X, Y: Integer);
  procedure FormMouseMove(Sender: TObject; Shift: TShiftState; X, Y: Integer);
  procedure FormMouseUp(Sender: TObject; Button: TMouseButton;
   Shift: TShiftState; X, Y: Integer);
 private
  procedure RectToPoints;
 end;
var
 Form1: TForm1;
implementation
{$R *.dfm}
uses GDIPOBJ, GDIPAPI;
var
 img: TGPImage;
 flag: Integer = -1;
 ClickImg: Boolean;
 rt: TRect;
 pts: array[0..7] of TPoint;
 x1,y1: Integer;
{从矩形中获取八个点, 因要反复使用, 故提取为一个独立的过程}
procedure TForm1.RectToPoints;
begin
 pts[0] := rt.TopLeft;
 pts[1] := Point(rt.Left, rt.Top + (rt.Bottom - rt.Top) div 2);
 pts[2] := Point(rt.Left, rt.Bottom);
 pts[3] := Point(rt.Left + (rt.Right - rt.Left) div 2, rt.Bottom);;
 pts[4] := rt.BottomRight;
 pts[5] := Point(rt.Right, rt.Top + (rt.Bottom - rt.Top) div 2);;
 pts[6] := Point(rt.Right, rt.Top);;
 pts[7] := Point(rt.Left + (rt.Right - rt.Left) div 2, rt.Top);
end;
procedure TForm1.FormCreate(Sender: TObject);
const
 ImgPath = 'c:\temp\test.png';
var
 w,h: Integer;
begin
 if not FileExists(ImgPath) then Exit;
 img := TGPImage.Create(ImgPath);
 w := img.GetWidth;
 h := img.GetHeight;
 rt.Left := (ClientWidth - w) div 2;
 rt.Top := (ClientHeight - h) div 2;
 rt.Right := rt.Left + w;
 rt.Bottom := rt.Top + h;
 RectToPoints;
 DoubleBuffered := True;
end;
procedure TForm1.FormDestroy(Sender: TObject);
begin
 img.Free;
end;
procedure TForm1.FormPaint(Sender: TObject);
var
 g: TGPGraphics;
 p: TGPPen;
 i: Integer;
begin
 g := TGPGraphics.Create(Canvas.Handle);
 p := TGPPen.Create(aclRed);
 g.DrawImage(img, MakeRect(rt));
 if ClickImg then
  for i := 0 to Length(pts) - 1 do
   g.DrawRectangle(p, MakeRect(pts[i].X - 3, pts[i].Y - 3, 6, 6));
 p.Free;
 g.Free;
end;
procedure TForm1.FormMouseDown(Sender: TObject; Button: TMouseButton;
 Shift: TShiftState; X, Y: Integer);
var
 i: Integer;
begin
 flag := -1;
 for i := 0 to Length(pts) - 1 do
  if PtInRect(Bounds(pts[i].X - 3, pts[i].Y - 3, 6, 6), Point(X, Y)) then
  begin
   flag := i;
   Break;
  end;
 if flag = -1 then
 begin
  ClickImg := PtInRect(rt, Point(X,Y));
  Repaint;
 end else begin
  x1 := X;
  y1 := Y;
 end;
end;
procedure TForm1.FormMouseMove(Sender: TObject; Shift: TShiftState; X,
 Y: Integer);
begin
 if flag = -1 then Exit;
 case flag of
  0: begin Inc(rt.Left, X-x1); Inc(rt.Top, Y-y1) end;
  1: begin Inc(rt.Left, X-x1) end;
  2: begin Inc(rt.Left, X-x1); Inc(rt.Bottom, Y-y1) end;
  3: begin Inc(rt.Bottom, Y-y1) end;
  4: begin Inc(rt.Right, X-x1); Inc(rt.Bottom, Y-y1) end;
  5: begin Inc(rt.Right, X-x1) end;
  6: begin Inc(rt.Right, X-x1); Inc(rt.Top, Y-y1) end;
  7: begin Inc(rt.Top, Y-y1) end;
 end;
 x1 := X;
 y1 := Y;
 RectToPoints;
 Repaint;
end;
procedure TForm1.FormMouseUp(Sender: TObject; Button: TMouseButton;
 Shift: TShiftState; X, Y: Integer);
begin
 flag := -1;
end;
end.

窗体文件:object Form1: TForm1
 Left = 0
 Top = 0
 Caption = 'Form1'
 ClientHeight = 246
 ClientWidth = 346
 Color = clBtnFace
 Font.Charset = DEFAULT_CHARSET
 Font.Color = clWindowText
 Font.Height = -11
 Font.Name = 'Tahoma'
 Font.Style = []
 OldCreateOrder = False
 Position = poDesktopCenter
 OnCreate = FormCreate
 OnDestroy = FormDestroy
 OnMouseDown = FormMouseDown
 OnMouseMove = FormMouseMove
 OnMouseUp = FormMouseUp
 OnPaint = FormPaint
 PixelsPerInch = 96
 TextHeight = 13
end

时间: 2024-08-30 09:34:47

再学GDI+[87]: TGPImage(7)的相关文章

再学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+[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+[81]: TGPImage(1)

已知 GDI+ 可以支持的图像格式: BMP.JPEG.GIF.TIFF.PNG.ICO.WMF.EMF TGPGraphics.DrawImage 函数有太多重载了, 一起列在这吧:function DrawImage(image: TGPImage; const point: TGPPointF): TStatus; overload; function DrawImage(image: TGPImage; x, y: Single): TStatus; overload; function

再学GDI+[103]: TGPImage(23)

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

再学GDI+[100]: TGPImage(20)

本例效果图: 代码文件:unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls, TeCanvas; type TForm1 = class(TForm) ButtonColor1: TButtonColor; Button1: TButton; procedure FormCreate(Sender: TObje

再学GDI+[94]: TGPImage(14)

本例效果图: 代码文件: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; Label1: TLabel

再学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: TTr

再学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