我正在 Monodroid 中编写一个程序来捕获屏幕上的签名,然后将其保存到 jpg 文件中。我可以很好地捕获签名,当我尝试将其保存到文件时出现问题。当用户想要保存图像时,运行以下代码:
void buttonSave_Click(object sender, EventArgs e)
{
try
{
if (!m_locked)
{
MemoryStream stream = new MemoryStream();
m_bitmap.Compress(Bitmap.CompressFormat.Jpeg, 100, stream);
byte[] byteArray = stream.GetBuffer();
//string toSave = Convert.ToBase64String(byteArray);
//save it to file (test);
string path = "/mnt/sdcard/TestSig/";
if (!Directory.Exists(path))
Directory.CreateDirectory(path);
string file = path + "signature.jpg";
FileOutputStream fo = new FileOutputStream(file);
fo.Write(byteArray);
}
}
catch (Exception ex)
{
//display message
}
}
绘制签名的 ImageView 是这样设置的(在活动的 OnCreate 方法中):
m_imageView = (ImageView)FindViewById(Resource.Id.imageView);
m_imageView.SetBackgroundColor(Android.Graphics.Color.White);
Display d = WindowManager.DefaultDisplay;
m_dw = d.Width;
m_dh = d.Height;
m_bitmap = Bitmap.CreateBitmap((int)m_dw, (int)(m_dh * 0.5), Bitmap.Config.Argb8888);
m_canvas = new Canvas(m_bitmap);
m_paint = new Paint();
m_paint.Color = Color.Black;
m_imageView.SetImageBitmap(m_bitmap);
m_imageView.SetOnTouchListener(this);
问题是当我在图像编辑器中打开文件时,所有尺寸都可以,但它完全是黑色的。它应该看起来像这样:
顺便说一句,当使用 png 格式时,这似乎工作正常。我将图像保存在 Android 设备上,但在 Windows PC 上查看。
谢谢。