简体   繁体   English

解码 Base64 图像

[英]Decoding Base64 Image

我有一个嵌入 HTML 的 Base64 图像,如何使用 C# 或 VB.net 对其进行解码。

google.com > base64 image decode c# > http://www.eggheadcafe.com/community/aspnet/2/39033/convert-base64-string-to-image.aspx google.com > base64 图像解码 c# > http://www.eggheadcafe.com/community/aspnet/2/39033/convert-base64-string-to-image.aspx

Byte[] bitmapData = Convert.FromBase64String(FixBase64ForImage(ImageText));
System.IO.MemoryStream streamBitmap = new System.IO.MemoryStream(bitmapData);
Bitmap bitImage = new Bitmap((Bitmap)Image.FromStream(streamBitmap));

public string FixBase64ForImage(string Image) { 
    System.Text.StringBuilder sbText = new System.Text.StringBuilder(Image,Image.Length);
    sbText.Replace("\r\n", String.Empty); sbText.Replace(" ", String.Empty); 
    return sbText.ToString(); 
}

Use Convert.FromBase64String to get a byte[] representing the image binary.使用Convert.FromBase64String获取表示二进制图像的byte[]

You can then save the resulting byte[] into a file.然后,您可以将生成的byte[]保存到文件中。

In above example memory stream has not been disposing This may cause memory leak.So Basic Idea is convertion to base64string to bytearray[] to image or bitmap Image creation can be done through memorystream A perfect example for you Try this link在上面的例子中内存流没有被处理 这可能会导致内存泄漏。所以基本的想法是转换为base64string 到 bytearray[] 到图像或位图图像创建可以通过内存流完成 一个完美的例子给你试试这个链接 http://www.dailycoding.com/Posts/convert_image_to_base64_string_and_base64_string_to_image.aspx http://www.dailycoding.com/Posts/convert_image_to_base64_string_and_base64_string_to_image.aspx

Scrape the embedded image into a string.将嵌入的图像刮成字符串。 Using WebClient is probably your best bet.使用WebClient可能是您最好的选择。 Convert the base64 string to a byte array using Convert.FromBase64String() .使用Convert.FromBase64String()将 base64 字符串转换为字节数组。 Use a MemoryStream and Image.FromStream() to reconstitute an image object.使用MemoryStreamImage.FromStream()重构图像对象。

Here is my Solution, maybe its helpful:这是我的解决方案,也许它有帮助:

var lTest12 = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAYAAAAGCAYAAADgzO9IAAAAlklEQVQImS3DPwqCUAAH4HeVelG3cHB39hAOLnUAj+BSk4NDXcTNQaLsD7wwbLCCFyiIpObv11AffOK2WSNbzIezaSKdSB7kryi15iPdIw9DXFwXJ8NAKiXFp+9ZVxVfRcEiSZAHAZTjQJAkAL6bhqXWfCqF62o5CP6hbVFGETLPw9GyINB1qOMYd9+Hsm3spjNsR2N+AW4acROELpkYAAAAAElFTkSuQmCC";
Base64Helper
    .Analyze(lTest12)
    .Save2File(new FileInfo(@"C:\tmp\_vvv.ccc"));

public class Base64Helper
{
    public const string SearchToken = "base64,";
    public byte[] DecodedBase64;
    public string FileType;

    private Base64Helper(){}

    /// <summary>
    /// "data:image/jpeg;base64,"
    /// Removes preambleand cleans base64 encoded file content.
    /// Collects the file type if present.
    /// </summary>
    public static Base64Helper Analyze(string pBase64Str)
    {
        var lRet = new Base64Helper();
        var lStringBuilder = new StringBuilder(pBase64Str, pBase64Str.Length);
        lStringBuilder.Replace("\r\n", string.Empty);
        lStringBuilder.Replace(" ", string.Empty);

        var lTokenIndex = lStringBuilder.IndexOf(SearchToken);
        var lSplitIndex = lStringBuilder.IndexOf("/") + 1;
        var lFileTypeLength = lTokenIndex - lSplitIndex - 1;

        if (lSplitIndex > 0 && lFileTypeLength > 0)
            lRet.FileType = lStringBuilder.ToString(lSplitIndex, lFileTypeLength);

        var lStart = lTokenIndex + SearchToken.Length;
        if (lStart > -1)
            lStringBuilder.Remove(0, lStart);

        lRet.DecodedBase64 = Convert.FromBase64String(lStringBuilder.ToString());
        return lRet;
    }

    /// <summary>
    /// Saves the analyzed base64 content to the given file.
    /// if the file type of the base64 is present (default=true)
    /// the file type for the given file will be adjusted accordingly
    /// </summary>
    public void Save2File(FileInfo pSaveToFile, bool pAdjustFileType = true)
    {
        var lFile = pSaveToFile;
        if(pAdjustFileType && string.IsNullOrWhiteSpace(FileType) == false)
            lFile = pSaveToFile.ChangeExtension("." + FileType);

        //FileSystemHelper.EnsureDirectoryExistence(lFile);

        if (lFile.Exists)
            lFile.Delete(); //FileSystemHelper.Delete(lFile);

        using (var lFileStream = lFile.Open(FileMode.CreateNew, FileAccess.ReadWrite, FileShare.ReadWrite))
            lFileStream.Write(DecodedBase64, 0, DecodedBase64.Length);
    }

    //Edit: Forgot this here:
    public static int IndexOf(this StringBuilder pThis, string pSearchString, int pStartIndex = 0)
    {
        // Note: This does a StringComparison.Ordinal kind of comparison.
        if (pThis == null)
            throw new ArgumentNullException("pThis");

        if (pSearchString == null)
            pSearchString = string.Empty;

        for (var lIndex = pStartIndex; lIndex < pThis.Length; lIndex++)
        {
            int j;
            for (j = 0; j < pSearchString.Length && lIndex + j < pThis.Length && pThis[lIndex + j] == pSearchString[j]; j++) ;
            if (j == pSearchString.Length)
                return lIndex;
        }

        return -1;
    }
}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM