티스토리 뷰
반응형
[c#/wpf/winform] 화면캡쳐하기
#캡쳐화면
#코드
int width = 2160;
int height = 1440;
Bitmap bmp = new Bitmap(width, height, System.Drawing.Imaging.PixelFormat.Format32bppArgb);
Graphics gr = Graphics.FromImage(bmp);
gr.CopyFromScreen(0, 0, 0, 0, bmp.Size); //캡쳐
bmp.Save("test.png", ImageFormat.Png); // "test.png"로 파일 저장
#c# #wpf #winform #화면캡쳐 #capture #screen
반응형
'c#' 카테고리의 다른 글
adb를 이용한 안드로이드 쉘 사용방법(with source) (0) | 2024.02.06 |
---|---|
관리자 권한으로 CMD열기(배치파일) (0) | 2023.11.06 |
[c#/wpf] 윈도우 해상도 구하기(멀티 디스플레이 포함) (0) | 2022.12.08 |
[wpf/winform/c#/unity] serial / udp 받아서 키보드 이벤트 발생(hooking) 풀코드 제공 (0) | 2022.11.02 |
[c#/wpf] mp3 음원 재생 (0) | 2022.10.27 |
댓글
반응형