Thumbnails: Difference between revisions

From SlackWiki
Jump to navigation Jump to search
(Created page with "#!/bin/sh #For every .jpg in a directory, create a thumbnail (smaller) image at 280 pixels high (or comment out, uncomment similar line, for width: ) #Resize to 280 pixels hei...")
 
No edit summary
Line 1: Line 1:
#!/bin/sh
<pre>#!/bin/sh
#For every .jpg in a directory, create a thumbnail (smaller) image at 280 pixels high (or comment out, uncomment similar line, for width: )
#For every .jpg in a directory, create a thumbnail (smaller) image at 280 pixels high (or comment out, uncomment similar line, for width: )
#Resize to 280 pixels height
#Resize to 280 pixels height
for file in *.jpg; do convert -resize x280 "$file" "t$file"; done
for file in *.jpg; do convert -resize x280 "$file" "t$file"; done
#resize to 280 pixels width
#resize to 280 pixels width
#for file in *.jpg; do convert -resize 280 "$file" "t$file"; done
#for file in *.jpg; do convert -resize 280 "$file" "t$file"; done</pre>

Revision as of 14:46, 20 May 2020

#!/bin/sh
#For every .jpg in a directory, create a thumbnail (smaller) image at 280 pixels high (or comment out, uncomment similar line, for width: )
#Resize to 280 pixels height
for file in *.jpg; do convert -resize x280 "$file" "t$file"; done
#resize to 280 pixels width
#for file in *.jpg; do convert -resize 280 "$file" "t$file"; done