VintaSoft Imaging .NET SDK 12.3: Documentation for .NET developer
Vintasoft.Imaging.Codecs.ImageFiles Namespace / ImageFileSource Class / WriteUInt32(UInt32) Method
Syntax Remarks Requirements SeeAlso
In This Topic
    WriteUInt32(UInt32) Method (ImageFileSource)
    In This Topic
    Writes a 32-bit unsigned integer to the stream of the image file using Encoding of this ImageFileSource and advances the stream position by four bytes.
    Syntax
    'Declaration
    
    <CLSCompliantAttribute(False)>
    Public Sub WriteUInt32( _
    ByVal value
    The 32-bit unsigned integer to write.
    As UInteger _
    )
    [CLSCompliant(False)]
    public void WriteUInt32(
    uint value
    )
    [CLSCompliant(False)]
    public: void WriteUInt32(
    uint value
    )
    [CLSCompliant(False)]
    public:
    void WriteUInt32(
    uint value
    )

    Parameters

    value
    The 32-bit unsigned integer to write.
    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