1# OhosPixelMapInfo 2 3 4## Overview 5 6Defines the pixel map information. 7 8**Since:** 98 10 11**Related Modules:** 12 13[Image](image.md) 14 15 16## Summary 17 18 19### Member Variables 20 21| Name | Description | 22| -------- | -------- | 23| [width](#width) | Image width, in pixels. | 24| [height](#height) | Image height, in pixels. | 25| [rowSize](#rowsize) | Number of bytes in each line. | 26| [pixelFormat](#pixelformat) | Pixel format. | 27 28 29## Member Variable Description 30 31 32### height 33 34 35``` 36uint32_t OhosPixelMapInfo::height 37``` 38**Description**<br> 39Image height, in pixels. 40 41 42### pixelFormat 43 44 45``` 46int32_t OhosPixelMapInfo::pixelFormat 47``` 48**Description**<br> 49Pixel format. 50 51 52### rowSize 53 54 55``` 56uint32_t OhosPixelMapInfo::rowSize 57``` 58**Description**<br> 59Number of bytes in each line. 60 61 62### width 63 64 65``` 66uint32_t OhosPixelMapInfo::width 67``` 68**Description**<br> 69Image width, in pixels. 70