delphi图片增加文字水印


本文整理自网络,侵删。

 
function JpgToBmp(FilePath: string): string;
var     MyJPEG: TJPEGImage;     
MyBMP: TBitmap;     
s: string; begin     
Result := '';     
s := copy(FilePath, 1, Length(FilePath) - 3) + 'bmp';     
MyJPEG := TJPEGImage.Create;     
with MyJPEG do     
begin         
LoadFromFile(FilePath);         
MyBMP := TBitmap.Create;         
with MyBMP do       
 begin           
 Width := MyJPEG.Width;             Height := MyJPEG.Height;             
Canvas.Draw(0, 0, MyJPEG);             
SaveToFile(s);             
Result := s;             
Free;         
end;       
 Free;   
 end;
end;

function BmpToJpg(FilePath: string): string; var     
Jpg: TJpegImage;     BMP: TBitMap;     s:string;
begin     
s := copy(FilePath, 1, Length(FilePath) - 3) + 'jpg';     
Jpg := TJpegImage.Create;     
BMP := TBitmap.Create;   
 BMP.LoadFromFile(FilePath);   
 Jpg.Assign(BMP);     
Jpg.SaveToFile(s);   
 BMP.Free;     
Jpg.Free; end;

 
测试只能对Bmp格式图片加文字,如果要使用jpg,需要使用上面函数转换
procedure TForm1.btn1Click(Sender: TObject);
begin
    with img1.Picture do
    begin
        LoadFromFile('c:\1.bmp');
        Bitmap.Canvas.Brush.Style:= bsClear;
        Bitmap.Canvas.Font.Size:=15;
        Bitmap.Canvas.Font.Name:='黑体';
        Bitmap.Canvas.Font.Color:=clWhite;
        Bitmap.Canvas.TextOut(20,10,'甘A12345');
        Bitmap.Canvas.TextOut(20,30,'石家庄纽斯达交通科技有限公司');
        SaveToFile('c:\1.bmp');
    end;
end;
 
――――――――――――――――

原文链接:https://blog.csdn.net/lqena/article/details/22851851

相关阅读 >>

Delphi 多重循环

Delphi inttohex

程序人生 : 30岁,我的程序员梦想

Delphi+汇编例子

Delphi 写变速齿轮外挂

Delphi 如何编写需要启动参数的Delphi程序

Delphi 格式化输出函数(2): formatdatetime

Delphi 设置本地系统时间

Delphi 实现文件实施监控

Delphi 完全自定义窗体风格的实现

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



打赏

取消

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

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

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

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

评论

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