com.tencentcloudapi.vod.v20180717.models.ImageWatermarkTemplate Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tencentcloud-sdk-java-vod Show documentation
Show all versions of tencentcloud-sdk-java-vod Show documentation
Tencent Cloud Open API SDK for Java
/*
* Copyright (c) 2017-2018 THL A29 Limited, a Tencent company. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.tencentcloudapi.vod.v20180717.models;
import com.tencentcloudapi.common.AbstractModel;
import com.google.gson.annotations.SerializedName;
import com.google.gson.annotations.Expose;
import java.util.HashMap;
public class ImageWatermarkTemplate extends AbstractModel{
/**
* 水印图片地址。
*/
@SerializedName("ImageUrl")
@Expose
private String ImageUrl;
/**
* 水印的宽度。支持 %、px 两种格式:
当字符串以 % 结尾,表示水印 Width 为视频宽度的百分比大小,如 10% 表示 Width 为视频宽度的 10%;
当字符串以 px 结尾,表示水印 Width 单位为像素,如 100px 表示 Width 为 100 像素。
*/
@SerializedName("Width")
@Expose
private String Width;
/**
* 水印的高度。支持 %、px 两种格式:
当字符串以 % 结尾,表示水印 Height 为视频高度的百分比大小,如 10% 表示 Height 为视频高度的 10%;
当字符串以 px 结尾,表示水印 Height 单位为像素,如 100px 表示 Height 为 100 像素;
0px:表示 Height 按照 Width 对视频宽度的比例缩放。
*/
@SerializedName("Height")
@Expose
private String Height;
/**
* 水印重复类型。使用场景:水印为动态图像。取值范围:
once:动态水印播放完后,不再出现;
repeat_last_frame:水印播放完后,停留在最后一帧;
repeat:水印循环播放,直到视频结束。
*/
@SerializedName("RepeatType")
@Expose
private String RepeatType;
/**
* 图片透明度,取值范围:[0, 100]
0:完全不透明
100:完全透明。
*/
@SerializedName("Transparency")
@Expose
private Long Transparency;
/**
* Get 水印图片地址。
* @return ImageUrl 水印图片地址。
*/
public String getImageUrl() {
return this.ImageUrl;
}
/**
* Set 水印图片地址。
* @param ImageUrl 水印图片地址。
*/
public void setImageUrl(String ImageUrl) {
this.ImageUrl = ImageUrl;
}
/**
* Get 水印的宽度。支持 %、px 两种格式:
当字符串以 % 结尾,表示水印 Width 为视频宽度的百分比大小,如 10% 表示 Width 为视频宽度的 10%;
当字符串以 px 结尾,表示水印 Width 单位为像素,如 100px 表示 Width 为 100 像素。
* @return Width 水印的宽度。支持 %、px 两种格式:
当字符串以 % 结尾,表示水印 Width 为视频宽度的百分比大小,如 10% 表示 Width 为视频宽度的 10%;
当字符串以 px 结尾,表示水印 Width 单位为像素,如 100px 表示 Width 为 100 像素。
*/
public String getWidth() {
return this.Width;
}
/**
* Set 水印的宽度。支持 %、px 两种格式:
当字符串以 % 结尾,表示水印 Width 为视频宽度的百分比大小,如 10% 表示 Width 为视频宽度的 10%;
当字符串以 px 结尾,表示水印 Width 单位为像素,如 100px 表示 Width 为 100 像素。
* @param Width 水印的宽度。支持 %、px 两种格式:
当字符串以 % 结尾,表示水印 Width 为视频宽度的百分比大小,如 10% 表示 Width 为视频宽度的 10%;
当字符串以 px 结尾,表示水印 Width 单位为像素,如 100px 表示 Width 为 100 像素。
*/
public void setWidth(String Width) {
this.Width = Width;
}
/**
* Get 水印的高度。支持 %、px 两种格式:
当字符串以 % 结尾,表示水印 Height 为视频高度的百分比大小,如 10% 表示 Height 为视频高度的 10%;
当字符串以 px 结尾,表示水印 Height 单位为像素,如 100px 表示 Height 为 100 像素;
0px:表示 Height 按照 Width 对视频宽度的比例缩放。
* @return Height 水印的高度。支持 %、px 两种格式:
当字符串以 % 结尾,表示水印 Height 为视频高度的百分比大小,如 10% 表示 Height 为视频高度的 10%;
当字符串以 px 结尾,表示水印 Height 单位为像素,如 100px 表示 Height 为 100 像素;
0px:表示 Height 按照 Width 对视频宽度的比例缩放。
*/
public String getHeight() {
return this.Height;
}
/**
* Set 水印的高度。支持 %、px 两种格式:
当字符串以 % 结尾,表示水印 Height 为视频高度的百分比大小,如 10% 表示 Height 为视频高度的 10%;
当字符串以 px 结尾,表示水印 Height 单位为像素,如 100px 表示 Height 为 100 像素;
0px:表示 Height 按照 Width 对视频宽度的比例缩放。
* @param Height 水印的高度。支持 %、px 两种格式:
当字符串以 % 结尾,表示水印 Height 为视频高度的百分比大小,如 10% 表示 Height 为视频高度的 10%;
当字符串以 px 结尾,表示水印 Height 单位为像素,如 100px 表示 Height 为 100 像素;
0px:表示 Height 按照 Width 对视频宽度的比例缩放。
*/
public void setHeight(String Height) {
this.Height = Height;
}
/**
* Get 水印重复类型。使用场景:水印为动态图像。取值范围:
once:动态水印播放完后,不再出现;
repeat_last_frame:水印播放完后,停留在最后一帧;
repeat:水印循环播放,直到视频结束。
* @return RepeatType 水印重复类型。使用场景:水印为动态图像。取值范围:
once:动态水印播放完后,不再出现;
repeat_last_frame:水印播放完后,停留在最后一帧;
repeat:水印循环播放,直到视频结束。
*/
public String getRepeatType() {
return this.RepeatType;
}
/**
* Set 水印重复类型。使用场景:水印为动态图像。取值范围:
once:动态水印播放完后,不再出现;
repeat_last_frame:水印播放完后,停留在最后一帧;
repeat:水印循环播放,直到视频结束。
* @param RepeatType 水印重复类型。使用场景:水印为动态图像。取值范围:
once:动态水印播放完后,不再出现;
repeat_last_frame:水印播放完后,停留在最后一帧;
repeat:水印循环播放,直到视频结束。
*/
public void setRepeatType(String RepeatType) {
this.RepeatType = RepeatType;
}
/**
* Get 图片透明度,取值范围:[0, 100]
0:完全不透明
100:完全透明。
* @return Transparency 图片透明度,取值范围:[0, 100]
0:完全不透明
100:完全透明。
*/
public Long getTransparency() {
return this.Transparency;
}
/**
* Set 图片透明度,取值范围:[0, 100]
0:完全不透明
100:完全透明。
* @param Transparency 图片透明度,取值范围:[0, 100]
0:完全不透明
100:完全透明。
*/
public void setTransparency(Long Transparency) {
this.Transparency = Transparency;
}
public ImageWatermarkTemplate() {
}
/**
* NOTE: Any ambiguous key set via .set("AnyKey", "value") will be a shallow copy,
* and any explicit key, i.e Foo, set via .setFoo("value") will be a deep copy.
*/
public ImageWatermarkTemplate(ImageWatermarkTemplate source) {
if (source.ImageUrl != null) {
this.ImageUrl = new String(source.ImageUrl);
}
if (source.Width != null) {
this.Width = new String(source.Width);
}
if (source.Height != null) {
this.Height = new String(source.Height);
}
if (source.RepeatType != null) {
this.RepeatType = new String(source.RepeatType);
}
if (source.Transparency != null) {
this.Transparency = new Long(source.Transparency);
}
}
/**
* Internal implementation, normal users should not use it.
*/
public void toMap(HashMap map, String prefix) {
this.setParamSimple(map, prefix + "ImageUrl", this.ImageUrl);
this.setParamSimple(map, prefix + "Width", this.Width);
this.setParamSimple(map, prefix + "Height", this.Height);
this.setParamSimple(map, prefix + "RepeatType", this.RepeatType);
this.setParamSimple(map, prefix + "Transparency", this.Transparency);
}
}