Trying to pull user images via the Facebook Social Graph.
Finding it odd that no matter what I upload the image as (gif, bmp, tiff, or jpg), my call to https://graph.fac
That's because FaceBook stores it as a jpg, because that is in general the most efficient image format for pictures. It's always a good idea to check if the data is what you expect. Checking image type is quite easy. It will always be a web format, which basically comes down to jpg, png and gif, with gif being very unlikely because of its limitations (GIF can contain 256 colors at most, and is generally larger than png. Has license limitations too). BMP is not a web format and cannot be displayed in most browsers. You will not get a BMP from that url.