Search found 7 matches

by ssweeney
2011-07-29T05:38:14-07:00
Forum: Users
Topic: Image distort and compose
Replies: 2
Views: 5526

Re: Image distort and compose

When I think about it I could use Imagick to just compose the images separately, but it would be nice to have it in one command :) The rest of my script uses Imagick but I was unable to get the distortion that I needed with it so tried the command line. The distortion mentioned being that a solid ...
by ssweeney
2011-07-29T00:13:09-07:00
Forum: Users
Topic: Image distort and compose
Replies: 2
Views: 5526

Image distort and compose

Hi, I'm trying to use the command line tools to do some image work. I'm trying to take an image, distort it (specifically skew and resize), then compose on a larger transparent background at a set pair of points. My command so far is as follows: convert -size 1600x1000 xc:none image1.png -matte ...
by ssweeney
2011-07-18T12:46:23-07:00
Forum: IMagick
Topic: Imagick distort error.
Replies: 4
Views: 13377

Re: Imagick distort error.

Cool. I should have been a little more specific my issue was using distortImage with DISTORTION_AFFINE so maybe mine wasn't completely related. Shortly after posting I was able to get this to work. The issue in my case was I had to specifically typecast my variables. I was doing an explode on a ...
by ssweeney
2011-07-18T12:33:44-07:00
Forum: IMagick
Topic: Imagick distort error.
Replies: 4
Views: 13377

Re: Imagick distort error.

Good Afternoon,

I know this is really old but I just ran into this issue as well. Anyone have any thoughts? It doesn't like the fact I'm using variables, however using literal values works just fine.

Thanks!
by ssweeney
2011-07-14T07:27:37-07:00
Forum: IMagick
Topic: Image Composition using specific coords
Replies: 4
Views: 13821

Re: Image Composition using specific coords

Thanks for the points, I played around with the command line after your post and while I made progress I decided to give the php api one more shot and I was able to produce the results I wanted. I ended up doing an affine distortImage and just played with the control points. With enough jiggering I ...
by ssweeney
2011-07-13T10:29:23-07:00
Forum: IMagick
Topic: Image Composition using specific coords
Replies: 4
Views: 13821

Re: Image Composition using specific coords

Thanks for the reply. Yeah I tried that documentation and it was a good start. I've been playing more with distortImage and I think it's promising. I'll explain a little further. I'm trying to compose a transparent image A on a jpg image B which is then composed on image C. Image B needs to be ...
by ssweeney
2011-07-13T09:19:35-07:00
Forum: IMagick
Topic: Image Composition using specific coords
Replies: 4
Views: 13821

Image Composition using specific coords

Good Afternoon, Using php I'm in the process of switching our POVScript based rendering engine to ImageMagick and while progress has been made I'm hitting one road block hopefully someone can shed some light on. Given two images A and B I'm trying to compose B on A given specific coords for the ...