Reputation: 6255
ALL,
I have an XPM image with the size of 10x10. What I would like to do is to scale it so that the size becomes 16x16.
Does anybody knows how I can do that?
Thank you.
Upvotes: 0
Views: 2248
Reputation: 207445
With ImageMagick, which is installed on most Linux distros, and is available for macOS and Windows:
convert small.xpm -scale 16x16 bigger.xpm
Upvotes: 3