Mogrify is a tool from the imagemagick suite of programs and performs many actions such as resize and convert upon image files. In contrast to convert, another imagemagick tool, mogrify overwrites original image files.
Questions tagged [mogrify]
141 questions
0
votes
1 answer
R: Postscript export filename extension on Mac OS X and incorporating mogrify into R
I am plotting several graphics in R in a loop and export them as a postscript using postscript().
for(i in 1:length(ind)){
postscript(names(ind[i]))
par(mar=c(6,8,6,5))
plot(ind[[i]][,c('YEAR','VALUE')],
type='b',
…

kurdtc
- 1,551
- 5
- 21
- 39
0
votes
1 answer
Increase images size using linear resampling via shell
How I can convert an entire image folder of pixel art images to double size without blur pixels ? I try with mogrify but blurs the inside of images. ( border works)

gabrign
- 105
- 3
0
votes
1 answer
How to search and resize images with dimensions higher than ... in Unix cli
How can i find and resize images with resolution higher that X width in unix cli?
I have tried
find -name *.jpg -exec mogrify -resize 800x800 -format jpg {} \;
but the problem is that resizes also the images that have width or height below from…

ioaniatr
- 277
- 4
- 15
0
votes
1 answer
Why does mogrify on WAMP hang?
Got a bit of a challenge here. We're running a PHP script via Apache that allows users to upload images using their browser. The script attempts to use mogrify to down-scale the images once uploaded. Mogrify is called using PHP's exec() function,…

Johan Fredrik Varen
- 3,796
- 7
- 32
- 42
-1
votes
1 answer
Trying to insert PNGs over certain image, scaled down to fit at center left position
I'm using Windows and I can't figure out how to batch insert images over a particular background image.
Here's what I'm trying to do:
https://i.stack.imgur.com/IPDuP.jpg
Here's the background image alone…