1# OhosPixelMapCreateOps 2 3 4## Overview 5 6The **OhosPixelMapCreateOps** struct defines the options used for creating 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| [pixelFormat](#pixelformat) | Image format.| 27| [editable](#editable) | Editing type of the image.| 28| [alphaType](#alphatype) | Alpha type of the image.| 29| [scaleMode](#scalemode) | Scale mode of the image.| 30 31 32## Member Variable Description 33 34 35### alphaType 36 37``` 38uint32_t OhosPixelMapCreateOps::alphaType 39``` 40 41**Description** 42 43Alpha type of the image. 44 45 46### editable 47 48``` 49uint32_t OhosPixelMapCreateOps::editable 50``` 51 52**Description** 53 54Editing type of the image. 55 56 57### height 58 59``` 60uint32_t OhosPixelMapCreateOps::height 61``` 62 63**Description** 64 65Image height, in pixels. 66 67 68### pixelFormat 69 70``` 71int32_t OhosPixelMapCreateOps::pixelFormat 72``` 73 74**Description** 75 76Image format. 77 78 79### scaleMode 80 81``` 82uint32_t OhosPixelMapCreateOps::scaleMode 83``` 84 85**Description** 86 87Scale mode of the image. 88 89 90### width 91 92``` 93uint32_t OhosPixelMapCreateOps::width 94``` 95 96**Description** 97 98Image width, in pixels. 99