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

com.dynamicpdf.api.imaging.ImageSize Maven / Gradle / Ivy

Go to download

A Java Client API that uses the DynamicPDF Cloud API to create, merge, split, form fill, stamp, secure/encrypt PDF documents.

The newest version!
package com.dynamicpdf.api.imaging;

/**
 * Base class for image size types.
 */
public abstract class ImageSize {
    private ImageSizeType type;

    /**
     * Gets the type of the image size.
     * @return The type of the image size.
     */
    public ImageSizeType getType() {
        return type;
    }

    /**
     * Sets the type of the image size.
     * @param type The type of the image size.
     */
    public void setType(ImageSizeType type) {
        this.type = type;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy