Page 1 of 1
Forum

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!



Share:
Notifications
Clear all

[Solved] Delphi - TBitmap loaded from a JPG/JPEG

1 Posts
1 Users
0 Reactions
2,382 Views
 Hans
(@hans)
Famed Member Admin
Joined: 12 years ago
Posts: 2859
Topic starter  

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);
...


   
ReplyQuote
Share: