我用這個方法轉完後,色彩描述檔的資訊還是在阿?bugsbear wrote:這個方法會把色彩描述檔的資訊拿掉在finder 裡面及時瀏覽似乎還是橫的如果能把描述檔資訊補上, 相關資訊拿掉不知道有無解乎?
試了一下他有option可以不改變檔案日期, 我們可以利用Automator來讓使用更簡單.把jhead 與 jpegtran 考貝到/bin/ 下.先要開terminal, 打" sudo -s " 然後輸入管理者密碼,之後才可以把jhead 與 jpegtran 考貝到/bin/ 下,再打" chmod 555 jhead jpegtran"可否請樓主將這段在treminal的指令寫出不好意思 因為我對terminal不太熟
cd /binsudo -scp /your_path/your_path/jhead .cp /your_path/your_path/jpegtran .chmod 555 jhead jpegtrans
我很久以前的照片有用iphoto轉過,就是匯入後, 到modify的目錄把iphoto幫我轉正的照片cp出來....不過這樣檔案日期就變掉了....剛剛發現這個scripts也可以幫我把檔案日期改回來耶...真是太棒了~~~
感謝樓主 我已經成功設定不過我是用它提供的方法:INSTALLATION------------1. Copy jpegtran and jhead to the /bin/ directory2. In the Terminal, run the following commands:cd /bin/; sudo chmod 555 jhead jpegtran; sudo chown root:wheel jhead jpegtran;我想應該是一樣的對吧!另外你在前文提到:"試了一下他有option可以不改變檔案日期"請問這個option在哪裡 我找不到如何設定再次麻煩你,感謝
感謝你的分享,不過當我不小心選到其他檔案格式時,他會有點當掉。 所以我小改了一下 Automate 裡的語法:for f in "$@"docase $f in*.jpg ) jhead -autorot -ft -rgt "$f" ;;*.JPG ) jhead -autorot -ft -rgt "$f" ;;esacdone這樣他只會轉是 jpg 結尾的檔名。