AtalaImage Constructor (Int32, Int32, PixelFormat) |
Initialize a new instance of the
AtalaImage class specifying the Width, Height, and PixelFormat.
Namespace:
Atalasoft.Imaging
Assembly:
Atalasoft.dotImage (in Atalasoft.dotImage.dll) Version: 11.4.0.9.0.377 (.NET 4.5.2, x86)
Syntaxpublic AtalaImage(
int width,
int height,
PixelFormat pixelFormat
)
Public Sub New (
width As Integer,
height As Integer,
pixelFormat As PixelFormat
)
Parameters
- width
- Type: System.Int32
Width of the image. - height
- Type: System.Int32
Height of the image. - pixelFormat
- Type: Atalasoft.Imaging.PixelFormat
PixelFormat of the image.
Remarks The image data is not set to a particular color and might end up with some noise in the image. See the
overload with a specific color or palette index to fill the background with a specified color.
See Also