Home/Guides/Converter
๐ŸŒConverter

When an Upload Form Rejects WebP: Convert It Properly, Do Not Rename It

Forms check extensions against lists written before WebP existed. Why renaming the file fails, which format to pick, and what to do about size limits.

6 min read

'Please upload a JPG or PNG'

You saved an image from Google Images or a website, went to attach it to a job application, a marketplace listing or a government form, and the form refused it. The file ends in .webp. Sometimes the message is explicit; sometimes the upload button simply does nothing, or the file appears greyed out in the picker. The image itself is fine. The form is checking file extensions against a list written before WebP was common, and WebP is not on it.

Why so many forms still reject WebP

WebP arrived in 2010 and every browser has supported it since 2020, so the refusal is rarely about display. It is about what happens after the upload:

  • Server-side processing. An older image library on the server may not decode WebP, so the safest thing the developer could do was exclude it from the allow-list.
  • Downstream systems. Applicant tracking systems, print workflows and document management tools frequently accept only JPEG and PNG, so the web form matches the weakest link in the chain.
  • Security policy. Allow-lists are deliberately conservative. Adding a format requires review, and nobody has asked.
  • The form is simply old. A great many public-sector and enterprise upload forms have not been touched in a decade.

None of these are things you can influence, which is why converting is the whole answer.

JPG or PNG: pick by what is in the image

The image isConvert toWhy
A photographJPGPhotographic compression is what JPEG is for; the result is small and universally accepted
A logo, icon or diagram with a transparent backgroundPNGJPEG cannot store transparency; converting to JPG fills the background with a solid colour permanently
A screenshot with textPNGLossless, so text stays crisp; JPEG puts ringing around letters
A profile or ID photo for a formJPGAlmost every form expects JPEG here, often with a size limit as well
A scanned documentJPG for size, PNG for legibilityJudge by whether small print stays readable

Use WebP to JPG or WebP to PNG accordingly. For a folder of them, the Bulk Image Converter processes the batch and returns a ZIP.

Do not just rename the file

The most common piece of advice on forums is to change photo.webp to photo.jpg. It is a bad idea and it fails in a way that wastes your time later. The extension is only a label; the bytes inside still begin with the WebP signature RIFF....WEBP. What follows:

  • Forms that check only the extension accept the upload, and the image then fails to render on the other side, or arrives broken in someone's inbox.
  • Forms that inspect the file's magic bytes โ€” increasingly common โ€” reject it anyway, now with a confusing error.
  • Server-side resizing or thumbnailing crashes, which in a job application means a silently damaged submission you never learn about.

A real conversion decodes the pixels and writes a genuine JPEG or PNG. That is a different operation from renaming, and it is the one that works.

If the form also has a size limit

Converting WebP to JPG usually makes the file larger โ€” WebP is roughly 25โ€“35% more efficient than JPEG at the same quality โ€” so a file that comfortably fitted a 2 MB cap as WebP can exceed it as JPG. When that happens the order of operations matters:

  • Convert to JPG first, so you know the real starting size in the format the form accepts.
  • Then use Compress to Target Size, which searches for the JPEG quality that lands just under a limit you type in, rather than guessing at a quality slider.
  • If the form also caps pixel dimensions โ€” passport photos and ID uploads usually do โ€” resize before compressing, since fewer pixels is a much cheaper saving than lower quality.

Stopping WebP downloads at the source

Google Images serves WebP because that is what the source site published. A few habits reduce the nuisance: open the image on its original page and check for a download link, which often provides a JPEG; or use the browser's screenshot capability for reference images, which produces a PNG. Browser extensions that force JPEG downloads exist, but they typically work by re-encoding locally โ€” the same thing a converter does, with less control over quality and more permissions granted to an extension.

Frequently asked questions

Does converting WebP to JPG lose quality?

A little. Both are lossy, so you are re-encoding. At high JPEG quality the difference is invisible on a photograph. Convert once from the original rather than repeatedly from previous conversions.

My WebP has a transparent background. What happens in JPG?

Transparent pixels become solid, normally white or black depending on the tool. If the background matters, convert to PNG instead.

Why did the file get bigger after converting?

WebP compresses more efficiently than JPEG. The same picture needs more bytes as a JPEG. This is expected.

Can I convert an animated WebP?

Converting gives you a single still frame. For animation, keep it as WebP or export to GIF, which every form that accepts images tends to allow.

The form accepts PNG but my PNG is huge. What now?

Photographs are the worst case for PNG. If the form also accepts JPG, use JPG. If it only takes PNG, reduce pixel dimensions โ€” PNG size scales with pixel count, not with quality settings.

Is the image sent to a server to convert?

No. Decoding and re-encoding happen in your browser; the file never leaves your device.

Tools mentioned in this guide