# Batch Image Resize

## Keeping Aspect Ratio

```
mogrify -path [Full path to store the resized images] -resize [width]x[height] -quality [quality] -format [format] *.JPG
```

## No Aspect Ratio

```
mogrify -path [Full path to store the resized images] -resize [width]x[height]! -quality [quality] -format [format] *.JPG
```