com.qcloud.cos.model.ciModel.template.MediaWaterMarkText Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cos_api-bundle Show documentation
Show all versions of cos_api-bundle Show documentation
A single bundled dependency that includes all service and dependent JARs with third-party libraries
relocated to different namespaces.
package com.qcloud.cos.model.ciModel.template;
/**
* 水印Text实体类 https://cloud.tencent.com/document/product/460/48176
*/
public class MediaWaterMarkText {
/**
* 水印类内容 长度不超过64个字符,仅支持中文、英文、数字、_、-和*
*/
private String text;
/**
* 字体大小 值范围:[5 100],单位为px
*/
private String fontSize;
/**
* 字体颜色
*/
private String fontColor;
/**
* 字体
*/
private String fontType;
/**
* 透明度 值范围:[1 100],单位为%
*/
private String transparency;
public String getText() {
return text;
}
public void setText(String text) {
this.text = text;
}
public String getFontSize() {
return fontSize;
}
public void setFontSize(String fontSize) {
this.fontSize = fontSize;
}
public String getFontColor() {
return fontColor;
}
public void setFontColor(String fontColor) {
this.fontColor = fontColor;
}
public String getTransparency() {
return transparency;
}
public void setTransparency(String transparency) {
this.transparency = transparency;
}
public String getFontType() {
return fontType;
}
public void setFontType(String fontType) {
this.fontType = fontType;
}
@Override
public String toString() {
return "MediaWaterMarkText{" +
"text='" + text + '\'' +
", fontSize='" + fontSize + '\'' +
", fontColor='" + fontColor + '\'' +
", transparency='" + transparency + '\'' +
'}';
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy