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

com.github.tobato.fastdfs.domain.ThumbImageConfig Maven / Gradle / Ivy

There is a newer version: 1.27.2
Show newest version
package com.github.tobato.fastdfs.domain;

/**
 * 缩略图生成配置支持
 * 
 * @author tobato
 *
 */
public interface ThumbImageConfig {

    /**
     * 获得缩略图宽
     * 
     * @return
     */
    int getWidth();

    /**
     * 获得缩略图高
     * 
     * @return
     */
    int getHeight();

    /**
     * 获得缩略图前缀
     * 
     * @param path
     * @return
     */
    String getPrefixName();

    /**
     * 获得缩略图路径
     * 
     * @param masterFilename
     * @return
     */
    String getThumbImagePath(String masterFilename);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy