All Downloads are FREE. Search and download functionalities are using the official Maven repository.

it.grabz.grabzit.enums.ImageFormat Maven / Gradle / Ivy

Go to download

GrabzIt enables web pages or HTML to be converted into a image, DOCX, rendered HTML or PDF document. Alternatively HTML tables can be extracted from the page as a CSV or Excel spreadsheet. Additionally GrabzIt allows you to convert online videos into animated GIF's.

There is a newer version: 3.5.5
Show newest version
/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

package it.grabz.grabzit.enums;

/**
 *
 * @author Administrator
 */
public enum ImageFormat {
    BMP8("bmp8"),
    BMP16("bmp16"),
    BMP24("bmp24"),
    BMP("bmp"),
    JPG("jpg"),
    TIFF("tiff"),
    PNG("png"),
    WEBP("webp");

    private String value;

    ImageFormat(String value)
    {
        this.value = value;
    }

    /**
     * @return the value
     */
    public String getValue() {
        return value;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy