4

我在 C# 中从 base64 编码的字节数组创建图像/位图对象时遇到问题。

这是我正在处理的问题:


我有一个前端,用户可以在其中裁剪图像。当用户通过 a 选择图像时input[type=file],我的 javascript 代码使用 HTML5 的 FileReader 将DataUrl(base64 字符串)保存到 a hidden field,它与裁剪坐标和尺寸以及其中的所有其他内容一起发布form

精华:

base64 数据,如果你想测试自己:

http://kristianbak.com/test_image.txt

  1. base64 字符串发布到动作,并作为参数接收imageData
  2. 该操作将字符串转换为 base64 字节数组,如下所示:
  3. byte[] imageBytes = Convert.FromBase64String(imageData.EncodeTo64());

EncodeTo64 扩展方法:

public static string EncodeTo64(this String toEncode)
{
    var toEncodeAsBytes = Encoding.ASCII.GetBytes(toEncode);
    var returnValue = Convert.ToBase64String(toEncodeAsBytes);
    return returnValue;
}

将 base64 字符串转换为字节数组后,我使用 a 将字节读入内存MemoryStream

using (var imageStream = new MemoryStream(imageBytes, false))
{
    Image image = Image.FromStream(imageStream); //ArgumentException: Parameter is not valid.
}

我还尝试了以下变体:

一种)

using (var imageStream = new MemoryStream(imageBytes))
{
    Bitmap image = new Bitmap(imageStream); //ArgumentException: Parameter is not valid.
}

b)

using (var imageStream = new MemoryStream(imageBytes))
{
    imageStream.Position = 0;
    Image image = Image.FromStream(imageStream); //ArgumentException: Parameter is not valid.
}

C)

TypeConverter typeConverter = TypeDescriptor.GetConverter(typeof(Bitmap));
Bitmap image = (Bitmap)typeConverter.ConvertFrom(imageBytes);

d)

使用这种方法:

private Bitmap GetBitmap(byte[] buf)
{
    Int16 width = BitConverter.ToInt16(buf, 18);
    Int16 height = BitConverter.ToInt16(buf, 22);

    Bitmap bitmap = new Bitmap(width, height); //ArgumentException: Parameter is not valid.

    int imageSize = width * height * 4;
    int headerSize = BitConverter.ToInt16(buf, 10);

    System.Diagnostics.Debug.Assert(imageSize == buf.Length - headerSize);

    int offset = headerSize;
    for (int y = 0; y < height; y++)
    {
        for (int x = 0; x < width; x++)
        {
            bitmap.SetPixel(x, height - y - 1, Color.FromArgb(buf[offset + 3], buf[offset], buf[offset + 1], buf[offset + 2]));
            offset += 4;
        }
    }
    return bitmap;
}

结论:

感觉还有点不对劲,希望你能回答这个问题。

编辑:

前端代码示例:

<script>
    $(function() {
        var reader = new window.FileReader();

        function readImage(file, callBack) {
            reader.onload = function (e) {
                var image = new Image();
                image.onload = function (imageEvt) {
                    if (typeof callBack == "function") {
                        callBack(e.target.result);
                    }
                };
                image.src = e.target.result;
            };
            reader.readAsDataURL(file);
        }

        $j('#file').change(function (e) {
            var file = e.target.files[0];

            readImage(file, function(imageData) {
                $('#imageData').val(imageData);
            });
        });
    });
</script>

@using (Html.BeginForm("UploadImage", "Images", FormMethod.Post, new { enctype = "multipart/form-data" }))
{
    @Html.ValidationSummary(true)
    <input name="PostedImage.ImageData" type="hidden" id="imageData" value="" />

    @* REST OF THE HTML CODE HERE *@

    <p>Choose an image:</p>
    <input type="file" name="file" id="file" />

    <input type="submit" value="Upload" />
}

控制器/动作示例:

[HttpPost]
public ActionResult Opret(PostedImage postedImage)
{
    String imageData = PostedImage.ImageData;

    byte[] imageBytes = Convert.FromBase64String(imageData.EncodeTo64());

    using (var imageStream = new MemoryStream(imageBytes, false))
    {
        Image image = Image.FromStream(imageStream);
    }
}
4

1 回答 1

5

我认为您的问题是您正在获取一个发布到您的控制器的 base64 字符串,将其视为 ASCII,然后再次将其转换为 base64。

我认为你需要改变这条线

byte[] imageBytes = Convert.FromBase64String(imageData.EncodeTo64());

byte[] imageBytes = Convert.FromBase64String(imageData);

从那里你的字节应该是正确的,你应该能够创建你的图像

- 编辑 -

我获取了您在文本文档中提供的示例数据并在将其加载到位图中之前对其进行了解析。我能够将图像保存到我的硬盘驱动器并受到斯巴达人的欢迎(Go Green!!)

试试这个代码,看看会发生什么。

请注意 imageData 正是http://kristianbak.com/test_image.txt上公开的内容。我会提供初始化,但它是一个相当大的字符串,可能会破坏事情。

string imageDataParsed = imageData.Substring( imageData.IndexOf( ',' ) + 1 );
byte[] imageBytes = Convert.FromBase64String( imageDataParsed );
using ( var imageStream = new MemoryStream( imageBytes, false ) )
{
   Bitmap image = new Bitmap( imageStream );
}
于 2012-07-28T12:58:02.977 回答