VintaSoft Twain .NET SDK 15.4: Documentation for .NET developer
Vintasoft.WiaImageScanning Namespace / WiaScanPlanar Enumeration
Syntax Members Hierarchy Requirements SeeAlso
In This Topic
WiaScanPlanar Enumeration
In This Topic
Specifies available modes, which determine how color channels (pixels) are stored in memory when transferring an uncompressed image from an image scanner.
Syntax
'Declaration

Public Enum WiaScanPlanar
   Inherits System.Enum

public enum WiaScanPlanar : System.Enum

Members
MemberDescription
PackedChunkyPacked chunky. All color channels of one pixel follow one another in memory. Example (RGB): R1 G1 B1 R2 G2 B2 R3 G3 B3...
PackedPlanarPacked planar. The image is divided into planes. First comes the byte array for the Red channel of the entire image, then for Green, then for Blue. Example (RGB): [R1 R2 R3...] [G1 G2 G3...] [B1 B2 B3...]
Inheritance Hierarchy

System.Object
   System.ValueType
      System.Enum
         Vintasoft.WiaImageScanning.WiaScanPlanar

Requirements

Target Platforms: .NET 10; .NET 9; .NET 8; .NET 7; .NET 6; .NET Framework 4.8, 4.7, 4.6, 4.5, 4.0, 3.5

See Also