Nevron Open Vision Documentation
Nevron.Nov Namespace / NDataUri Class / FromImage Method / FromImage(NImage) Method
The image to create a data URI from.


In This Topic
    FromImage(NImage) Method
    In This Topic
    Creates a Base64 data URI using the encoded data of the given image or encoding it to PNG if it is not already encoded. Returns null if the image serialization fails.
    Syntax
    'Declaration
     
    
    Public Overloads Shared Function FromImage( _
       ByVal image As NImage _
    ) As NDataUri
    'Usage
     
    
    Dim image As NImage
    Dim value As NDataUri
     
    value = NDataUri.FromImage(image)
    public static NDataUri FromImage( 
       NImage image
    )

    Parameters

    image
    The image to create a data URI from.
    Exceptions
    ExceptionDescription
    Thrown if the supplied image is null.
    Requirements

    Target Platforms: Windows 11, Windows 10, Windows 7, Windows Server 2019, Windows Server 2016, Windows Server 2012 R2, Windows Server 2012, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later)

    See Also