Delphi Image control to load BMP, JPG, GIF, PNG and other methods

Source: Internet
Author: User
Procedure Tform1.button1click (sender:tobject);
var
  jpg:tjpegimage;//To use the JPEG unit
begin
  //display JPG large picture in the way
  jpg: = tjpegimage.create;
  Jpg. LoadFromFile (Getcurrentdir () + ' \pic.jpg ');
  Image1.Picture.Bitmap.Assign (jpg); Because the IMG control is a BMP-based
  jpg. Free;

End;

Procedure Tform1.button2click (sender:tobject);
Begin
  //Load 24-bit HD BMP picture (small, most can be established)
  Image1.Picture.Bitmap.LoadFromFile (Getcurrentdir () + ' \pic24 bit-large. bmp ');
End;

Procedure Tform1.button3click (sender:tobject);
var
  png:tpngimage;
Begin
  PNG: = Tpngimage. Create;
  Png. LoadFromFile (Getcurrentdir () + ' \pic.png ');
  Image1.Picture.Bitmap.Assign (PNG);
  Png. Free;
End;

Procedure Tform1.button4click (sender:tobject);
var
  gif:tgifimage;
Begin
  GIF: = tgifimage. Create;
  Gif. LoadFromFile (Getcurrentdir () + ' \pic.png ');
  Image1.Picture.Bitmap.Assign (GIF);
  Gif. Free;
End

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.