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 在memo查找字符并定位

Delphi url 中文编解码

Delphi的控制台程式添加图标

Delphi 如何判断字符串是否是有效email地址

Delphi formactivate与formshow事件有什么区别

Delphi查找程序坐标 获取鼠标 模拟鼠标

Delphi获取文件大小

Delphi 连接 ssl tls 1.2

Delphi webbrowser 表单赋值模拟点击

Delphi xe5 android 发短信以及目录

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



打赏

取消

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

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

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

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

评论

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