.NET
基于 .NET 软件框架的 Microsoft 技术。
88 个问题
maui的image中的source怎么与TagLib中的xxx.Tag.Pictures连接起来,有什么办法转换
你好,
以下是我的答案,
if(xxx.Tag.Pictures.Length >0 ){
var xxx = TagLib.File.Create(filePath);
byte[] pictureBox = xxx.Tag.Pictures[0].Data.Data;
MemoryStream ms = new MemoryStream(pictureBox);
var streamImageSource = new StreamImageSource();
streamImageSource.Stream = (token) => Task.FromResult<Stream>(ms);
//below is a image
monster.Source = streamImageSource;
}
如果答案是正确的,请点击“接受答案”并点赞。 如果您对此答案还有其他疑问,请点击“评论”。
注意:如果您想接收相关电子邮件,请按照我们的文档中的步骤启用电子邮件通知 此线程的通知。