Edit batch files more quickly with ImageMagick

Currently, Google has changed some of the policies in Picasa service when allowing users to upload and store completely free for photos smaller than 800 pixels. Therefore, we will definitely have to resize the image to make the most of Picasa. And in the article below, we will introduce the basic steps to make this process fast with the ImageMagick utility.

To get started, visit here and download the appropriate version for the operating system. If you're not sure about your options, download the first application ( win32 dynamic at 16 bits-per-pixel ):

Edit batch files more quickly with ImageMagick Picture 1

The installation process is extremely simple, you just need to Next> Next :

Edit batch files more quickly with ImageMagick Picture 2

But remember to select Add application directory to your system path , to ensure that Windows' Command Prompt application will 'recognize' ImageMagick later:

Edit batch files more quickly with ImageMagick Picture 3

After finishing this installation process, start Command Prompt via Start Menu> Run> cmd:

Edit batch files more quickly with ImageMagick Picture 4

Use cd syntax to point to the image storage directory to apply changes. For example, here is cd C: UsersgrooveDexterPicturesiPod

Edit batch files more quickly with ImageMagick Picture 5

To change the image size in that folder, use the following form:

convert -resize 800x800 * .jpg

Inside:

- 800 × 800 : is the width and length in pixels of the image. The program will remain the same as the basic parameters.

- * .jpg : standard format of image after conversion (support * .PNG file, * .GIF)

- convert : when using this command, the program will create copies of the original file instead of overwriting them. If you don't want to keep the original file, use the mogrify command.

Edit batch files more quickly with ImageMagick Picture 6

Refer to ImageMagick's basic command syntaxhere

Now, all image files within the selected folder will change in size according to the user settings:

Edit batch files more quickly with ImageMagick Picture 7

Good luck!

4 ★ | 1 Vote

May be interested

  • How to Write a Batch FileHow to Write a Batch File
    this wikihow teaches you how to write and save a basic batch file on a windows computer. a batch file contains a series of dos (windows language) commands, and is commonly written to automate frequently performed tasks such as moving...
  • Top 5 software for fast batch file renamingTop 5 software for fast batch file renaming
    top 5 software for fast batch file renaming. batch renaming files makes it easy to manage large files such as images or documents. of course, to be able to rename files in batches according to their own needs we need the help of
  • Instructions for batch compressing images on Batch Image CompressorInstructions for batch compressing images on Batch Image Compressor
    batch image compressor will help you batch compress images when we can download multiple files at once to reduce capacity.
  • How to edit PDF files on your computer simply and easilyHow to edit PDF files on your computer simply and easily
    there are many simple and easy ways to edit pdf files on computers, such as using word, google docs, online... to help users freely edit with simple, uncomplicated operations. join tipsmake to find out how to easily and appropriately edit pdf files on pcs and laptops.
  • Instructions for editing PDF documents online for freeInstructions for editing PDF documents online for free
    to edit pdf files, we can use the pdfescape tool online completely free as in the article that network administrator instructs below.
  • How to batch rename files on MacHow to batch rename files on Mac
    sometimes work requirements force you to rename a large number of files at once on your mac.
  • Instructions for creating and using BAT file on WindowsInstructions for creating and using BAT file on Windows
    how to create a simple batch file and some basics about it will be presented in this article. at the same time you will be provided with some resources for learning and writing batch files.
  • How to Edit PDF FilesHow to Edit PDF Files
    this article shows you how to edit pdf files with adobe's acrobat pro dc software or convert pdf files to microsoft word format. if you are looking for a way to edit pdf files for free, use libreoffice draw, but it has fewer features than adobe acrobat pro dc.
  • How to Run a BAT File on WindowsHow to Run a BAT File on Windows
    this wikihow teaches you how to run a bat file—also known as a batch file—on a windows computer. batch files have many purposes, such as automating frequently used tasks. you can run them in the normal file explorer, or you can launch them ...
  • How to Execute batch file from command line on WindowsHow to Execute batch file from command line on Windows
    today's tipsmake will show you how to execute batch files (script files with .bat extension) from the windows command line. you can run the program from the 'run' dialog box, or type the command into a terminal window.