Delphi Image Format judgment

Source: Internet
Author: User

procedureTform1.checkimgtype (fn:string);varMyimage:tmemorystream;  Buffer:word; I:integer;beginMyImage:= Tmemorystream.Create; TryMyimage.loadfromfile (FN); Myimage.position:=0; ifMyimage.size =0  Then    beginShowMessage ('Error');    Exit; End; Myimage.readbuffer (Buffer,2); ifBuffer = $4d42 Then    beginShowMessage ('BMP'); End    Else ifBuffer = $D 8FF Then    beginShowMessage ('JPEG'); End    Else ifBuffer = $4947  Then    beginShowMessage ('GIF'); End    Else ifBuffer = $050a Then    beginShowMessage ('PCX'); End    Else ifBuffer = $5089  Then    beginShowMessage ('PNG'); End    Else ifBuffer = $4238  Then    beginShowMessage ('PSD'); End    Else ifBuffer = $A 659 Then    beginShowMessage ('RAS'); End    Else ifBuffer = $DA 01 Then    beginShowMessage ('SGI'); End    Else ifBuffer = $4949  Then    beginShowMessage ('TIFF'); End    Else //Direct Error if other types of files are present    beginShowMessage ('ERR'); End; finallyMyimage.free; End;End;

Delphi Image Format judgment

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.