Delphi 比较两个位图是否相同


本文整理自网络,侵删。

 
function IsBmpSame(bmp1,bmp2: TBitmap): Boolean;   
var  
  i,j: Integer;   
  ScanLine1,ScanLine2: PByteArray;   
  Count: Integer;   
begin  
  Result := (bmp1.Height = bmp2.Height) and  
            (bmp1.Width = bmp2.Width) and  
            (bmp1.PixelFormat = bmp2.PixelFormat);   
  if Result then  
  begin  
    i := Integer(bmp1.PixelFormat);   
    if i < 4 then  
      i := 4  
    else if i = 4 then  
      inc(i);   
    Count := (i - 3) * bmp1.Width - 1;   
    for i:=0 to bmp1.Height-1 do  
    begin  
      ScanLine1 := bmp1.ScanLine[i];   
      ScanLine2 := bmp2.ScanLine[i];
      for j := 0 to Count do  
        if ScanLine1[j] <> ScanLine2[j] then  
        begin  
          Result := False;   
          Exit;   
        end;   
    end;   
  end;   

end

 

来源:http://www.coder163.com/language/delphi/

相关阅读 >>

Delphi 查询当前进程的内存使用大小

Delphi 调用批处理

Delphi链接自己的主页和邮件

Delphi windows 编程[15] - 菜单消息: wm_command

Delphi 侧边栏隐藏窗体

Delphi 获取上一次文件访问时间

Delphi format函数的用法

Delphi cxdbtreelist:最简单的节点图标添加方法

Delphi汉字的拼音简码

Delphi通过进程名获取进程pid函数

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



打赏

取消

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

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

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

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

评论

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

    正在狠努力加载,请稍候...