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


    本例效果图:



    代码文件:
    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);
      end;
    
    var
      Form1: TForm1;
    
    implementation
    
    {$R *.dfm}
    
    procedure TForm1.Button1Click(Sender: TObject);
    const
      ImgPath1 = 'C:\Temp\DX.jpg';
    begin
      DXPaintBox1.DIB.LoadFromFile(ImgPath1);
      DXPaintBox1.Width := DXPaintBox1.DIB.Width;
      DXPaintBox1.Height := DXPaintBox1.DIB.Height;
      DXPaintBox1.Repaint;
    end;
    
    procedure TForm1.Button2Click(Sender: TObject);
    var
      r: TRect;
    begin
      r := Bounds(10, 10, 80, 80);
      DXPaintBox1.DIB.DoSpotLight(100, r);
      DXPaintBox1.Repaint;
    end;
    
    end.
    

  • 相关阅读:
    php 延迟静态绑定: static关键字
    python分片
    用逗号分隔数字,神奇
    ubuntu 屏幕截图
    js 获取随机数
    netty : NioEventLoopGroup 源码分析
    LinkedList 源码分析
    面向对象
    JS
    网页
  • 原文地址:https://www.cnblogs.com/del/p/1377323.html
Copyright © 2011-2022 走看看