如何写入InMemoryRandomAccessStream然后读取?

时间:2016-08-03 13:48:55

标签: c# stream

我想将一个图像写入一个流并随后读取它 我在Win 10 UWP上 我的代码:

jQuery(function() {
    var menuBarOpenedOnce = 0;

    //caches a jQuery object containing the header element
    jQuery(window).scroll(function() {
        var scroll = jQuery(window).scrollTop();

        if (scroll >= 1150 && menuBarOpenedOnce === 0) {
            jQuery(".menubar").addClass("open");
            menuBarOpenedOnce = 1;
        }
    });
});

它不起作用,DetectAsync获得一个空流(错误:图像尺寸太小) 我需要其他课程吗? InMemoryRandomAccessStream imrasIn = new InMemoryRandomAccessStream(); await _mediaCapture.CapturePhotoToStreamAsync(ImageEncodingProperties.CreateJpeg(), imrasIn); DetectedFaces = await _faceClient.DetectAsync(imrasIn.GetInputStreamAt(0).AsStreamForRead()); 想要CapturePhotoToStreamAsyncIRandomAccessStream想要DetectAsync

0 个答案:

没有答案