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

com.day.cq.dam.api.s7dam.utils.PreviewUtils Maven / Gradle / Ivy

There is a newer version: 2024.11.18751.20241128T090041Z-241100
Show newest version
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