FZ_FormBase.GetBitmapImage

Gets the image data of the logging file

Public Shared Function GetBitmapImage( _
    ByVal fileName As String, _
    ByVal imageNo As Integer, _
    ByVal sizeX As Integer, _
    ByVal sizeY As Integer _
) As Drawing.Bitmap

Parameters
fileName
File name
Input
imageNo
Image number
Input
sizeX
Image size X to be gotten
Output
sizeY
Image size Y to be gotten
Output

Return Value
The obtained image data.

Description
Gets the image data of the logging file.

Example
    Private Sub btnOK_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnOK.Click

        Dim sizeX As Integer
        Dim sizeY As Integer

        ' Gets the image data of the logging file
        GetBitmapImage("abcd", 0, sizeX, sizeY)

    End Sub