我有一个奇怪的问题。我正在使用适用于 Windows Phone 8 的 Visual Studio 2012 Express,并希望引用 System.Drawing.dll。我在项目中右键单击“引用”并单击“添加引用...”,但是,我在 .NET 选项卡下找不到 System.Drawing.dll。任何想法为什么?
实际上我想将我的图像转换为base64
. 我有一种方法,此方法包含Sysytem.drawing
映像 .dll。
public 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 字符串。我怎么解决这个问题?