com.clickntap.api.to.ImageProducer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of click_framework Show documentation
Show all versions of click_framework Show documentation
Java Framework based on Spring Framework, Freemarker and Simplicity
The newest version!
package com.clickntap.api.to;
import java.util.List;
public interface ImageProducer {
public ImageSet imageSetFromPdf(String pdfUrl, List sizes, boolean jpg) throws Exception;
public ImageSet svgSetFromPdf(String pdfUrl) throws Exception;
}