We’ve created and updating regularly our sample code library so you may quickly learn SWF parameters to PNG and the step-by-step process in C#. ByteScout SWF To Video SDK was made to help with SWF parameters to PNG in C#. ByteScout SWF To Video SDK is the library that can take SWF (Flash Macromedia) files and convert into WMV or AVI video with sound. Dynamic flash movie scenes, variables, actionscripts are supported and you also may adjust output video size, framerate and quality.
C#, code samples for C#, developers help to speed up the application development and writing a code when using ByteScout SWF To Video SDK. Follow the instruction from the scratch to work and copy and paste code for C# into your editor. You can use these C# sample examples in one or many applications.
Trial version can be obtained from our website for free. It includes this and other source code samples for C#.
On-demand (REST Web API) version:
Web API (on-demand version)
On-premise offline SDK for Windows:
60 Day Free Trial (on-premise)
// x64 IMPORTANT NOTE: set CPU to x86 to build in x86 mode.
using System.Diagnostics;
using BytescoutSWFToVideo;
namespace SwfParametersToPng
{
class Program
{
static void Main(string[] args)
{
// Create an instance of SWFToVideo ActiveX object
SWFToVideo converter = new SWFToVideo();
// Set debug log
//converter.SetLogFile("log.txt");
// Register SWFToVideo
converter.RegistrationName = "demo";
converter.RegistrationKey = "demo";
// Set a value for the variable
// (!) You should call SetVariable() before SetMovie()
converter.SetVariable("Variable1", "hi this is passed variable");
// Enable trasparency - BEFORE setting input SWF file
converter.RGBAMode = true;
// set input SWF file
converter.InputSWFFileName = "MovieDisplayPassedVar.swf";
// Select first frame
converter.StartFrame = 0;
converter.StopFrame = 0;
// Run conversion
converter.ConvertToPNG("result.png");
// release resources
System.Runtime.InteropServices.Marshal.ReleaseComObject(converter);
converter = null;
// Open the result in default application
Process.Start("result.png");
}
}
}
60 Day Free Trial or Visit ByteScout SWF To Video SDK Home Page
Explore ByteScout SWF To Video SDK Documentation
Explore Samples
Sign Up for ByteScout SWF To Video SDK Online Training
Get Your API Key
Explore Web API Docs
Explore Web API Samples
60 Day Free Trial or Visit ByteScout SWF To Video SDK Home Page
Explore ByteScout SWF To Video SDK Documentation
Explore Samples
Sign Up for ByteScout SWF To Video SDK Online Training
Get Your API Key
Explore Web API Docs
Explore Web API Samples