本文整理自网络,侵删。
function StreamGetFileType(aStream:TStream):String;var Buffer:Word;begin Result := ''; aStream.Position := 0; if aStream.Size=0 then exit; aStream.ReadBuffer(Buffer,2); case Buffer of $4D42:Result := 'bmp'; $D8FF:Result := 'jpeg'; $4947:Result := 'gifp'; $050A:Result :='pcx'; $5089:Result :='png'; $4238:Result :='psd'; $A659:Result :='ras'; $DA01:Result :='sgi'; $4949:Result :='tiff'; end;end;
相关阅读 >>
Delphi tstringlist 自带 split 用法
Delphi xe 取得 app 自己的版本号 (狠跨 4 个平台)
Delphi 在unicodestring中使用utf-8字符串
更多相关阅读请进入《Delphi》频道 >>