導航:首頁 > 版本升級 > 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保存文件夾相關的資料

熱點內容
allwaysync區域網教程 瀏覽:285
微信48mb文件打不開 瀏覽:210
word默認的行距和字元間距是多少 瀏覽:983
如何通過數據解決問題 瀏覽:663
微信給自己發文件 瀏覽:795
如何更換excel文件密碼 瀏覽:842
大數據技術是什麼系 瀏覽:90
怎樣在手機上復制文件夾裡面的文件夾里 瀏覽:395
word亂碼恢復器 瀏覽:138
如何保存頁面密碼 瀏覽:967
傳輸文件內容 瀏覽:22
word文檔中的圖片 瀏覽:815
江門哪裡好學編程 瀏覽:185
nike的app怎麼登 瀏覽:590
寬頻升級為什麼變慢了 瀏覽:623
寬頻連接ipv6無網路訪問許可權 瀏覽:581
誅仙手游文件哪些可以清理 瀏覽:873
javaweb範例寶典pdf 瀏覽:229
編程需要干什麼 瀏覽:143
文件夾代碼加密 瀏覽:592

友情鏈接