您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
13 行
521 B
13 行
521 B
using Unity.UIWidgets.async2;
|
|
using Unity.UIWidgets.ui;
|
|
|
|
namespace Unity.UIWidgets.painting {
|
|
public partial class painting_ {
|
|
public static Future<ui.Image> decodeImageFromList(byte[] bytes) {
|
|
Future<Codec> codec = PaintingBinding.instance.instantiateImageCodec(bytes);
|
|
Future<FrameInfo> frameInfo = codec.then_<FrameInfo>(code => code.getNextFrame());
|
|
var result = frameInfo.then_<Image>(frame => FutureOr.value(frame.image));
|
|
return result;
|
|
}
|
|
}
|
|
}
|