Search found 12 matches
- 2017-11-12T03:02:44-07:00
- Forum: Users
- Topic: unrecognized color 'rgb(50,129,75)'
- Replies: 7
- Views: 10986
Re: unrecognized color 'rgb(50,129,75)'
I'm aware of the change from warning to error, I'm currently using an older version of imagemagick. I'm revisiting my code in an attempt to remove these issues, I'd like to figure out what the current value returns ( the one with the warning ), i can't get your example code to work though. what do ...
- 2017-11-11T06:20:58-07:00
- Forum: Users
- Topic: unrecognized color 'rgb(50,129,75)'
- Replies: 7
- Views: 10986
Re: unrecognized color 'rgb(50,129,75)'
sorry for the super late reply!
ironically I like the result I get with the warning, I wonder what color ends up being used instead of 'rgb(50,129,75)' when imagemagick returns the warning?
ironically I like the result I get with the warning, I wonder what color ends up being used instead of 'rgb(50,129,75)' when imagemagick returns the warning?
- 2016-08-26T01:42:07-07:00
- Forum: Users
- Topic: output difference between 6.8.5 and 7.0.2
- Replies: 4
- Views: 2431
Re: output difference between 6.8.5 and 7.0.2
Thanks for your replies. The last command (see below) is the one causing the erratic result. All previous lines work fine. I expected to be something to do with colour space, I'm just not familiar enough with recent developments of imagemagick to figure out what has changed: what the code does in 6 ...
- 2016-08-25T14:55:04-07:00
- Forum: Users
- Topic: output difference between 6.8.5 and 7.0.2
- Replies: 4
- Views: 2431
output difference between 6.8.5 and 7.0.2
Hi, I've updated my installation of imagemagick from 6.8.5 to 7.0.2 and noticed the output images are not elaborated the same way as before. Starting from an aerial view I would run a conversion which filtered colors and added snow in some areas of the original image. Since recently the colors come ...
- 2012-12-14T10:58:49-07:00
- Forum: Users
- Topic: unrecognized color 'rgb(50,129,75)'
- Replies: 7
- Views: 10986
Re: unrecognized color 'rgb(50,129,75)'
thanks for the quick reply. with " I get a black image and no warning. with \" I get the intended result but get the warning too Magick: unrecognized color `"rgb(255,255,255)"' with no quotes I get a black image and no warning. I think I'll convert the rgb value to hexadecimal and sort it out that ...
- 2012-12-14T09:57:31-07:00
- Forum: Users
- Topic: unrecognized color 'rgb(50,129,75)'
- Replies: 7
- Views: 10986
unrecognized color 'rgb(50,129,75)'
First of all thank you for imagemagick, I'm making use of it I think it's a wonderful software. I've recently bumped into a warning I'm not sure whether I'm doing something wrong, perhaps I'm building the string wrong using python, I'm not sure. Basically the string below runs fine except it gives ...
- 2011-12-29T09:06:27-07:00
- Forum: Users
- Topic: stack multiple -composite together
- Replies: 2
- Views: 5268
stack multiple -composite together
please ignore, found a solution
- 2011-11-03T16:03:52-07:00
- Forum: Users
- Topic: need help with Lighten composite using (+clone)
- Replies: 6
- Views: 11255
Re: need help with Lighten composite using (+clone)
thanks for the -write tip, it is now much easier to debug my steps. Basically I would feed http://img829.imageshack.us/img829/4829/origz.th.jpg as an input and get a rough mask out. I wanted the -level operation to darken the whole brightness down and I ended up using -fill black -colorize 50 ...
- 2011-11-03T03:06:21-07:00
- Forum: Users
- Topic: need help with Lighten composite using (+clone)
- Replies: 6
- Views: 11255
Re: need help with Lighten composite using (+clone)
Thanks a lot for your reply, it seems to work fine (Except that I don't quite understand why eheh), I'm now understanding the use of parenthesis and compose flags better. I'm writing a batch conversion script to create night textures from day textures; basically I'm analizing the image, creating ...
- 2011-11-02T17:00:17-07:00
- Forum: Users
- Topic: need help with Lighten composite using (+clone)
- Replies: 6
- Views: 11255
need help with Lighten composite using (+clone)
Hello, I would like to soft lighten an image with a blurred version of itself, except that I would like to color correct the blurred version a little bit before compositing it back. The following line works fine: convert INPUT ( +clone -blur 0x18 -gamma 1.8 ) -compose Lighten -composite OUTPUT ...
- 2011-10-05T08:36:34-07:00
- Forum: Users
- Topic: keep color instead of replace color
- Replies: 4
- Views: 8577
Re: keep color instead of replace color
Thanks Anthony, I'm on windows and can't seem able to find any binary newer than 6.729 though. In the case of planB (use of older versions of imagemagick) how would the following look like with the old masking method? convert FILEIN -fill black -fuzz 95% +opaque 'rgb(255, 255,255)' FILEOUT I now am ...
- 2011-10-04T15:25:36-07:00
- Forum: Users
- Topic: keep color instead of replace color
- Replies: 4
- Views: 8577
keep color instead of replace color
Hello, This is my first post, I hope to be as concise as I can :) I've got a few small points that I got stuck with and will need your help. I took a look at examples unsuccessfully. 1) I need to select a color from an image and replace everything else with black. It's pretty much similar to convert ...