How to view type images = image / webp?

Hi, I have an endpoint where the request sends me an image, but the type of image loaded is image / webp
and I can't see that image through an app, it just gives me a code message !

Someone knows a form to transform this type of image to view in the app images like this ??

Thank you

retool_imgwebp_1|690x144

Hey @gib-iglesias :wave:

You should be able to display webp images through HTML. Here's our docs for Base64 images -- just use something like <img src="{{ request.result }}">. Let me know if this works!

Yes i try, and i put this way

@gib-iglesias could you try either:

  1. Removing the data:image/webp;base64, prefix and just referencing the data
  2. Using the <picture> tag in HTML instead?

Pulling from here: