问题描述
我试图找出如何使用FJCore将WriteableBitmap编码为jpeg的方法.我知道WriteableBitmap提供了原始像素,但是我不确定如何将其转换为FJCore对其JpegEncoder方法期望的格式. JpegEncoder有两个重载,一个重载FluxJpeg.Core.Image,另一个重载DecodedJpeg.
I am trying to find out how to use FJCore to encode a WriteableBitmap to a jpeg. I understand that WriteableBitmap provides the raw pixels but I am not sure how to convert it to the format that FJCore expects for its JpegEncoder method. JpegEncoder has two overloads, one takes a FluxJpeg.Core.Image and the other takes in a DecodedJpeg.
我试图创建一个FluxJpeg.Core.Image,但是它期望图像数据为byte [] [,]. byte [n] [x,y],其中x是宽度,y是高度,但我不知道n应该是什么.
I was trying to create a FluxJpeg.Core.Image but it expects a byte[][,] for the image data. byte[n][x,y] where x is width and y is height but I don't know what n should be.
我认为n应该为4,因为那将与每个像素中编码的argb信息相对应,但是当我尝试FJCore抛出超出范围异常的参数时.这是我尝试过的.栅格是我的byte [4] [x,y]数组.
I thought that n should be 4 since that would correspond to the argb info encoded in each pixel but when I tried that FJCore throws an argument out of range exception. Here is what I tried. Raster is my byte[4][x,y] array.
raster[0][x, y] = (byte)((pixel >> 24) & 0xFF);
raster[1][x, y] = (byte)((pixel >> 16) & 0xFF);
raster[2][x, y] = (byte)((pixel >> 8) & 0xFF);
raster[3][x, y] = (byte)(pixel & 0xFF);
推荐答案
想通了!我从code.google.com 下载了 FJCore 并经历了图像类.它只期望RGB字节.这是我编写的函数.我需要该图像的base64版本,这就是我的函数返回的内容.
Figured it out! I downloaded FJCore from code.google.com and went through the image class. It only expects the RGB bytes. Here is the function that I wrote. I need the base64 version of the image so that's what my function returns.
private static string GetBase64Jpg(WriteableBitmap bitmap)
{
int width = bitmap.PixelWidth;
int height = bitmap.PixelHeight;
int bands = 3;
byte[][,] raster = new byte[bands][,];
for (int i = 0; i < bands; i++)
{
raster[i] = new byte[width, height];
}
for (int row = 0; row < height; row++)
{
for (int column = 0; column < width; column++)
{
int pixel = bitmap.Pixels[width * row + column];
raster[0][column, row] = (byte)(pixel >> 16);
raster[1][column, row] = (byte)(pixel >> 8);
raster[2][column, row] = (byte)pixel;
}
}
ColorModel model = new ColorModel { colorspace = ColorSpace.RGB };
FluxJpeg.Core.Image img = new FluxJpeg.Core.Image(model, raster);
MemoryStream stream = new MemoryStream();
JpegEncoder encoder = new JpegEncoder(img, 90, stream);
encoder.Encode();
stream.Seek(0, SeekOrigin.Begin);
byte[] binaryData = new Byte[stream.Length];
long bytesRead = stream.Read(binaryData, 0, (int)stream.Length);
string base64String =
System.Convert.ToBase64String(binaryData,
0,
binaryData.Length);
return base64String;
}
这篇关于使用FJCore编码Silverlight WriteableBitmap的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!