• 从内存中比较图片


    var
        MS1,MS2:TMemoryStream;
        FileName1,FileName2:string;
    begin
        MS1:=TMemoryStream.Create;
        MS2:=TMemoryStream.Create;
        FileName1:= 'C:\Documents   and   Settings\Administrtor\My   Documents\My   Pictures\200311813492623679.JPG ';
        FileName2:= 'C:\Documents   and   Settings\Administrtor\My   Documents\My   Pictures\200311813502850073.JPG ';
        try
            MS1.LoadFromFile(FileName1);
            MS2.LoadFromFile(FileName2);
            if   MS1.Size <> MS2.Size   then
            begin
                ShowMessage( '不同 ');
                Exit;
            end;
            if   CompareMem(MS1.Memory,MS2.Memory,MS1.Size)   then
                ShowMessage( '相同 ')
            else
                ShowMessage( '不同 ');
        finally
            MS1.Free;
            MS2.Free;
        end;
    end;

  • 相关阅读:
    css3
    如何去渲染数据?
    ajax
    Java多线程-线程安全
    java多线程-基础
    Git-团队开放中的代码同步与提交
    IDEA 调试Spring-boot 应用
    微服务-各种pom的配置和注解
    微服务-服务与注册中心
    微服务
  • 原文地址:https://www.cnblogs.com/zhusd/p/1870929.html
Copyright © 2020-2023  润新知