Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/.net/23.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
C# Windows Phone的System.Drawing和System.Drawing.Imaging备选方案_C#_.net_Windows Phone 7_Windows Phone 8_Windows Phone - Fatal编程技术网

C# Windows Phone的System.Drawing和System.Drawing.Imaging备选方案

C# Windows Phone的System.Drawing和System.Drawing.Imaging备选方案,c#,.net,windows-phone-7,windows-phone-8,windows-phone,C#,.net,Windows Phone 7,Windows Phone 8,Windows Phone,我正试图使用一些C代码段,但由于这些名称空间,这些代码段在Windows Phone中不起作用。 windows phone的System.Drawing和System.Drawing.Imaging是否有替代方案 我需要像素格式,位图,调色板,图像锁定模式,锁定位等的替代方案 例如: BitmapData bmpDat = bmp.LockBits( new Rectangle( 0,0, bmp.Width, bmp.Height),

我正试图使用一些C代码段,但由于这些名称空间,这些代码段在Windows Phone中不起作用。 windows phone的
System.Drawing
System.Drawing.Imaging
是否有替代方案

我需要
像素格式
位图
调色板
图像锁定模式
锁定位
等的替代方案


例如:

    BitmapData bmpDat = bmp.LockBits(
        new Rectangle(
        0,0, bmp.Width, bmp.Height),
        ImageLockMode.ReadOnly, bmp.PixelFormat);

我从未尝试过,但我相信这应该是一个很好的图书馆

祝你好运