0

我能够将 image 转换为 base64 字符串,将 base64 字符串转换为 image 。我正在将图像保存到特定位置。如果我第一次运行,我会得到我作为输入提供的正确图像文件。但是从第二次运行开始,无论我传递的输入图像是什么,我都只得到第一个输入图像。

期望的输出: 我需要取回我传递的输入图像。

转换代码:

public  string ImageToBase64(Image image, 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;
    }
}

public  Image Base64ToImage(string base64String)
{
    // Convert Base64 String to byte[]
    byte[] imageBytes = Convert.FromBase64String(base64String);
    MemoryStream ms = new MemoryStream(imageBytes, 0,
      imageBytes.Length);

    // Convert byte[] to Image
    ms.Write(imageBytes, 0, imageBytes.Length);
    Image image = Image.FromStream(ms, true);
    return image;
}

保存文件代码:

public void retreiveAndSaveImgFile(string base64formofstr)
{
    Console.WriteLine("the incoming string :: " + base64formofstr.Length);

/*    Bitmap bitmap = new Bitmap(Base64ToImage(base64formofstr));
    Bitmap newBitmap = new Bitmap(bitmap);
    newBitmap.SetResolution(150, 150); // resolution of the original image for which the zone template is created
    newBitmap.Save("D:\\Suraya\\TesttogetCorrectPutput\\MICR_SAMPLE.tif", ImageFormat.Tiff);*/

    Base64ToImage(base64formofstr).Save("D:\\Suraya\\TesttogetCorrectPutput\\MICR_SAMPLE.tif");

}

请帮我解决这个问题。

4

1 回答 1

0

我对这一切并不那么聪明,但直到我明白你遇到的问题是因为缓存......因为你一直使用相同的名称,它显示来自缓存的输出而不是转换..

第一个替代是在图像名称中添加时间戳。
第二个替代是强制浏览器重新加载整个页面,而不是从缓存中显示它。

于 2013-06-21T10:02:06.293 回答