Search found 2 matches

by rmcooke
2011-03-23T05:31:02-07:00
Forum: Users
Topic: How do I prevent interpolation when rotating an image.
Replies: 2
Views: 5896

Re: How do I prevent interpolation when rotating an image.

Apologies for answering my own post so soon after asking it.

The solution I found was this:

Code: Select all

convert -background black -bordercolor black -border 2x2 -resize 230x330 -rotate 15 -transparent black laugh.png laugh_skewed.png
by rmcooke
2011-03-23T04:17:04-07:00
Forum: Users
Topic: How do I prevent interpolation when rotating an image.
Replies: 2
Views: 5896

How do I prevent interpolation when rotating an image.

I am something of an Imagemagick noob and have been attempting to resize and rotate images with ImageMagick in the command line using this command: convert -resize 230x330 -rotate 15 -transparent white laugh.png laugh_skewed.png At the same time, I want to make the resulting white background ...