| 引数名 | 型 | 説明 |
|---|---|---|
| strFilePath | string | 解析するSWFファイルのフルパス |
|
using (SWFImageReaderLibrary.SWFImageReaderLibrary objLibrary = new SWFImageReaderLibrary.SWFImageReaderLibrary()) { SWFImageReaderLibrary.SWFReadResult objReadResult = objLibrary.Read(txtFilePath.Text); for(int intCount = 0; intCount < objReadResult.Count; intCount++) |
| 引数名 | 型 | 説明 |
|---|---|---|
| arrayByte | byte[] | 解析するSWFファイルのバイナリデータ |
| using (SWFImageReaderLibrary.SWFImageReaderLibrary objLibrary = new SWFImageReaderLibrary.SWFImageReaderLibrary()) { SWFImageReaderLibrary.SWFReadResult objReadResult = objLibrary.Read(System.IO.File.ReadAllBytes(strFilePath)); for(int intCount = 0; intCount < objReadResult.Count; intCount++) |
| 変数名 | 型 | 説明 |
|---|---|---|
| Count | int | 抽出件数 |
| Images | List<SWFImageResult> | 抽出結果配列 |
| 変数名 | 型 | 説明 |
|---|---|---|
| Image | Bitmap | 抽出画像 |
| CharacterId | int | キャラクターID |