Problema: dovete realizzare degli screenshot per i vostri clienti, ma le immagini PNG generate sono inutilmente pesanti. Questo vi costringe spesso ad utilizzare Photoshop o Anteprima per risalvare l’immagine in JPG e renderla più “leggera” prima dell’invio.
Soluzione: in OSX e macOS è possibile modificare il formato degli screenshot specificando come volete che istantanea schermo salvi i file.
Per modificare il formato di salvataggio degli screenshot basta aprire il terminale e lanciare un semplice comando:
Screenshot in formato JPG
defaults write com.apple.screencapture type jpg;killall SystemUIServer
Screenshot in formato PDF
defaults write com.apple.screencapture type PDF;killall SystemUIServer
Screenshot in formato TIFF
defaults write com.apple.screencapture type tiff;killall SystemUIServer
Screenshot in formato GIF
defaults write com.apple.screencapture type tiff;killall SystemUIServer
Screenshot in formato PNG
defaults write com.apple.screencapture type png;killall SystemUIServer
Lascia un commento