Decoding Base64

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Jennyfer Barco

    #1

    Decoding Base64

    Hello, I need to decode a string that is encoded on Base64 format. The
    string is a GIF image, so it's very long and weird data. Do you have an
    example on how to do this?

    Thanks in advance
    Jennyferd Barco


  • Mattias Sjögren

    #2
    Re: Decoding Base64

    Jennyfer,
    [color=blue]
    >Hello, I need to decode a string that is encoded on Base64 format.[/color]

    Just call System.Convert. FromBase64Strin g


    Mattias

    --
    Mattias Sjögren [C# MVP] mattias @ mvps.org
    http://www.msjogren.net/dotnet/ | http://www.dotnetinterop.com
    Please reply only to the newsgroup.

    Comment

    • Cor Ligthert [MVP]

      #3
      Re: Decoding Base64

      Jennyfer,

      In addition to Mattias, here an example were it is used



      Cor


      "Jennyfer Barco" <pdwhitt@nospam .wdsinc.com> schreef in bericht
      news:OTiOt4xmGH A.2360@TK2MSFTN GP04.phx.gbl...[color=blue]
      > Hello, I need to decode a string that is encoded on Base64 format. The
      > string is a GIF image, so it's very long and weird data. Do you have an
      > example on how to do this?
      >
      > Thanks in advance
      > Jennyferd Barco
      >[/color]


      Comment

      Working...