当前位置: 首页>>技术教程>>正文


如何将 CR2 转换为 JPG 或 PNG?

问题描述

我需要将大量 CR2 照片转换为 JPG 或 PNG,无需编辑。这该怎么做?

最佳方法

我会走不同的路线……使用 ufraw-batch 而不是 ufraw

sudo apt-get install ufraw-batch

## This will output (not replace) the file with a new extension.
## foo.CR2 exported to foo.png
ufraw-batch --out-type png *.CR2

有关详细信息,请参阅 ufraw-batch --helpman ufraw-batch

次佳方法

乌弗拉

您可以通过 ufraw 将 .cr2 转换为 .jpeg

sudo apt-get install ufraw

右键单击文件并选择 open with ufraw

** 您也可以使用 gimp-ufraw 将它们导入 Gimp,然后导出为 .png.jpeg

sudo apt-get install gimp-ufraw

第三种方法

ufraw替代品

accepted answer 建议使用 ufraw,但 ufraw 的开发已于 2015 年 6 月停止,当前的 Ubuntu 版本不支持它。请参阅\n Ubuntu Bugtracker,其中推荐将 darktable 或 rawtherapee 作为替代方案。这两个工具都是 GU 工具,但可以从 CLI 中使用它们。

暗表:manualman page

批处理示例:

for pic in *.CR2
do
     darktable-cli "$pic" "$(basename ${pic%.CR2}.jpg)"; 
done

原始疗法:manual

第四种方法

对于另一种选择,请使用 mogrify

mogrify -format png *.cr2

第五种方法

试试 nconvert

作为命令行工具\n或\n xnconvert 作为 GUI 工具

参考资料

本文由Ubuntu问答整理, 博文地址: https://ubuntuqa.com/article/13293.html,未经允许,请勿转载。