PROGRAM BITMAP_INFO; uses crt,dos,open,graphics; begin if does_file_exist(paramstr(1)+'.bmp') then bitmap_information; if does_file_exist(paramstr(1)+'.bmp')=false then writeln('File Not Found!'); END.