Thanks for the replies - how do I find how the encoding? It's
whatever encoding that .Net uses in GDI+ to save a .GIF file. Here's
how the image is created:
'From:
http://www.chrisfrazier.net/blog/arc...05/27/276.aspx
Dim stream As New
System.IO.MemoryStream(Convert.FromBase64String(imageData))
Dim noteImage As System.Drawing.Bitmap =
DirectCast(System.Drawing.Image.FromStream(stream),
System.Drawing.Bitmap)
noteImage.Save(fs, System.Drawing.Imaging.ImageFormat.Gif)
stream.Close()
After this code runs, the file is stored to a String field in a Siebel
database (I realize that a different type might be preferable).
However, the .gif file is created correctly in the local file system,
and when I pull the string OUT of the database, it's the exact same
length in bytes as the file.
I've tried all the standard encodings (Unicode, UTF7, UTF8, UTF32,
BigEndianUnicode, and Default), and none of them seem to work. ASCII
gets me the closest to the correct byte size though. Is this a case
where I need to resort to referring to a numbered CodePage?
Thanks!
Andy