Search found 44 matches

by sujan.dasmahapatra
2012-02-24T23:42:30-07:00
Forum: Users
Topic: get color from image put on another image
Replies: 14
Views: 21976

Re: get color from image put on another image

if you have a facebook account you can see this pictures my page. see the album shirts. http://facebook.com/sujan.dasmahapatra
by sujan.dasmahapatra
2012-02-24T23:29:26-07:00
Forum: Users
Topic: get color from image put on another image
Replies: 14
Views: 21976

Re: get color from image put on another image

http://www.facebook.com/media/set/?set=a.379310808748793.95745.100000096320918&type=3 I have posted some pictures on my facebook shirts album. Please check I want those colors to put on my shirt images. I need to do it in windows. Please tell me how can get this colors and using +level-colors p...
by sujan.dasmahapatra
2012-02-24T21:51:33-07:00
Forum: Users
Topic: get color from image put on another image
Replies: 14
Views: 21976

get color from image put on another image

I am able to change the color of an image like this exec("convert shirt.jpg +level-colors black,blue shirtmod3.jpg"); [code] so my shirt color is chaning from white to blue etc. any color. Now I have a set of images all images representing a color, sometimes the colors are strips. How can ...
by sujan.dasmahapatra
2012-02-24T21:48:15-07:00
Forum: Users
Topic: convert white shade to red shade using recolor
Replies: 13
Views: 25334

Re: convert white shade to red shade using recolor

now my color shades are coming properly friend. I am following your suggestion for +level-color its coming perfect like this

exec("convert shirt.jpg +level-colors black,blue shirtmod3.jpg");

Thanks a lot.
by sujan.dasmahapatra
2012-02-24T20:22:22-07:00
Forum: Users
Topic: convert white shade to red shade using recolor
Replies: 13
Views: 25334

Re: convert white shade to red shade using recolor

what does it mean by convert -size 100x100 gradient: -recolor \ "0.53 0.53 1 \ 0.81 0.82 1 \ 0.92 0.92 1" \ result_skyblue.png it should be convert source.png right. you have not mentioned source image. I think it is convert source.png -recolor \ "0.53 0.53 1 \ 0.81 0.82 1 \ 0.92 0.92...
by sujan.dasmahapatra
2012-02-24T12:21:56-07:00
Forum: Users
Topic: convert white shade to red shade using recolor
Replies: 13
Views: 25334

Re: convert white shade to red shade using recolor

http://www.orkut.co.in/Main#AlbumZoom?gwt=1&uid=9786713824462609536&aid=1330085904&pid=1330111104456 - this i s the shirt.jpg white shirt http://www.orkut.co.in/Main#AlbumZoom?gwt=1&uid=9786713824462609536&aid=1330085904&pid=1330111147518 - this is the skyblue shirt which i ...
by sujan.dasmahapatra
2012-02-24T12:06:03-07:00
Forum: Users
Topic: convert white shade to red shade using recolor
Replies: 13
Views: 25334

Re: convert white shade to red shade using recolor

my white color is not changing to red friend I am doing like this <?php if(isset($_POST['fabric2_Sleeve_Style1'])) { exec("convert shirt.jpg -recolor '1 1 1 0 0 1 0 0 1' shirtmod1.jpg"); $imagepath = "shirtmod1.jpg"; echo "<img style='float:right;' src='$imagepath' />";...
by sujan.dasmahapatra
2012-02-24T04:12:13-07:00
Forum: Users
Topic: convert white shade to red shade using recolor
Replies: 13
Views: 25334

Re: convert white shade to red shade using recolor

Thanks a lot friend. I am experimenting your last suggestions. thanks a lot.
by sujan.dasmahapatra
2012-02-19T01:49:45-07:00
Forum: Users
Topic: convert white shade to red shade using recolor
Replies: 13
Views: 25334

Re: convert white shade to red shade using recolor

please tell me friend how can i use the functionality of recolor i am using imagick-6.6 i have the recolor feature in this version.

but i dont know how to make the color matrix. my source color is white, i want to convert all shades of white to red shade. how can i do that?
by sujan.dasmahapatra
2012-02-19T00:26:46-07:00
Forum: Users
Topic: convert white shade to red shade using recolor
Replies: 13
Views: 25334

Re: convert white shade to red shade using recolor

its not working... my shirt is white shade i want the exact shirt in red or green, or blue or any other custom color i want later. using this my color is changing to skyblue with the exact shade of white convert shirt.jpg -recolor '0 0 1 0 0 1 1 1 1' shirtmod3.jpg But i am not able to get the same s...
by sujan.dasmahapatra
2012-02-19T00:10:25-07:00
Forum: Users
Topic: convert white shade to red shade using recolor
Replies: 13
Views: 25334

Re: convert white shade to red shade using recolor

i have tried using

convert image -fuzz XX% -fill red -opaque white result

This changing the color but exact shade is not coming. It looks like a color object, not looking like a shirt. i want the exact shade to come from the image but with a different color.
by sujan.dasmahapatra
2012-02-18T22:55:28-07:00
Forum: Users
Topic: convert white shade to red shade using recolor
Replies: 13
Views: 25334

convert white shade to red shade using recolor

I want to convert the white shade of an image into red shade. I am trying using recolor but it's not coming. please help me

Code: Select all

convert shirt0.jpg  -recolor '1 0 0 0 0 0 1 1 1' shirtmod01.jpg
:?
by sujan.dasmahapatra
2012-02-18T21:57:37-07:00
Forum: Developers
Topic: convert white shade to red shade using recolor
Replies: 1
Views: 4645

convert white shade to red shade using recolor

how can i convert white shade into red shade using recolor. i am trying like this but it's not coming.

Code: Select all

convert shirt0.jpg  -recolor '1 0 0 0 0 0 1 1 1' shirtmod01.jpg
by sujan.dasmahapatra
2012-02-18T21:45:07-07:00
Forum: Users
Topic: Change all shades of particular colour using a specific RGB
Replies: 7
Views: 14435

Re: Change all shades of particular colour using a specific

how can i convert all shades of white to red in an image. please give me some hints i am trying like this

Code: Select all

convert shirt0.jpg  -recolor '1 0 0 0 0 0 1 1 1' shirtmod01.jpg