com.github.tobato.fastdfs.domain.ThumbImageConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fastdfs-client Show documentation
Show all versions of fastdfs-client Show documentation
基于yuqih发布的代码与fastdfs-client 官方1.26版本的重构
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);
}