Search found 4 matches

by ddrirc
2012-04-23T02:55:27-07:00
Forum: Users
Topic: [Solved] Shift image 1 pixel to the right, keep size
Replies: 8
Views: 21109

Re: [Solved] Shift image 1 pixel to the right, keep size

Really? I get no error and it seems to do the job, but I will switch the order if you say so.
by ddrirc
2012-04-22T13:47:48-07:00
Forum: Users
Topic: [Solved] Shift image 1 pixel to the right, keep size
Replies: 8
Views: 21109

Re: Shift image 1 pixel to the right, keep size

I actually want the furthest right pixel to just be lost, no wrapping. And the background needs to remain transparent/alpha so I'm not sure how well flattening would work So you want to drop the right column and fill the left with transparency? Is that correct? Try this: convert rose: rose.png ...
by ddrirc
2012-04-22T13:40:48-07:00
Forum: Users
Topic: [Solved] Shift image 1 pixel to the right, keep size
Replies: 8
Views: 21109

Re: Shift image 1 pixel to the right, keep size

I actually want the furthest right pixel to just be lost, no wrapping. And the background needs to remain transparent/alpha so I'm not sure how well flattening would work
by ddrirc
2012-04-22T13:17:48-07:00
Forum: Users
Topic: [Solved] Shift image 1 pixel to the right, keep size
Replies: 8
Views: 21109

[Solved] Shift image 1 pixel to the right, keep size

Hi, I'm trying to move all pixels (effectively the whole image) over by one pixel to the right and retain the original size of 120x150. The below code does ALMOST what I want - it copies the image and moves it over a pixel, but it doesn't get rid of the original image pixels. convert test.png -alpha ...