将 Base64 字符串转换为 GIF 图片

Converting Base64 string to GIF image

对于一个业余项目,我正在尝试制作一个带有 2 个参数的简单可执行文件:

  1. 文本文件路径(包含 Base64 编码的动画 GIF)(示例 base.txt)
  2. 要导出的 GIF 名称(示例 hello.gif)

我认为一切都应该是这样的:

  1. 它打开并从文件中读取数据
  2. 它获取数据并解码 Base64 字符串
  3. 然后将数据保存为动画 GIF

现在当然需要执行一些中间步骤,但我认为目前不需要涵盖这些。

所以最后我得到了以下 C# 文件,它应该可以满足我的要求。

using System;
using System.Drawing;
using System.Text;
using System.IO;

namespace Base642Img
{
    class MainClass
    {
        public static void Main (string[] args)
        {
            if (args.Length == 2) {
                byte[] buffer;
                String imageData;
                FileStream fileStream = new FileStream (args [0], FileMode.Open, FileAccess.Read);

                try {
                    int length = (int)fileStream.Length;
                    buffer = new byte[length];
                    int count;
                    int sum = 0;

                    while ((count = fileStream.Read (buffer, sum, length - sum)) > 0) {
                        sum += count;
                    }
                } finally {
                    fileStream.Close();
                }

                try{
                    imageData = Encoding.UTF8.GetString (buffer, 0, buffer.Length);
                    imageData = imageData.Replace (System.Environment.NewLine, "");

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

                    MemoryStream ms = new MemoryStream (imageBytes, 0, imageBytes.Length);
                    ms.Write (imageBytes, 0, imageBytes.Length);

                    Image image = Image.FromStream (ms, true);
                    image.Save (args [1], System.Drawing.Imaging.ImageFormat.Gif);
                } catch (Exception e) {
                    Console.WriteLine (e.ToString ());
                }
            } else {
                Console.WriteLine ("Incorrect number of arguments");
            }
        }
    }
}

这在 MonoDevelop 中构建得非常好。但是当我转到 运行 文件时(给定两个参数)它吐出以下异常:

System.FormatException: Invalid length.
  at (wrapper managed-to-native) System.Convert:InternalFromBase64String (string,bool)
  at System.Convert.FromBase64String (System.String s) [0x00000] in <filename unknown>:0 
  at Base642Img.MainClass.Main (System.String[] args) [0x00000] in <filename unknown>:0 

我完全不知道这是什么意思,我在 Google 上的所有搜索都变成空白,所以我现在求助于 Stack Overflow,希望有人能帮我解决这个问题。

Convert.FromBase64String 要求输入字符串的末尾最多填充两个 = 字符,以便其总长度(忽略白色-space 字符)是以下的倍数四。显然,创建 base 64 编码文件的程序省略了尾部填充。

您需要根据需要自行添加缺失的填充字符:

// using System.Collections.Generic;
// using System.Linq;

string imageData = File.ReadAllText(args[0]);
HashSet<char> whiteSpace = new HashSet<char> { '\t', '\n', '\r', ' ' };
int length = imageData.Count(c => !whiteSpace.Contains(c));
if (length % 4 != 0)
    imageData += new string('=', 4 - length % 4); // Pad length to multiple of 4.
byte[] imageBytes = Convert.FromBase64String(imageData);
MemoryStream ms = new MemoryStream(imageBytes);
Image image = Image.FromStream(ms, true);
image.Save(args[1], System.Drawing.Imaging.ImageFormat.Gif);

注意:由于 Convert.FromBase64String 忽略白色-space 字符,因此无需删除换行符。 (感谢 EZI 指出这一点。)