コード例 #1
0
ファイル: SWAFile.cs プロジェクト: Oxigen2/Oxigen
        public SWAFile(string filePath)
        {
            var lic = new Aspose.Flash.License();

            lic.SetLicense("Aspose.Flash.lic");
            _flashContainer = new FlashContainer(filePath);
        }
コード例 #2
0
        public SWAFile(Stream stream)
        {
            var lic = new Aspose.Flash.License();

            lic.SetLicense("Aspose.Flash.lic");
            _flashContainer = new FlashContainer(stream);
            stream.Close();
        }