Getting Started in Visual Basic .NETBytescout SWF To Video SDK

This sample for Visual Basic .NET shows how to use SWF To Video SDK to convert SWF into an image (PNG image with transparency or BMP)

VB
Imports System.Diagnostics
Imports BytescoutSWFToVideoLib

Class Program
    Friend Shared Sub Main(args As String())
        ' Create an instance of SWFToVideo ActiveX object
        Dim z As New SWFToVideo()
        Dim converter As New SWFToVideo()

        ' Set debug log
        'converter.SetLogFile("log.txt");

        ' Register SWFToVideo
        converter.RegistrationName = "demo"
        converter.RegistrationKey = "demo"


        ' Enable trasparency - set BEFORE setting input SWF filename
        converter.RGBAMode = True

            ' Set input SWF file
            converter.InputSWFFileName = "Shapes.swf"


        ' Select 20th frame
        converter.StartFrame = 20
        converter.StopFrame = 20

        ' Run conversion
        converter.ConvertToPNG("result.png")

        ' Open the result in default application
        Process.Start("result.png")
    End Sub
End Class