windows tips: การใช้ print screen (คัดลอกภาพบนหน้าจอ) รับลิงก์ Facebook X Pinterest อีเมล แอปอื่นๆ มีนาคม 31, 2561 1 กด prt sc = คัดลอกทั้งหน้า 2. กด Alt + prt sc = คัดลอกเฉพาะ windows นั้นๆ 3. กด Shift + Windows + S = mark crop sceen ครูชลิตา จูมสีมา ผู้เขียน อ่านเพิ่มเติม
python : การหาค่า windows resolution ปัจจุบัน รับลิงก์ Facebook X Pinterest อีเมล แอปอื่นๆ มีนาคม 30, 2561 #ต้องติดตั้ง pywin32 from win32api import GetSystemMetrics as resolution resoW = resolution(0) resoH = resolution(1) #แบบไม่ต้องติดตั้ง pywin32 import ctypes user32 = ctypes . windll . user32 screensize = user32 . GetSystemMetrics ( 0 ), user32 . GetSystemMetrics ( 1 ) อ่านเพิ่มเติม
Image Processing กับ Python[03] : capture screen ด้วย Pillow รับลิงก์ Facebook X Pinterest อีเมล แอปอื่นๆ มีนาคม 30, 2561 Step 1 ติดตั้ง Pilow module ดังนี้ py -m pip install pillow อ่านเพิ่มเติม