Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Include a JPEG in your EXE file

How To

Include a JPEG in your EXE file

by  DelphiAaron  Posted    (Edited  )
Create a resource script file MyPic.RC with Notepad and add the following line:

1 RCDATA "Pic.jpg"

Then use Borland's Resource Compiler BRCC32.EXE (a commandline tool) to compile it into a .RES file:

BRCC32 MyPic.RC

Add a compiler directive to the source code of your program.
It should immediately follow the form directive, as shown here:

{$R *.DFM}
{$R MyPic.RES}

Use the following code in your application:

procedure LoadJPEGfromEXE;
var
MyJPG : TJPEGImage; // JPEG object
ResStream : TResourceStream; // Resource Stream object
begin
try
MyJPG := TJPEGImage.Create;
ResStream := TResourceStream.CreateFromID(HInstance, 1, RT_RCDATA);
MyJPG.LoadFromStream(ResStream); // What!? Yes, that easy!
Canvas.Draw(12,12,MyJPG); // draw it to see if it really worked!
finally
MyJPG.Free;
ResStream.Free;
end;
end; // procedure
Register to rate this FAQ  : BAD 1 2 3 4 5 6 7 8 9 10 GOOD
Please Note: 1 is Bad, 10 is Good :-)

Part and Inventory Search

Back
Top