add new chinese translations

This commit is contained in:
2024-12-30 15:25:56 +08:00
parent a850046d7b
commit 0d798759fd
5418 changed files with 105800 additions and 7052 deletions

View File

@@ -1,29 +1,29 @@
# zsteg
> 用于 PNG 和 BMP 文件格式的隐写检测工具。
> 检测 LSB 隐写术、ZLIB 压缩数据、OpenStego、Camouflage 和包含 Eratosthenes 集的 LSB。
> 更多信息:<https://github.com/zed-0xff/zsteg>.
> 针对PNG和BMP文件格式的隐写检测工具。
> 可以检测最低有效位(LSB隐写术、ZLIB压缩数据、OpenStego、Camouflage以及使用厄拉托斯特尼斯集合的LSB。
> 更多信息请访问<https://github.com/zed-0xff/zsteg>
- 检测 PNG 文件中的嵌入数据:
- 检测PNG中的嵌入数据
`zsteg {{路径/到/image.png}}`
`zsteg {{path/to/image.png}}`
- 使用所有已知方法检测 BMP 图像中的嵌入数据:
- 检测BMP图像中的嵌入数据,使用所有已知方法
`zsteg --all {{路径/到/image.bmp}}`
`zsteg --all {{path/to/image.bmp}}`
- 检测 PNG 中的嵌入数据,垂直方式遍历像素并优先使用 MSB
- 检测PNG中的嵌入数据垂直迭代像素并优先考虑最高有效位(MSB
`zsteg --msb --order yx {{路径/到/image.png}}`
`zsteg --msb --order yx {{path/to/image.png}}`
- BMP 图像中检测嵌入数据,指定要考虑的位:
- 检测BMP图像中嵌入数据,指定要考虑的位:
`zsteg --bits {{1,2,3|1-3}} {{路径/到/image.bmp}}`
`zsteg --bits {{1,2,3|1-3}} {{path/to/image.bmp}}`
- 检测 PNG 文件中的嵌入数据,仅提取素数像素并反转位:
- 检测PNG中的嵌入数据仅提取素数像素并反转位
`zsteg --prime --invert {{路径/到/image.png}}`
`zsteg --prime --invert {{path/to/image.png}}`
- 检测 BMP 图像中的嵌入数据,指定要找到的字符串的最小长度和查找模式:
- 检测BMP图像中的嵌入数据指定要找到的字符串的最小长度和查找模式
`zsteg --min-str-len {{10}} --strings {{first|all|longest|none}} {{路径/到/image.bmp}}`
`zsteg --min-str-len {{10}} --strings {{first|all|longest|none}} {{path/to/image.bmp}}`