Binary to Base64 (Delphi)

前端 未结 2 832
一个人的身影
一个人的身影 2020-11-27 19:20

how can i get content of an exe file and convert it into Base64 encoding ?

Edit

I use D2010 and i wan

2条回答
  •  生来不讨喜
    2020-11-27 20:01

    In Delphi 2009/2010/XE there is unit EncdDecd.pas (Soap.EncdDecd.pas for Delphi XE2) containing the functions EncodeBase64 and DecodeBase64. You can load the exe file into a memorystream and then call EncodeBase64.

    function EncodeFile(const FileName: string): AnsiString;
    var
      stream: TMemoryStream;
    begin
      stream := TMemoryStream.Create;
      try
        stream.LoadFromFile(Filename);
        result := EncodeBase64(stream.Memory, stream.Size);
      finally
        stream.Free;
      end;
    end;
    

提交回复
热议问题