DETECTOR
ЗАГРУЗИТЬ
ФАЙЛ
Ожидание файла...
Ожидание файла...
Tool guide
Sometimes you only need three facts about a picture: what its name ends in, which type the browser thinks it is, and exactly how many bytes it takes up. That comes up when an upload form rejects an "unsupported type", when a mailbox trims an attachment against a byte limit, or when you want to check the weight before sending it to a chat. The page reports those properties as soon as you pick a file, entirely inside your own tab. See also: save that PNG as a flat JPG, turn a detected HEIC file into JPG, bring the file down to a set KB size.
No, and we will not pretend otherwise. The extension shown comes from the file name, and the MIME type is reported by the operating system, which derives it from that same extension. Rename a .webp to .jpg and this page will say JPG. A genuine check means reading the first bytes and matching them against format signatures, which this tool does not do.
No, there is no conversion on this page; it only reports the properties of the file you picked. Use one of the dedicated converters instead — WebP to PNG, HEIC to JPG, PNG to JPG and the others in the related tools block. They run locally too, but they actually redraw the image and hand you a new file.
The browser returns an empty string when the system does not recognise the extension. That happens with files that have no extension at all, with newer formats such as AVIF or JXL on older Windows builds, and with downloads saved without a name. The picture itself may be perfectly fine — the type registry simply has no entry for it.
Divide by 1,048,576, that is by 1024 twice. For instance 3,145,728 B is exactly 3 MB. Be aware that Windows Explorer and various websites round differently, and some services count a megabyte as one million bytes, so the same file can read as 3.0 MB in one place and 3.1 MB in another.
No, the card lists only name, type and size. The dimensions live inside the file itself and would require decoding the image to read. If width and height are what you need, open the file in the resize or crop tool — both print the source resolution before you do anything.
No. The page touches only the properties of the File object the browser hands over after you choose it: name, type and length. The image content is never read, let alone transmitted, so you can safely inspect a document you would not want to upload anywhere.
Yes, the file field opens the gallery or the file manager. One caveat: an iPhone often hands apps a JPEG copy of a photo from the Photos library, so you will see image/jpeg where you expected HEIC. Pick the file through the Files app to inspect the real one.
Before: screenshot.webp, the form says "JPG and PNG only"
After: MIME: image/webp — the file has to be re-saved as PNG or JPG first
Before: photo.jpg, the application form allows at most 300 KB
After: Size: 612,480 B, roughly 598 KB — the shot needs to be compressed by half
Your rating and feedback help decide what to improve next.