atq

导航

 

2024年11月12日

摘要: C:\Users{当前用户}.m2\repository\javax\media\jai-core\1.1.3 阅读全文
posted @ 2024-11-12 16:48 atq 阅读(0) 评论(0) 推荐(0) 编辑
 
摘要: imagemagick https://imagemagick.org/script/download.php gimp https://www.gimp.org/downloads/thanks.html exiftool https://www.exiftool.org/ 阅读全文
posted @ 2024-11-12 16:39 atq 阅读(2) 评论(0) 推荐(0) 编辑
 

2024年10月24日

摘要: 通过pdfbox加载文件取得签名。 通过bouncycastle,取得签名的对象ID,来判断是否是含有时间戳的签名。 代码: try (PDDocument document = Loader.loadPDF(input)) { List signatures = document.getSigna 阅读全文
posted @ 2024-10-24 10:00 atq 阅读(6) 评论(0) 推荐(0) 编辑
 

2024年10月10日

摘要: const pickerOpts = { types: [ { description: "Images", accept: { "image/*": [".png", ".gif", ".jpeg", ".jpg"], }, }, ], excludeAcceptAllOption: true, 阅读全文
posted @ 2024-10-10 15:23 atq 阅读(27) 评论(0) 推荐(0) 编辑
 

2024年7月25日

2024年7月22日

摘要: Class Demo{ const _fun1 = Symbol('_fun1'); const _fun2 = Symbol('_fun2'); [_fun1] = function() { console.log("_fun1"); } [_fun2] = function() { consol 阅读全文
posted @ 2024-07-22 08:29 atq 阅读(3) 评论(0) 推荐(0) 编辑
 

2024年7月16日

摘要: arr.forEach((value, index) => { fd.append(rowFileInfo[${index}].name, '') }) 阅读全文
posted @ 2024-07-16 15:34 atq 阅读(33) 评论(0) 推荐(0) 编辑
 

2024年7月9日

摘要: 重新安装安装时候记得勾选“Install legacy utilities (e.g. convert)” 阅读全文
posted @ 2024-07-09 14:24 atq 阅读(18) 评论(0) 推荐(0) 编辑
 

2024年4月26日

摘要: https://developer.mozilla.org/zh-CN/docs/Web/CSS/CSS_Images/Implementing_image_sprites_in_CSS 阅读全文
posted @ 2024-04-26 18:03 atq 阅读(5) 评论(0) 推荐(0) 编辑
 

2024年4月3日

摘要: master分支 master分支是主分支,包含了已经发布到生产环境的稳定,可靠版本的代码。一般情况下,master分支应该只用于发布新版本,而不应该直接修改或提交新的功能。 develop分支 develop分支是开发分支,包含了当前正在进行的所有功能和任务。所有新功能开发、改进、优化等都应该从此 阅读全文
posted @ 2024-04-03 16:20 atq 阅读(18) 评论(0) 推荐(0) 编辑