feat: add image watermark

This commit is contained in:
2026-03-07 22:14:29 +08:00
parent 25d3b7d847
commit b091ad73d6
5 changed files with 455 additions and 0 deletions

12
image-watermark/deno.json Normal file
View File

@@ -0,0 +1,12 @@
{
"tasks": {
"dev": "deno run --watch main.ts",
"watermark": "deno run --allow-read --allow-write --allow-env --allow-ffi main.ts",
"test": "deno test --allow-read --allow-write --allow-env --allow-ffi"
},
"nodeModulesDir": "auto",
"imports": {
"@std/assert": "jsr:@std/assert@1",
"sharp": "npm:sharp@^0.33.0"
}
}