// This works convert ${path}${dst} -crop ${crop} ${path}${dst} // but when changed to this, it fails convert ${path}${src} -trim ${path}${dst} convert ${path}${dst} -crop ${crop} ${path}"pdf_"${dst}
Что я делаю не так?
У меня отлично работает.
$ path=./ $ src=test.jpg $ dst=test2.jpg $ crop=100x100+10+10 $ convert ${path}${src} -trim ${path}${dst} $ convert ${path}${dst} -crop ${crop} ${path}pdf_${dst} $ identify pdf_test2.jpg pdf_test2.jpg JPEG 100x100 100x100+0+0 DirectClass 8-bit 3.30078kb
Изменяет ли это:
convert ${path}${dst} -crop ${crop} ${path}"pdf_"${dst}
К этому:
convert ${path}${dst} -crop ${crop} "${path}pdf_${dst}"
Помощь