Hi,
I am trying to create flash from SVG with Aspose.Flash for .NET and the function "FromSVG".
But i get an error "Index was outside the bounds of the array." all the time.
This is the code:
'Create a flash container
Dim fc As New FlashContainer()
'read svg file into file stream
Dim fs As New FileStream("C:\Shared\ImgTest\Test.svg", FileMode.Open, FileAccess.Read)
'create from SVG
fc = FlashContainer.FromSVG(fs, True)
fc.Write("test.swf")
What can be the problem?
Best regards,
Thomas