導航:首頁 > 版本升級 > cbitmap保存文件夾

cbitmap保存文件夾

發布時間:2023-11-01 09:47:29

1. C#.net中,如何自動保存文件到指定位置

截的圖保存到指定的路徑例子如下:
try
{
Screen scr = Screen.PrimaryScreen;
Rectangle rc = scr.Bounds;
int iWidth = rc.Width;
int iHeight = rc.Height;
Bitmap myImage = new Bitmap(iWidth, iHeight);
Graphics gl = Graphics.FromImage(myImage);
gl.CopyFromScreen(new Point(0, 0), new Point(0, 0), new Size(iWidth, iHeight));
_img = myImage;
pictureBox1.Image = _img;
// IntPtr dc1 = gl.GetHdc();
//gl.ReleaseHdc(dc1);
_img.Save(@"C:\\1.jpeg");
//_img.Save("c:\\1.jpeg");
//SendFile("c:\\1.jpeg");
}
catch (Exception ex)
{
MessageBox.Show("截屏失敗!\n" + ex.Message.ToString() + "\n" + ex.StackTrace.ToString());
}
解決代碼如下:
#region[方法]
///<summary>
///截屏
///</summary>
private void PrintScreen()
{

string Opath = @"C:/Picture";
if (Opath.Substring(Opath.Length - 1, 1) != @"/")
Opath = Opath + @"/";
string photoname = DateTime.Now.Ticks.ToString();
string path1 = Opath + DateTime.Now.ToShortDateString();
if (!Directory.Exists(path1))
Directory.CreateDirectory(path1);
try
{

Screen scr = Screen.PrimaryScreen;
Rectangle rc = scr.Bounds;
int iWidth = rc.Width;
int iHeight = rc.Height;
Bitmap myImage = new Bitmap(iWidth, iHeight);
Graphics gl = Graphics.FromImage(myImage);
gl.CopyFromScreen(new Point(0, 0), new Point(0, 0), new Size(iWidth, iHeight));
_img = myImage;
//pictureBox1.Image = _img;
// IntPtr dc1 = gl.GetHdc();
//gl.ReleaseHdc(dc1);
MessageBox.Show(path1);
MessageBox.Show(photoname);
_img.Save(path1 + "//" + photoname + ".jpg", System.Drawing.Imaging.ImageFormat.Jpeg);
// _img.Save("D:\\1.jpeg");
SendFile(path1+"//"+photoname+".jpg");
}
catch (Exception ex)
{
MessageBox.Show("截屏失敗!\n" + ex.Message.ToString() + "\n" + ex.StackTrace.ToString());
}

// MessageBox.Show("12322222");
/////////////////////////////////////////////////////////
///////////////////發送圖片流///////////////////////////
/*
MemoryStream ms = new MemoryStream();
byte[] imagedata = null;
_img.Save(ms, System.Drawing.Imaging.ImageFormat.Jpeg);
imagedata = ms.GetBuffer();

byte[] arrFile = new byte[1024 * 1024 * 2];
//讀取文件內容到位元組數組,並 獲得 實際文件大小
int length = ms.Read(arrFile, 0, arrFile.Length);
// int length = ms.Read(arrFile, 0, arrFile.Length);
//定義一個 新數組,長度為文件實際長度 +1
byte[] arrFileFina = new byte[length + 1];
arrFileFina[0] = 2;//設置 數據標識位等於1,代表 發送的是文件
//將 圖片流數據數組 復制到 新數組中,下標從1開始
//arrFile.CopyTo(arrFileFina, 1);
Buffer.BlockCopy(arrFile, 0, arrFileFina, 1, length);
//發送文件數據
sokClient.Send(arrFileFina);//, 0, length + 1, SocketFlags.None);
//MessageBox.Show("我在這里!!!");
// byte[] arrMsg = System.Text.Encoding.UTF8.GetBytes(_img);
MessageBox.Show("2222");
*/
}
#endregion

閱讀全文

與cbitmap保存文件夾相關的資料

熱點內容
下載軟體數據包損壞是什麼原因 瀏覽:350
網站跨網路載入 瀏覽:720
數據怎麼拷貝在電腦上 瀏覽:980
linux調整磁碟空間 瀏覽:749
蘋果6s顯示不了4g網路連接伺服器 瀏覽:554
iphone5s照相機聲音怎麼關 瀏覽:389
iphoneitunes恢復 瀏覽:121
轉轉app怎麼下載米家 瀏覽:575
win10硬碟管理在哪個位置 瀏覽:723
微信視頻黑調整 瀏覽:677
如何破解u盤密碼 瀏覽:47
jsp程序包不存在 瀏覽:261
討論組里的文件怎麼刪 瀏覽:419
nsatool免疫工具 瀏覽:640
無線網路結構性 瀏覽:98
南方gass怎麼載入數據 瀏覽:406
收聽央廣新聞用什麼app聽 瀏覽:626
樂播足球app 瀏覽:257
如何在文件夾中找到英雄聯盟 瀏覽:927
清理手機qq緩存圖片嗎 瀏覽:320

友情鏈接