Search found 26 matches

by sanjeevk
2009-12-02T23:38:02-07:00
Forum: Developers
Topic: Apply texture on selected Area (Color) of an Image
Replies: 28
Views: 59885

Re: Apply texture on selected Area (Color) of an Image

sorry ! There was some problem on my server. Now we have fixed this. You can review this.
In this application I also want to implement associate color functionality. I am working on this feature.
by sanjeevk
2009-11-19T02:14:51-07:00
Forum: Developers
Topic: Associate Color ?
Replies: 10
Views: 21055

Re: Associate Color ?

Hi All,

After doing some R&D with imagemagick . I think we can resolve the associate color problem using following steps.

1. we generate a gradient of a color.
e.g. convert -size 15x100 gradient:#0300FF gradient.png
2. Now we segment images of associate color and combine them to get one image of ...
by sanjeevk
2009-11-10T03:44:57-07:00
Forum: Developers
Topic: Apply texture on selected Area (Color) of an Image
Replies: 28
Views: 59885

Re: Apply texture on selected Area (Color) of an Image

Hi All,

Your commands does not work as per my requirement. Now I ma using following command for this.


convert aqua_font.png \( -clone 0 +matte\) \
\( -clone 0 +matte texture_fabric.gif -channel rgba -virtual-pixel tile -fx "v" \) \
\( -clone 0 +matte -clone 2 -compose hardlight -composite ...
by sanjeevk
2009-11-10T03:08:56-07:00
Forum: Developers
Topic: Problem with Godaddy
Replies: 7
Views: 18664

Re: Problem with Godaddy

Thanks Fmw42.
by sanjeevk
2009-11-09T02:17:09-07:00
Forum: Developers
Topic: Apply texture on selected Area (Color) of an Image
Replies: 28
Views: 59885

Re: Apply texture on selected Area (Color) of an Image

Hi ,

I am using this command

convert aqua_font.png \
\( -clone 0 -alpha extract \) \
\( -clone 0 -alpha off texture_fabric.gif -channel rgba -virtual-pixel tile -fx "v" \) \
\( -clone 0 -alpha off -clone 2 -compose hardlight -composite \) \
-delete 0,2 +swap -compose copy_opacity -composite aqua ...
by sanjeevk
2009-11-08T23:43:53-07:00
Forum: Developers
Topic: Problem with Godaddy
Replies: 7
Views: 18664

Re: Problem with Godaddy

Hi ,
I have solved this problem. when I am using the same command as :-

<?php
exec("/usr/local/bin/convert /home/content/f/l/o/floordecor/html/app/webroot/img/admin/designs/103/103_Rectangle.png -format %c -depth 8 histogram: info: ",$out);
print_r($out);
?>
It's working.

while in my last command ...
by sanjeevk
2009-11-08T22:46:15-07:00
Forum: Developers
Topic: Problem with Godaddy
Replies: 7
Views: 18664

Re: Problem with Godaddy

No it's not working it still gives empty Array() .
by sanjeevk
2009-11-08T22:00:46-07:00
Forum: Developers
Topic: Problem with Godaddy
Replies: 7
Views: 18664

Re: Problem with Godaddy

Hi

Thanks for you suggestion

This command .
<?php
exec("/usr/local/bin/convert -version",$out,$returnval);
print_r($out[0]);
?>

Run successfully . and gives output as
/*
*Version: ImageMagick 6.2.8 02/25/09 Q16 file:/usr/share/ImageMagick-6.2.8/doc/index.html;
*/


But when I am trying with ...
by sanjeevk
2009-11-06T01:31:18-07:00
Forum: Developers
Topic: Problem with Godaddy
Replies: 7
Views: 18664

Problem with Godaddy

Hi All,

I am running convert command on Godaddy using php script with the help of exec function of php.
<?php

$cmd = $this->convert ." ".$path." -format %c -depth 8 histogram:info:-";
$output = array();
exec($cmd, $output);
?>

It gives me empty array.

while when I am running the same command ...
by sanjeevk
2009-10-06T05:18:23-07:00
Forum: Developers
Topic: Associate Color ?
Replies: 10
Views: 21055

Re: Associate Color ?

We are trying to achieve the following: Modify similar looking colors to another color which are similar looking.

- We have images with associated colors in them . Lets say an image has 10 colors and out of them 3 colors P1, P2 and P3 are of similar tone , so they are associated to each other like ...
by sanjeevk
2009-09-22T06:55:37-07:00
Forum: Developers
Topic: Associate Color ?
Replies: 10
Views: 21055

Associate Color ?

Hi,
I want to do following with an image.
1. First pick one color ( Green ) from color. But in this image there are some associated color with green like ( Associate Green ) .

2. Suppose I am changing dark ( Green ) with Blue .
same time associated Green also change in light Blue.

It can possible ...
by sanjeevk
2009-09-09T07:01:02-07:00
Forum: Developers
Topic: Thumbnail problem wth Flat images
Replies: 3
Views: 8280

Thumbnail problem wth Flat images

Hi ,
We are trying to create a thumbnail of a flat image which has only 4 colors and when we generate a thumbnail of that image they are enhanced by many colors . We want to retain the original colors only.

Can someone please let us know how to do retain the colors of the original image.

Commands ...
by sanjeevk
2009-09-07T03:51:06-07:00
Forum: Developers
Topic: segment image according to colors in image
Replies: 8
Views: 20263

Re: segment image according to colors in image

Thanks,

I am working on the same.
by sanjeevk
2009-09-06T22:15:35-07:00
Forum: Developers
Topic: segment image according to colors in image
Replies: 8
Views: 20263

Re: segment image according to colors in image

Hi fmw42,
I have use

" convert image -channel rgba -alpha on -fuzz XX% -fill none +opaque red image_red.png"

command for this it's working. You have any other idea for the same in which we does not use -fuzz factor.

Or we can get same result without using -fuzzXX%.

Please suggeat on the same.