C# – 将多页tiff文件转换为base64字符串,并使用单个图像转换结果

我正在从本地磁盘打开一个tiff文件:

Image multiPageImage = Image.FromFile(fileName);

然后将其发送到转换方法:

base64string = ImageToBase64(multiPageImage, ImageFormat.Tiff);

public static string ImageToBase64(Image image, System.Drawing.Imaging.ImageFormat format)
        {
            using (MemoryStream ms = new MemoryStream())
            {
                // Convert Image to byte[]
                image.Save(ms, format);
                byte[] imageBytes = ms.ToArray();

                // Convert byte[] to Base64 String
                string base64String = Convert.ToBase64String(imageBytes);
                return base64String;
            }  
        }

最后我使用以下代码将base64转换为tiff文件:

public static void ConvertBase64ToTiff(string base64string)
    {
        Byte[] bitmapData = new Byte[base64string.Length];

        bitmapData = Convert.FromBase64String(FixBase64ForImage(base64string));

        using (MemoryStream streamBitmap = new System.IO.MemoryStream(bitmapData))
        {
            Bitmap bitImage = new Bitmap((Bitmap)Image.FromStream(streamBitmap));
            bitImage.Save(@"C:\myTiff.tiff");
        }            
    }

    public static string FixBase64ForImage(string base64string)
    {
        System.Text.StringBuilder sbText = new System.Text.StringBuilder(base64string, base64string.Length);

        sbText.Replace("\r\n", String.Empty);
        sbText.Replace(" ", String.Empty);

        return sbText.ToString();
    }

那种固定方法不是我的.其实我不知道这是不是正确的方式.但是我在任何地方搜索并尝试我发现的东西.

我的测试显示base64字符串只有一个图像.

任何帮助将不胜感激!

解决方法:

对于将多页tiff文件转换为base64而反之亦然的人,您可以参考该链接:

Is it possible to create a base64 string which has all frames of a multi page tiff file?

也许这不是完全相同的问题,但答案也将解决这个问题.

上一篇:python – Tensorflow机器学习:TIFF图像没有解码器?


下一篇:如何使用转换器将接收到的多张CAD图纸转换成黑白TIFF格式?