OpenAI's DALL-E produces images, but as webp files which can be awkward to work with. I have code here below for a web page that you can save locally that will allow you to select and convert a webp file. Meantime, here's the working conversion routine:
Convert WebP to PNG
OpenAI should fix this (as well as the response issues which has me using Gemini and Poe more often than not). Having to convert the image is a dumb workaround, but that is what you are left with. I have, in the past had to do various things with images, and although it can be a bit awkward if you are not familiar with it, ImageMagick is surprisingly competent with conversions and a vanilla type conversion is intuitively simple. Confusingly, the ImageMagick executable is 'convert'. To convert a webp to a png:
magick convert WhyThis.webp WhyThis.png
** With some installations, convert can be called on its own: convert in.webp out.png
You can find ImageMagick here.
https://imagemagick.org/index.php
Note: I took a look at the files output as webp, gif, and png . The webp savings in size are considerate:
657,688 in.webp
1,247,110 Out.gif
3,391,612 Out.png
If I were in charge, I probably would have gone with the webp as well, but I would have made it clear it was happening, and why, and I would have provided a tool to at least convert that locally.
No comments:
Post a Comment