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,24 @@
# rawtoppm
> 将原始RGB流转换为PPM图像。
> 更多信息:<https://netpbm.sourceforge.net/doc/rawtoppm.html>。
- 将原始RGB流转换为PPM图像
`rawtoppm {{宽度}} {{高度}} {{路径/到/图像.raw}} > {{路径/到/输出.ppm}}`
- 将像素从底部开始而不是从顶部开始的原始RGB流转换为PPM图像
`rawtoppm {{宽度}} {{高度}} {{路径/到/图像.raw}} | pamflip -tb > {{路径/到/输出.ppm}}`
- 忽略指定文件的前n个字节
`rawtoppm {{宽度}} {{高度}} -headerskip {{n}} {{路径/到/图像.raw}} > {{路径/到/输出.ppm}}`
- 忽略指定文件中每行的最后m个字节
`rawtoppm {{宽度}} {{高度}} -rowskip {{m}} {{路径/到/图像.raw}} > {{路径/到/输出.ppm}}`
- 指定每个像素的颜色分量顺序:
`rawtoppm {{宽度}} {{高度}} -{{rgb|rbg|grb|gbr|brg|bgr}} {{路径/到/图像.raw}} > {{路径/到/输出.ppm}}`