• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# OhosImageSize
2
3
4## Overview
5
6The **OhosImageSize** struct defines the image size. It is a member variable of [OhosImageDecodingOps](_ohos_image_decoding_ops.md).
7
8**System capability**: SystemCapability.Multimedia.Image
9
10**Since**: 10
11
12**Related module**: [Image](image.md)
13
14
15## Summary
16
17
18### Member Variables
19
20| Name| Description|
21| -------- | -------- |
22| int32_t [width](#width) | Image width, in pixels. |
23| int32_t [height](#height) | Image height, in pixels. |
24
25
26## Member Variable Description
27
28
29### height
30
31```
32int32_t OhosImageSize::height
33```
34
35**Description**
36
37Image height, in pixels.
38
39
40### width
41
42```
43int32_t OhosImageSize::width
44```
45
46**Description**
47
48Image width, in pixels.
49