Welcome to the Tweaking4All community forums!
When participating, please keep the Forum Rules in mind!
Topics for particular software or systems: Start your topic link with the name of the application or system.
For example “MacOS X – Your question“, or “MS Word – Your Tip or Trick“.
Please note that switching to another language when reading a post will not bring you to the same post, in Dutch, as there is no translation for that post!
[Solved] Delphi - TBitmap loaded from a JPG/JPEG
Delphi, Lazarus, Free Pascal
(@hans)
Famed Member Admin
Joined: 12 years ago
Posts: 2859
Topic starter
August 29, 2013 9:01 AM
Delphi allows to load a jpeg file into a TImage, however will not "populate" the TBitmap of that TImage, yet show the image.
To get a jpeg loaded correctly (if you want to manipulate the TBitmap), then the following procedure works much cleaner (unit jpeg is needed for that, which comes with Delphi):
var
JPEG1 : TJepegImage;
...
JPEG1:=TJpegImage.Create;
JPEG1.Performance:=jpBestQuality;
JPEG1.LoadFromFile(FileName);
Image1.Picture.Bitmap.Assign(JPEG1);
...