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

@@ -0,0 +1,20 @@
# ppmtosixel
> 将 PPM 图像转换为 DEC sixel 格式。
> 更多信息请访问: <https://netpbm.sourceforge.net/doc/ppmtosixel.html>。
- 将 PPM 图像转换为 DEC sixel 格式:
`ppmtosixel {{path/to/file.ppm}} > {{path/to/file.sixel}}`
- 生成一个未压缩的 SIXEL 文件,打印速度较慢:
`ppmtosixel -raw {{path/to/file.ppm}} > {{path/to/file.sixel}}`
- 添加 1.5 英寸的左边距:
`ppmtosixel -margin {{path/to/file.ppm}} > {{path/to/file.sixel}}`
- 以更便携(虽然占用空间效率较低)的方法编码控制代码:
`ppmtosixel -7bit {{path/to/file.ppm}} > {{path/to/file.sixel}}`