你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

ImageMetadata 类

  • java.lang.Object
    • com.microsoft.azure.cognitiveservices.vision.computervision.models.ImageMetadata

public class ImageMetadata

图像元数据。

方法摘要

修饰符和类型 方法和描述
String format()

获取格式值。

int height()

获取高度值。

int width()

获取宽度值。

ImageMetadata withFormat(String format)

设置格式值。

ImageMetadata withHeight(int height)

设置高度值。

ImageMetadata withWidth(int width)

设置宽度值。

方法详细信息

format

public String format()

获取格式值。

Returns:

格式值

height

public int height()

获取高度值。

Returns:

高度值

width

public int width()

获取宽度值。

Returns:

宽度值

withFormat

public ImageMetadata withFormat(String format)

设置格式值。

Parameters:

format - 要设置的格式值

Returns:

ImageMetadata 对象本身。

withHeight

public ImageMetadata withHeight(int height)

设置高度值。

Parameters:

height - 要设置的高度值

Returns:

ImageMetadata 对象本身。

withWidth

public ImageMetadata withWidth(int width)

设置宽度值。

Parameters:

width - 要设置的宽度值

Returns:

ImageMetadata 对象本身。

适用于