Greetings,
I know this is a simple question but I cannot find an answer after about 30 minutes of reading the manual.
I have a 1000x999 image that I would like to resample to 1000x1000. It seems I can't do this for some reason. I read about the distort method, is that what I should be using? If so, what exactly do I type for my image to just get one image changed from 1000x999 to 1000x1000? This would help me greatly.
What I have used that doesn't work :
magick image02.gif -sample 1000x1000 image02.gif
Can't Resize/Sample from 999 to 1000 pixels
-
- Posts: 16
- Joined: 2018-06-08T03:45:59-07:00
- Authentication code: 1152
Re: Can't Resize/Sample from 999 to 1000 pixels
Use `-resize 1000x1000!`. Note the exclamation point.
-
- Posts: 16
- Joined: 2018-06-08T03:45:59-07:00
- Authentication code: 1152
Re: Can't Resize/Sample from 999 to 1000 pixels
Thank you! This worked!