com.dynamicpdf.api.imaging.ImageSize Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dynamicpdf-api Show documentation
Show all versions of dynamicpdf-api Show documentation
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