- Get link
- X
- Other Apps
Utility
Windows Image Resizer Now Power Toys
Image Magick Linux
Here is a code to convert 1 bmp image to jpg:
convert image.bmp image.jpg
You can convert multiple files using the following simple command but only if you do not care about the filenames as they will be made random:
convert *.bmp *.jpg
If you are will to replace the files, you can use mogrify command or you can just copy the images to a new folder and mogrify them.
mogrify -format jpg *.bmp
The conventional way to convert multiple files at once is first create an empty file and insert the following code:
for PHOTO in *.[format] do BASE=`basename $PHOTO` convert "$PHOTO" "[folder]/$BASE.[desired format]" done
In my case I made a filename my-convert in the same directory as the images:
for PHOTO in *.bmp do BASE=`basename $PHOTO` convert "$PHOTO" "Linux/$BASE.jpg" done
Proceed in executing the file and if it does not work, use administrator access or root or sudo:
chmod +x my-convert ./my-convert
If you want to do more advance modification, you can check the documenation:
convert --help man convert
If the above commands does not work then search their website.
Mirrors
- https://www.publish0x.com/0fajarpurnama0/compress-multiple-image-using-windows-resizer-and-image-magi-xllrpek?a=4oeEw0Yb0B&tid=blogger
- https://0darkking0.blogspot.com/2020/10/compress-multiple-image-using-windows.html
- https://0fajarpurnama0.medium.com/compress-multiple-image-using-windows-resizer-and-image-magick-linux-f9c7f57da443
- https://0fajarpurnama0.github.io/internet/2020/10/22/compress-multiple-image-magick-resizer
- https://blurt.world/blurtech/@fajar.purnama/compress-multiple-image-using-windows-resizer-and-image-magick-linux?r=fajar.purnama
- https://hive.blog/computers/@fajar.purnama/compress-multiple-image-using-windows-resizer-and-image-magick-linux?r=fajar.purnama
- https://steemit.com/computers/@fajar.purnama/compress-multiple-image-using-windows-resizer-and-image-magick-linux?r=fajar.purnama
- https://hicc.cs.kumamoto-u.ac.jp/~fajar/internet/compress-multiple-image-magick-resizer.html
- https://0fajarpurnama0.wixsite.com/0fajarpurnama0/post/compress-multiple-image-using-windows-resizer-and-image-magick-linux
- http://0fajarpurnama0.weebly.com/blog/compress-multiple-image-using-windows-resizer-and-image-magick-linux
- https://0fajarpurnama0.cloudaccess.host/index.php/13-computers-and-internet/79-compress-multiple-image-using-windows-resizer-and-image-magick-linux
- https://read.cash/@FajarPurnama/compress-multiple-image-using-windows-resizer-and-image-magick-linux-81d0a453
- https://www.uptrennd.com/post-detail/compress-multiple-image-using-windows-resizer-and-image-magick-linux~NzgyNzk2
Please leave a comment if you know other methods.
- Get link
- X
- Other Apps
Comments
Post a Comment