• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# OhosPixelMapInfos
2
3
4## Overview
5
6The **OhosPixelMapInfos** struct defines the information about a pixel map.
7
8**Since**
9
1010
11
12**Related Modules**
13
14[Image](image.md)
15
16
17## Summary
18
19
20### Member Variables
21
22| Name| Description|
23| -------- | -------- |
24| [width](#width) | Image width, in pixels.|
25| [height](#height) | Image height, in pixels.|
26| [rowSize](#rowsize) | Number of bytes per row.|
27| [pixelFormat](#pixelformat) | Pixel format.|
28
29
30## Member Variable Description
31
32
33### height
34
35```
36uint32_t OhosPixelMapInfos::height
37```
38
39**Description**
40
41Image height, in pixels.
42
43
44### pixelFormat
45
46```
47int32_t OhosPixelMapInfos::pixelFormat
48```
49
50**Description**
51
52Pixel format.
53
54
55### rowSize
56
57```
58uint32_t OhosPixelMapInfos::rowSize
59```
60
61**Description**
62
63Number of bytes per row.
64
65
66### width
67
68```
69uint32_t OhosPixelMapInfos::width
70```
71
72**Description**
73
74Image width, in pixels.
75