delphi 简单的旋转图像角度代码


本文整理自网络,侵删。

 

uses Vcl.Imaging.jpeg;


procedure Rotate90(Source: TGraphic; Target: TJpegImage);

var
SourceBmp, TargetBmp: TBitmap;
r, c: Integer;
x, y: Integer;
begin
SourceBmp := TBitmap.Create;
SourceBmp.Assign(Source);
TargetBmp := TBitmap.Create;
TargetBmp.Width := SourceBmp.Height;
TargetBmp.Height := SourceBmp.Width;
for r := 0 to SourceBmp.Height - 1 do
begin
for c := 0 to SourceBmp.Width - 1 do
begin
//x := (SourceBmp.Height-1) - r; // -90
//y := c; //-90
x := r; //90
y := (SourceBmp.Width-1) - c; //90
// look into Bitmap.ScanLine for faster pixel access
TargetBmp.Canvas.Pixels[x, y] := SourceBmp.Canvas.Pixels[c, r];
end;
end;
Target.Assign(TargetBmp);
SourceBmp.Free;
TargetBmp.Free;
end;
procedure TForm1.Button1Click(Sender: TObject);
var
Jpeg: TJPEGImage;
begin
Jpeg := TJPEGImage.Create;
Rotate90(Image1.Picture.Graphic, Jpeg);
Image1.Picture.Assign(Jpeg);
Jpeg.Free;
end;

相关阅读 >>

Delphi 技巧 以相同类名派生一个子类

Delphi access 数据库压缩

Delphi randstring 随机字符串

Delphi读取一个access数据库中的表名

Delphi issameday、istoday - 判断是不是同一天、判断是不是今天

Delphi clientdataset 与fdmemtable 创建 字段与追加记录

Delphi app 横屏和竖屏

Delphi 计算imei的校验位

Delphi 对汉字字符串的截取问题

Delphi 文件路径相关的字符串操作

更多相关阅读请进入《Delphi》频道 >>



打赏

取消

感谢您的支持,我会继续努力的!

扫码支持
扫码打赏,您说多少就多少

打开支付宝扫一扫,即可进行扫码打赏哦

分享从这里开始,精彩与您同在

评论

管理员已关闭评论功能...