Indexed4bppBitmap Constructor
In This Topic
Initializes a new instance of the
Indexed4bppBitmap class.
Syntax
'Declaration
Public Function New( _
ByVal As System.Integer, _
ByVal As System.Integer, _
ByVal As System.Boolean, _
Optional ByVal As System.Boolean, _
Optional ByVal As System.Boolean, _
Optional ByVal As System.Single, _
Optional ByVal As System.Single _
)
public Indexed4bppBitmap(
System.int ,
System.int ,
System.bool ,
System.bool ,
System.bool ,
System.float ,
System.float
)
Parameters
- pixelWidth
- The width of the image, in pixels.
- pixelHeight
- The height of the image, in pixels.
- opaque
- Indicates whether the alpha channel should be ignored.
- premultiplied
- Indicates whether the color channels for all pixels are premultiplied by the alpha channel.
- lowerBitsFirst
- If true, pixels are arranged within a byte such that pixels with lower column indices are stored in the lower-order bit tetrads of the byte.
- dpiX
- The horizontal dpi of the image.
- dpiY
- The vertical dpi of the image.
See Also