I am about to purchase Developer OEM before that can you please confirm whether in this license I will be able to convert JPG to WEBP also the Image need to be save in 4 different sizes which will be automatically converted. The 4 different dimensions are PRINT, PRESS, WEB, THUMB.
Can you please provide more details about the specific dimensions for PRINT, PRESS, WEB, and THUMB, as well as the programming language you intend to use for the conversion?
We are using ASP.NET CORE. The 4 dimensions are:
PRINT <35MB | No Ratio | TIFF | CMYK
PRESS <2MB | 1650 WPIX| RGB (Extention .jpg)
WEB 350-600kb | 1200 WPIX | RGB (Extention .webp)
THUMB 40-200 KB | 400 WPIX | RGB (Extention .webp)
Our library has the ability to resize an image and save it in webp format.
You can check this before purchasing a license.
Here is an example of use:
using (var image = Image.Load("image.jpg"))
{
image.ResizeWidthProportionally(400);
image.Save("image.webp");
}