CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Jul 1999
    Posts
    5

    How can i examine graphics format?

    How can i examine grafics format? For example, aaa.jpg is agraphics file.


  2. #2
    Join Date
    Apr 1999
    Posts
    27,449

    Re: How can i examine graphics format?

    You have to get the specifications of the graphics format. JPEG has nothing to do with Windows or VC++.

    Usually all graphics file formats comes with a header record or a structure definition that is defined by the first few bytes of a file. You need to see if the first n bytes of a file matches a particular graphics file format header. There are many places on the web, as well as a lot of documentation that describes each graphics file layout and a description of the header record.

    Regards,

    Paul McKenzie


Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured