gpg::SnapshotMetadataChange::CoverImage

#include <snapshot_metadata_change_cover_image.h>

一个单一的数据结构,允许您访问有关特定封面图像状态的信息。

摘要

构造函数和析构函数

CoverImage(std::shared_ptr< const SnapshotMetadataChangeCoverImageImpl > impl)
从指向 CoverImageImplshared_ptr 构造一个 CoverImage
CoverImage(const CoverImage & copy_from)
创建现有 CoverImage 的副本。
CoverImage(CoverImage && move_from)
移动现有的 CoverImage
~CoverImage()

公有函数

Data() const
const std::vector< uint8_t > &
要设置为封面图像的图像数据。
Height() const
int
图像的高度(以像素为单位)。
MimeType() const
const std::string &
要设置为封面图像的图像文件的 MIME 类型。
Width() const
int
图像的宽度(以像素为单位)。
operator=(const CoverImage & copy_from)
通过将另一个 CoverImage 移动到其中来分配此 CoverImage
operator=(CoverImage && move_from)
赋值运算符,用于将此 CoverImage 的值从另一个 CoverImage 分配过来。

公有函数

CoverImage

 CoverImage(
  std::shared_ptr< const SnapshotMetadataChangeCoverImageImpl > impl
)

从指向 CoverImageImplshared_ptr 构造一个 CoverImage

供 API 内部使用。

CoverImage

 CoverImage(
  const CoverImage & copy_from
)

创建现有 CoverImage 的副本。

CoverImage

 CoverImage(
  CoverImage && move_from
)

移动现有的 CoverImage

数据

const std::vector< uint8_t > & Data() const 

要设置为封面图像的图像数据。

此字节向量格式由封面图像的 MimeType() 定义。

高度

int Height() const 

图像的高度(以像素为单位)。

MIME 类型

const std::string & MimeType() const 

要设置为封面图像的图像文件的 MIME 类型。

例如“image/png”。

宽度

int Width() const 

图像的宽度(以像素为单位)。

operator=

CoverImage & operator=(
  const CoverImage & copy_from
)

通过将另一个 CoverImage 移动到其中来分配此 CoverImage

operator=

CoverImage & operator=(
  CoverImage && move_from
)

赋值运算符,用于将此 CoverImage 的值从另一个 CoverImage 分配过来。

右值引用版本。

~CoverImage

 ~CoverImage()