本文介绍了当我在字节数组中有图像数据时创建TIFF文件.的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在字节数组(imagearr [])中具有尺寸为width = 1300&的图像数据.身高= 1706.

I have image data in byte array( imagearr[] ) of which dimension is width=1300 & height=1706.

我要使用此数组创建TIFF文件.

I want to create TIFF file with this array.

我已经阅读了MSDN中的文档和示例代码,但是无法将imagearr []分配给传递给BitmapSource的字节数组.

I've read document and sample code in MSDN but can't assign imagearr[] to the byte array which is passed to the BitmapSource.

但我仍然不知道如何设置步幅值.

And still I don't know how to set the stride value.

任何人都可以为我制作代码段吗?

Can anybody make code snippet for me? 

推荐答案

谢谢您在这里发布.

对于您的问题,您可以参考MSDN文章

For your question, you could refer to the MSDN article 

.

我希望这会有所帮助.

最好的问候,

Wendy


这篇关于当我在字节数组中有图像数据时创建TIFF文件.的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-29 12:43