![.NEF를 .JPG로 변환](https://linux55.com/image/72163/.NEF%EB%A5%BC%20.JPG%EB%A1%9C%20%EB%B3%80%ED%99%98.png)
.NEF 파일을 .JPG로 변환하려고 하는데 다음 명령을 사용하고 있습니다.
mogrify -format JPG *.NEF
이것은 생산할 것입니다
mogrify: delegate failed `"ufraw-batch" --silent --create-id=also --out- type=png --out-depth=16 "--output=%u.png" "%i"' @ error/delegate.c/InvokeDelegate/1329.
mogrify: unable to open image `/tmp/magick-9036lhDZz9AOJ7G2.ppm': No such file or directory @ error/blob.c/OpenBlob/2695
imagemagick을 시도할 때:
convert DSC0001.NEF DSC0001.JPG
그것은 생산한다
--out-depth=16 "--output=%u.png" "%i"' @ error/delegate.c/InvokeDelegate/1329.
convert: unable to open image `/tmp/magick-9072zxFEis0gPDVe.ppm': No such file or directory @ error/blob.c/OpenBlob/2695.
convert: no images defined `DSC0001.JPG' @ error/convert.c/ConvertImageCommand/3212.
이 오류 메시지는 무엇을 말합니까?
답변1
기본 변환을 수행하는 중에 비슷한 문제가 발생하여 다음 패키지를 설치해야 했습니다.
ufraw 일괄 처리
답변2
같은 문제가 있었고 이것이 효과가있었습니다.
sudo apt-get install ufraw-batch
mogrify -format jpg *.NEF