Convert WebP to JPG
JDeli is able to convert WEBP to JPEG image files.
How to convert WEBP to JPEG image file in Java
- Read WEBP image into Java
BufferedImage image = JDeli.read(webpImageFile);
-
Process image if needed
- Write out Java image as JPEG
File jpgImageFile = new File("Image.jpg"); JDeli.write(image, "jpg", jpgImageFile);
JDeli can also do this in ONE step with the convert method. You can also do this by reading a WEBP image and then writing the image as JPEG, which is useful if you want to process the image in some way.
Convert any images to JPEG from Command Line or another language
java -jar jdeli.jar --convert jpg "inputFileOrDir" "outputDir"
Single step method to convert from WEBP into a JPEG image file in Java
JDeli.convert(File inFile, File outFile);
JDeli.convert(InputStream inFile, OutputStream outfile, String format);
byte[] outputData = JDeli.convert(byte[] inputData, String format);
Depending on the image formats being converted (ie different image compression options), JDeli also provides overloaded methods. These can be used to supply conversion options for more control over the conversion process.