在图像控件中显示GIF帧

时间:2019-04-01 22:02:12

标签: c# uwp uwp-xaml animated-gif memorystream

我尝试在Image控件中显示加载的gif图像(来自文件)的单个框架。在Image控件内显示(完整)gif图像时,我没有任何问题,但是无法显示框架。为了进行测试,我总是尝试加载帧“ 0”(第一帧)。

XAML:

<Image>
    <Image.Source>
        <BitmapImage x:Name="GifFrame" AutoPlay="False" />
    </Image.Source>
</Image>

我实际上并没有在网上找到太多有关如何执行此操作的信息,但是这里有一些代码片段,不幸的是,有些可能来自WPF,我不确定100%是否也可以将它们用于UWP。

打开图像时,将调用以下“ _OnImageOpened ”方法( _gifStream 是打开的gif图像,流尚未关闭):

private IRandomAccessStream _gifStream = null;

private async void GifImage_OnImageOpened(object sender, RoutedEventArgs e)
{
    // ...

    uint frameCount = 0;
    if (_gifStream != null)
    {
        var decoder = await BitmapDecoder.CreateAsync(_gifStream);
        frameCount = decoder.FrameCount;

        var frame = await decoder.GetFrameAsync(0);

        // Create frame image
        var pixelData = await frame.GetPixelDataAsync(
            BitmapPixelFormat.Bgra8,
            BitmapAlphaMode.Premultiplied,
            new BitmapTransform(),
            ExifOrientationMode.IgnoreExifOrientation,
            ColorManagementMode.DoNotColorManage
            ).AsTask().ConfigureAwait(false);
        var frameBytes = pixelData.DetachPixelData();
        var memoryStream = new MemoryStream(frameBytes);
        await Dispatcher.RunAsync(CoreDispatcherPriority.Normal, () =>
            {
                GifFrame.SetSource(memoryStream.AsRandomAccessStream());
            });
    }
}

当我设置新的源( GifFrame.SetSource(...))时,窗口冻结并且什么也没有发生,我必须终止该过程。在围绕新源的设置添加 Dispatcher.RunAsync(...)之前,我遇到了一个异常“ 该应用程序调用了一个接口,该接口已编组到另一个线程... < / em>”。

我不知道是什么原因造成的。也许我需要将字节转换为图像控件可以理解的内容,或者整个像素数据的创建是错误的?

1 个答案:

答案 0 :(得分:1)

这是实现您想要的目标的一种方法:

XAML:

<Page
    x:Class="App1.MainPage"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    mc:Ignorable="d"
    Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
    <Grid>
        <StackPanel>
            <Button Content="Open" Click="Button_Click" />
            <Image x:Name="Image" Width="100" Height="100" />
        </StackPanel>
    </Grid>
</Page>

代码:

using System;
using Windows.Graphics.Imaging;
using Windows.Storage;
using Windows.Storage.Pickers;
using Windows.UI.Xaml;
using Windows.UI.Xaml.Media.Imaging;

namespace App1
{
    public sealed partial class MainPage
    {
        public MainPage()
        {
            InitializeComponent();
        }

        private async void Button_Click(object sender, RoutedEventArgs e)
        {
            var picker = new FileOpenPicker();

            picker.FileTypeFilter.Add(".gif");

            picker.SuggestedStartLocation = PickerLocationId.PicturesLibrary;

            var file = await picker.PickSingleFileAsync();
            if (file == null)
                return;

            var stream = await file.OpenAsync(FileAccessMode.Read);

            var decoder = await BitmapDecoder.CreateAsync(stream);

            var frame = await decoder.GetFrameAsync(0);

            var softwareBitmap = await frame.GetSoftwareBitmapAsync();

            var convert = SoftwareBitmap.Convert(softwareBitmap, BitmapPixelFormat.Bgra8, BitmapAlphaMode.Premultiplied);

            var softwareBitmapSource = new SoftwareBitmapSource();

            await softwareBitmapSource.SetBitmapAsync(convert);

            Image.Source = softwareBitmapSource;
        }
    }
}

结果:

enter image description here

至少可以说是相当复杂的过程...

原始GIF:

enter image description here

您的实际错误是您尝试向SetSource提供原始像素数据流,而不是what it expects