Tag Archive for: resize
Resize a bunch of images at the same time using a Bash loop
/in Tooling/by GénesisYou can take advantage of Bash and ImageMagick to quickly do processing of many images.
for file in *.jpg; do convert $file -resize 1000 resized-$file; done
But it could be even easier using the command mogrify from the same library:
How to Resize Multiple Images at Once
/in Tooling/by Génesismogrify *.jpg -scale 50% *
Text Fill
/in CSS3, HTML5, JavaScript/by GénesisYou can easily resize text to make it fit into a container. The font size gets as big as possible. Open the example in JSFiddle, resize the result window and/or change the text into the div tag and rerun.