![JAR search and dependency download from the Maven repository](/logo.png)
com.day.cq.dam.api.s7dam.utils.PreviewUtils Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aem-sdk-api Show documentation
Show all versions of aem-sdk-api Show documentation
The Adobe Experience Manager SDK
package com.day.cq.dam.api.s7dam.utils;
import com.day.cq.dam.api.Asset;
import org.apache.sling.api.resource.Resource;
import org.osgi.annotation.versioning.ProviderType;
@ProviderType
public interface PreviewUtils {
/**
* Check based on asset type if asset is supported for image preview or not
* @param asset Asset
object for which preview is being checked
* @return boolean
*/
public boolean isImagePreviewSupported(Asset asset);
/**
* Checks whether a resource has dam:scene7Type : Image, AnimatedGif, PsdTemplate, Illustrator, PostScript, Pdf.
* @param resource Resource
object for which preview is being checked
* @return boolean
*/
public boolean isDynamicRenditionSupported(Resource resource);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy