delphi BitmapCompress
unit Unit2;
interface
uses
System.SysUtils, System.Types, System.UITypes, System.Classes, System.Variants,
FMX.Types, FMX.Controls, FMX.Forms, FMX.Graphics, FMX.Dialogs,math,FMX.Surfaces,
FMX.Controls.Presentation, FMX.StdCtrls, FMX.Objects;
type
TForm2 = class(TForm)
Button1: TButton;
Image1: TImage;
OpenDialog1: TOpenDialog;
Image2: TImage;
Timer1: TTimer;
Label1: TLabel;
procedure Button1Click(Sender: TObject);
procedure Timer1Timer(Sender: TObject);
private
class function BitmapCompress(ABitmap: TBitmap): TBitmap;
{ Private declarations }
public
{ Public declarations }
end;
var
Form2: TForm2;
implementation
{$R *.fmx}
{ TForm2 }
class function TForm2.BitmapCompress(ABitmap: TBitmap): TBitmap; //耗时耗内存,待优化
var
SaveParams:TBitmapCodecSaveParams;
Astream,bstream:TMemorystream;
Surf: TBitmapSurface;
intoldSize:Int64;
CompressQuality:integer;
BBitmap:TBitmap;
ratio:double;
begin
Astream:=TMemorystream.Create;
Bstream:=TMemorystream.Create;
BBitmap:=TBitmap.Create;
ABitmap.SaveToStream(Astream);
//ratio:=Astream.Size/1024;
// ratio:= 10000/ratio;
//CompressQuality:=ceil(10000/ratio);
// if Astream.Size/1024>4096 then
// CompressQuality:=5
if Astream.Size/1024>2048 then //大图小于15之后失真严重
CompressQuality:=15
else if Astream.Size/1024>1024 then
CompressQuality:=20
else if Astream.Size/1024>512 then
CompressQuality:=50
else if Astream.Size/1024>256 then
CompressQuality:=60
else if Astream.Size/1024>128 then
CompressQuality:=70
else if Astream.Size/1024<50 then
CompressQuality:=100
else
CompressQuality:=80;
//showmessage(CompressQuality.ToString);
SaveParams.Quality:=CompressQuality;
Surf:=TBitmapSurface.Create;
Surf.Assign(Abitmap);
try
if not TBitmapCodecManager.SaveToStream(bStream, Surf, 'jpg',@SaveParams) then
begin
showmessage('图片压缩失败!');
exit;
end;
except
showmessage('图片压缩意外错误!');
exit;
end;
try
if Astream.Size<Bstream.Size then
begin
// Astream.SaveToFile('d:\2.jpg');
BBitmap.LoadFromStream(Astream);
end
else
begin
// bstream.SaveToFile('d:\2.jpg');
BBitmap.LoadFromStream(bstream);
end;
except
showmessage('图片存储失败!');
exit;
end;
BBitmap.SaveToFile('d:\1111.jpg');
result:= BBitmap;
end;
procedure TForm2.Button1Click(Sender: TObject);
var
ABitmap:Tbitmap;
StartTime,EndTime:cardinal;
begin
ABitmap :=FMX.Graphics.TBitmap.Create;
opendialog1.filter:='图片文件(*.bmp;*.png;*.jpeg;*.jpg)|*.bmp;*.png;*.jpeg;*.jpg';
if OpenDialog1.Execute then
begin
//StartTime:=GetTickCount;
ABitmap.LoadFromFile(OpenDialog1.FileName);
// Timer1.Enabled:=true;
image1.Bitmap.LoadFromFile(OpenDialog1.FileName);
image2.Bitmap.Assign(BitmapCompress(ABitmap));
end;
//Timer1.Enabled:=false;
end;
procedure TForm2.Timer1Timer(Sender: TObject);
var
BeginCount,Endcount,StartCount:Cardinal;
begin
// BeginCount:=GetTickCount;//只适用于windows,还没有找到移动端方法计算程序运行时间
end;
end.
delphi BitmapCompress的更多相关文章
- 学习笔记:7z在delphi的应用
最近做个发邮件的功能,需要将日志文件通过邮件发送回来用于分析,但是日志文件可能会超级大,测算下来一天可能会有800M的大小.所以压缩是不可避免了,delphi中的默认压缩算法整了半天不太好使,就看了看 ...
- delphi连接sql存储过程
针对返回结果为参数的 一. 先建立自己的存储过程 ALTER PROCEDURE [dbo].[REName] ) AS BEGIN select ROW_NUMBER() over(order by ...
- delphi 2010与delphi XE破解版的冲突
在系统中同时安装了Dephi 2010LITE版与Delphi XE lite后,总是会有一个有问题 是因为两者都是读取C:\ProgramData\Embarcadero目录下的license文件, ...
- [Delphi] Delphi版本号对照
VER300 Delphi Seattle / C++Builder Seattle 23 230 (Delphi:Win32/Win64/OSX/iOS32/iOS64/An ...
- delphi tidhttp 超时设置无效的解决方法
现在delphi都发布到xe8了,tidhttp还有缺陷,那就是超时设置在没有网络或者连不上服务器的时候是无效的,不管你设置为多少都要10-20秒.connectTimeout和readTimeout ...
- Delphi Code Editor 之 编辑器选项
Delphi Code Editor 之 编辑器选项 可从Code Editor的右键菜单中选择“Properties”菜单项来查看编辑器选项.也可以从主菜单[Tools | Editor Optio ...
- Delphi使用ADO进行数据库编程
Delphi是一个可视化的编程工具,ADO编程也是这样,所以话不多言,直接通过代码.截图和语言来说明. 我的数据库是Oracle,为了测试,先建一个表:create table practice(un ...
- 怎么使用Delphi获取当前的时间,精确到毫秒
先介绍一个可能比较常用的方法,获取当前时间 var datetime: string; begin datetime:= FormatDateTime('yyyy-mm-dd hh:mm:ss', N ...
- Delphi在创建和使用DLL的时候如果使用到string,请引入ShareMem单元
当使用了长字符串类型的参数.变量时,如string,要引用ShareMem. 虽然Delphi中的string功能很强大,但若是您编写的Dll文件要供其它编程语言调用时,最好使用PChar类型.如果您 ...
随机推荐
- Django之路:模型(数据库)和自定义Field以及数据表的更改
一.Django 模型(数据库) Django模型是与数据库相关的,与数据库相关的代码一般写在models.py中,Django支持sqlite3,MySQL,PostgreSQL等数据库,只需要在s ...
- JAVA基础---面向对象
方法的重载Overload: 一个类中可以定义有相同的名字, 参数不同的多个方法. 调用时, 会根据不同的参数选择对应的方法. static: 在数据区, 可以计数,属于类,不属于对象: public ...
- pthread_join
摘要:pthread_join使一个线程等待另一个线程束. 代码中如果没有pthread_join主线程会很快结束从而使整个进程结束,从而使创建的线程没有机会开始执行就结束了.加入pthread_jo ...
- Windows Azure Storage Client Library 2.0 入门
入门连接如下: http://gauravmantri.com/2012/11/17/storage-client-library-2-0-migrating-table-storage-code/
- mssql数据库syscolumns表中xtype列
xtype 类型34 image35 text36 uniqueidentifier48 tinyint52 smallint56 int58 smalldatetime59 real60 mo ...
- php CI 实战教程:如何去掉index.php目录
Windows下自由创建.htaccess文件的N种方法 .htaccess是apache的访问控制文件,apache中httpd.conf的选项配合此文件,完美实现了目录.站点的访问控制,当然最多的 ...
- Cocos2dx 学习笔记整理----场景切换
据说Cocos2dx场景切换的方法有32种:cocos2dx 常见的32种切换场景的动画 无需一一求证,只需要知道切换场景需要怎么做就行了. 作为导演CCDirector,切换场景的事情当然归它管了. ...
- 11.10document对象练习
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/ ...
- Openlayers实现第一张地图
<html><head><title>OpenLayers Hello World</title> <style type="text/ ...
- [Unity Shader]Shader前述
什么是Shader Shader,也就是着色器,它的工作就是读取你的网格并渲染在屏幕上.Shader可以定义一些属性,你会用它来影响渲染模型时所显示的效果.当存储了这些属性的设置时,就是一个Mat ...