ImageProcessing.ArtemBurashnikov 1.0.0


Image Type

Represents an image with pixel data.

Record fields

Record Field Description

Data

Full Usage: Data

Field type: byte array
Field type: byte array

Height

Full Usage: Height

Field type: int
Field type: int

Name

Full Usage: Name

Field type: string
Field type: string

VirtualData

Full Usage: VirtualData

Field type: VirtualArray<byte>
Field type: VirtualArray<byte>

Width

Full Usage: Width

Field type: int
Field type: int

Constructors

Constructor Description

Image(data, width, height, name)

Full Usage: Image(data, width, height, name)

Parameters:
    data : byte array
    width : int
    height : int
    name : string

Returns: Image
data : byte array
width : int
height : int
name : string
Returns: Image

Image(data, virtualData, width, height, name)

Full Usage: Image(data, virtualData, width, height, name)

Parameters:
    data : byte array
    virtualData : VirtualArray<byte>
    width : int
    height : int
    name : string

Returns: Image
data : byte array
virtualData : VirtualArray<byte>
width : int
height : int
name : string
Returns: Image