Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

Edit

I use D2010 and i want to know how is it possible exactly ?

  • open an exe file
  • convert its content into base64
share|improve this question

2 Answers

up vote 26 down vote accepted

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;
share|improve this answer
I use D2010 and i want to know how is it possible exactly ? 1-open an exe file 2-convert its content into base64 ? – Kermia Apr 26 '11 at 19:34
1  
The unit is also available in D2010. I edited my answer to include an example. – Uwe Raabe Apr 26 '11 at 19:35
3  
For those using ancient Delphi versions, equivalent functions are found somewhere in the Indy's Mime Encoding stuff. – Warren P Apr 26 '11 at 21:01
1  
@Warren: specifically, Indy's IdCoderMIME unit contains base64-enabled classes. – Remy Lebeau Apr 26 '11 at 23:03
3  
There's also the CryptBinaryToString function from Crypt32.dll (WinXP+) for those with older Delphi version. – Ken Bourassa Apr 27 '11 at 1:59
show 6 more comments

In ancient Delphi versions, you can use synapse (link here)

Just put synacode.pas in your uses e call EncodeBase64/EncodeBase64.

Cheers

share|improve this answer
1  
Synapse doesn't come with any version of Windows. Maybe you meant indy? – Marco van de Voort Apr 20 '12 at 12:31

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.