打包下载地址:
SetWorkingDir %A_ScriptDir% DllCall("LoadLibrary", "Str", "quricol64.dll") ; 生成支持PNG和BMP ; Generate("1.bmp", "hello", "BMP") Generate("1.png", "hello", "PNG") ; 生成内容为hello的二维码 Return ; dll的出处:https://github.com/perevoznyk/quricol 函数作者:Mono Generate(fileName, text, margin:=4, size:=20, level:=0, fileType:="PNG") { if (margin="BMP") or (margin="PNG") fileType := margin, margin := 4 DllCall("quricol64.dll\Generate" fileType, "Str", fileName , "Str", text, "Int", margin, "Int", size, "Int", level) if FileExist(fileName) Return 1 Return 0 }
声明:站内资源为整理优化好的代码上传分享与学习研究,如果是开源代码基本都会标明出处,方便大家扩展学习路径。请不要恶意搬运,破坏站长辛苦整理维护的劳动成果。本站为爱好者分享站点,所有内容不作为商业行为。如若本站上传内容侵犯了原著者的合法权益,请联系我们进行删除下架。
评论(0)