1
smilenceX 2022-07-06 17:10:10 +08:00
shareX
|
2
v2tudnew 2022-07-06 18:50:03 +08:00
Psytec_QR ,200 多 KB 的古董软件,能扫描也能制作。
|
3
g00001 2022-07-06 19:06:17 +08:00
用 aardio 随手写了一个:
import zbar; import win.clip; import mouse.screenArea; import gdip.snap; //截屏 var screenArea = mouse.screenArea(); screenArea.onSelectionChanged = function(rc){ var bmp = gdip.snap(screenArea.hwnd,rc.xywh()); //识别二维码 var scanner = zbar.scanner(); scanner.config('qrcode.enable'); scanner.scanBitmap(bmp,function(typeName,data){ //复制到剪贴板 win.clip.write(data) screenArea.close(); }) } screenArea.doModal(); |
4
unishare 2022-07-06 19:11:24 +08:00
这个 chrome 浏览器插件,不知道能不能满足你的要求 https://chrome.google.com/webstore/detail/the-quick-qr-code-multi-s/eefoinodjigoedmfjkbikmdhecggljgc |
5
rming 2022-07-06 19:22:44 +08:00
|
6
404neko 2022-07-06 23:54:50 +08:00
我写过一个小玩意
https://github.com/404neko/DesktopBarcodeScanner 把 DesktopBarcodeScanner/bin/Release 有已经编译好的 |
7
404neko 2022-07-06 23:59:56 +08:00
|