博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Delphi 与 DirectX 之 DelphiX(65): TDIB.DoBrightness();
阅读量:5941 次
发布时间:2019-06-19

本文共 782 字,大约阅读时间需要 2 分钟。

  hot3.png

本例效果图:
26152936_2GDa.gif

代码文件:

unit Unit1;interfaceuses  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);begin  DXPaintBox1.DIB.DoBrightness(32);  DXPaintBox1.Repaint;end;end.

转载于:https://my.oschina.net/hermer/blog/319031

你可能感兴趣的文章
<HTML5与CSS3实战指南>读书笔记之一些可能会有用的东西
查看>>
我的友情链接
查看>>
解决Chrome浏览器打开虾米音乐网页播放器时的排版问题
查看>>
Javascript操作table,tr,td和表格CSS样式设置小常识
查看>>
Kafka Architecture
查看>>
Reactive Streams
查看>>
访问者模式
查看>>
activemq高级客户端选项
查看>>
MySQL中TIMESTAMPDIFF和TIMESTAMPADD函数
查看>>
<转>用PHP开发企业Wifi网络Web认证系统(附源码)
查看>>
WePY框架开发的小程序如何在微信web开发者工具中运行起来
查看>>
No result for action XX.action and result error 错误处理
查看>>
UILabel 使用 标签,圆角,富文本
查看>>
oracle archivelog模式与非archivelog模式转换
查看>>
source insight快捷键及使用技巧
查看>>
西霞口船业公司疑遭外商合谋欺诈
查看>>
Java 枚举
查看>>
一段经典的js命名空间创建和链式调用代码
查看>>
Java实现队列 && 链式存储结构
查看>>
Akka 接收消息超时的处理_Receive Timeout
查看>>