Search found 9 matches
- 2014-01-22T11:51:33-07:00
- Forum: Users
- Topic: bug in fx function
- Replies: 10
- Views: 5897
Re: bug in fx function
So it maybe problem in 6.8.7-8 and it is fixed in IM 6.8.8.2. If I switch to IM 6.8.8.2 that may solve the problem.
- 2014-01-22T10:10:24-07:00
- Forum: Users
- Topic: bug in fx function
- Replies: 10
- Views: 5897
Re: bug in fx function
Some area that there is no value for them are filled by virtual pixel, and image has problems in those areas.
- 2014-01-22T10:08:32-07:00
- Forum: Users
- Topic: bug in fx function
- Replies: 10
- Views: 5897
Re: bug in fx function
Sorry for the bad links, here another one:
correct: http://imgur.com/uxxbu7Y,8Neapcc#0
wrong: http://imgur.com/uxxbu7Y,8Neapcc#1
correct: http://imgur.com/uxxbu7Y,8Neapcc#0
wrong: http://imgur.com/uxxbu7Y,8Neapcc#1
- 2014-01-22T09:19:15-07:00
- Forum: Users
- Topic: bug in fx function
- Replies: 10
- Views: 5897
Re: bug in fx function
Thanks for your reply. I upload the result here: https://www.dropbox.com/home/imagemagick_result first one (correct.png), I got it from IM 6.8.0-10 in my mac OSX Lion, which is suppose to be like that. second one(wrong.png), I got it from IM 6.8.7-8 in Parallel (virtual machine ) , Windows 7 on same ...
- 2014-01-21T15:25:01-07:00
- Forum: Users
- Topic: bug in fx function
- Replies: 10
- Views: 5897
Re: bug in fx function
Can someone in ImageMagick please help me with that?
Thanks!
Thanks!
- 2014-01-15T07:54:03-07:00
- Forum: Users
- Topic: bug in fx function
- Replies: 10
- Views: 5897
bug in fx function
It seems that virtualpixelmethod is not working in fx function anymore. I installed imagemagick 6.8.7-8 on my windows machine, I had imagemagick 6.8.0-10 on my mac. When I run the same command, I am getting different result. the command is: convert -size 1096x1 xc: -virtual-pixel black -fx "xc=548 ...
- 2012-01-17T15:44:35-07:00
- Forum: Fred's Scripts
- Topic: New function (Cylinderize)
- Replies: 12
- Views: 43535
Re: New function (Cylinderize)
Hi guys, I have a question for Anthony or other imagemagick guys here. Our Cylinderize function is almost done. We need to check input parameters to make sure they are in the certain range. right now I am doing something like this: assert(radius>0); assert((wrap>=10)&&(wrap<=100)); It is working ...
- 2012-01-13T07:53:30-07:00
- Forum: Fred's Scripts
- Topic: New function (Cylinderize)
- Replies: 12
- Views: 43535
Re: New function (Cylinderize)
Thank you so much Fred for your fast reply. I found out what was the problem. I was doing something wrong and it is working great now. I may contact you if I have a question later on.
Thanks again!
~Sara
Thanks again!
~Sara
- 2012-01-12T08:38:33-07:00
- Forum: Fred's Scripts
- Topic: New function (Cylinderize)
- Replies: 12
- Views: 43535
Re: New function (Cylinderize)
Our function basic idea is from Fred's scrip for Cylinderize. It is currently taking 7 parameters. 6 parameters are in double type and the one is MagickBooleanType. What do you recommend for this? I was also wondering what is your standard to check the parameter to be in the specific rang inside the ...