Igor
Igor

Reputation: 6255

Rescaling XPM image

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

Answers (1)

Mark Setchell
Mark Setchell

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

Related Questions