zoukankan      html  css  js  c++  java
  • Delphi 与 DirectX 之 DelphiX(33): TDIB.SmoothRotateWrap();


    本例效果图:



    代码文件:
    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;
        procedure Button1Click(Sender: TObject);
        procedure Button2Click(Sender: TObject);
        procedure FormCreate(Sender: TObject);
        procedure FormDestroy(Sender: TObject);
      end;
    
    var
      Form1: TForm1;
    
    implementation
    
    {$R *.dfm}
    
    var
      dib: TDIB;
    
    procedure TForm1.Button1Click(Sender: TObject);
    const
      ImgPath1 = 'C:\Temp\DX.jpg';
    begin
      dib.LoadFromFile(ImgPath1);
      DXPaintBox1.DIB.Assign(dib);
      DXPaintBox1.Width := dib.Width;
      DXPaintBox1.Height := dib.Height;
      DXPaintBox1.Repaint;
    end;
    
    procedure TForm1.Button2Click(Sender: TObject);
    begin
      DXPaintBox1.DIB.SmoothRotateWrap(dib, dib.Width div 2, dib.Height div 2, 15.5);
      DXPaintBox1.DIB.Assign(dib);
      DXPaintBox1.Repaint;
    end;
    
    procedure TForm1.FormCreate(Sender: TObject);
    begin
      dib := TDIB.Create;
    end;
    
    procedure TForm1.FormDestroy(Sender: TObject);
    begin
      dib.Free;
    end;
    
    end.
    

  • 相关阅读:
    <DC guide ---6>
    <DC guide ---5>
    <DC guide ---3>
    <DC guide ---4>
    linux下的EDA——VCS使用
    xilinx小实验——chipscope指导
    VGA控制的verilog模块设计
    verilog时钟分频设计(整合模块)
    verilog时钟分频设计
    testbench——双向端口的仿真
  • 原文地址:https://www.cnblogs.com/del/p/1377059.html
Copyright © 2011-2022 走看看