VintaSoft Imaging .NET SDK 12.3: Documentation for .NET developer
Vintasoft.Imaging.Codecs.ImageFiles Namespace / ImageFileSource Class / ReadUInt32Values(Int32) Method
Syntax Remarks Requirements SeeAlso
In This Topic
    ReadUInt32Values(Int32) Method (ImageFileSource)
    In This Topic
    Reads an array of 32-bit unsigned integer values from the stream of the image file using encoding of this ImageFileSource and advances the position of the stream by (count*4) bytes.
    Syntax
    'Declaration
    
    <CLSCompliantAttribute(False)>
    Public Function ReadUInt32Values( _
    ByVal count
    The number of values to read.
    As System.Int32 _
    ) As UInteger[]
    [CLSCompliant(False)]
    public uint[] ReadUInt32Values(
    System.Int32 count
    )
    [CLSCompliant(False)]
    public: uint[] ReadUInt32Values(
    System.Int32 count
    )
    [CLSCompliant(False)]
    public:
    uint[] ReadUInt32Values(
    System.Int32 count
    )

    Parameters

    count
    The number of values to read.

    Return Value

    An array of 32-bit unsigned integer values read from the stream of the image file.
    Remarks

    Encoding (little-endian, big-endian or something else) of the ImageFileSource can be set using ToUInt32 methods.

    Requirements

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

    See Also