Search found 11 matches
- 2011-02-14T11:12:02-07:00
- Forum: Users
- Topic: Randomly remove pixels from an image
- Replies: 3
- Views: 5967
- 2011-02-14T07:04:46-07:00
- Forum: Users
- Topic: Randomly remove pixels from an image
- Replies: 3
- Views: 5967
Randomly remove pixels from an image
I'd like to take an image and randomly remove 75% of the pixels. Can this be done?
- 2011-02-14T05:57:55-07:00
- Forum: Users
- Topic: Newbie question - modify photo colour using this scale
- Replies: 3
- Views: 6247
Re: Newbie question - modify photo colour using this scale
[deleted] - I figured it out!
- 2011-02-13T18:36:48-07:00
- Forum: Users
- Topic: Newbie question - modify photo colour using this scale
- Replies: 3
- Views: 6247
Newbie question - modify photo colour using this scale
Hi guys...I'm just figuring out ImageMagick. This is what I'd like to do.
I'd like to take a photo and apply the following spectrum to it:
I greatly appreciate any help on how to do this!
I'd like to take a photo and apply the following spectrum to it:
I greatly appreciate any help on how to do this!
- 2010-09-05T18:49:41-07:00
- Forum: Users
- Topic: Use CLUT or something else?
- Replies: 2
- Views: 4544
Use CLUT or something else?
First of all, thanks for the great help I have gotten so far!
What I want to do is take an image and then apply the following gradient to it:
Is this possible? It looks to me like CLUT uses premade gradients.
What I want to do is take an image and then apply the following gradient to it:
Is this possible? It looks to me like CLUT uses premade gradients.
- 2010-09-05T17:45:04-07:00
- Forum: Users
- Topic: Newbie question:how to get started in php
- Replies: 2
- Views: 4553
Re: Newbie question:how to get started in php
I think I figured it out...I'll post it in case it helps anyone else. This is the code I used: <?php $test_directory = 'temp_images'; $command = "convert $test_directory/rainbow1.jpg -colorspace Gray $test_directory/rainbow3.jpg"; $test_image = system($command, $returnVal); if ($returnVal > 1) echo ...
- 2010-09-05T17:06:43-07:00
- Forum: Users
- Topic: Newbie question:Color modification of photos.
- Replies: 8
- Views: 12685
Re: Newbie question:Color modification of photos.
Thanks. I found exactly what I want to do....I want to use to -clut function to replace one spectrum with another. Now I just need to figure out how to use IM via a php script. (I just started a new topic to ask about this.)
- 2010-09-05T16:58:39-07:00
- Forum: Users
- Topic: Newbie question:how to get started in php
- Replies: 2
- Views: 4553
Newbie question:how to get started in php
This is likely a dumb question, but I cannot figure out how to launch ImageMagick via a php script. My host tells me IM is available in /usr/bin This is what I am trying: <?php $cmd = '/usr/bin/convert "/images/rainbow.jpg" -colorspace Gray "/images/gray_rainbow.jpg"'; exec($cmd); ?> But it does not ...
- 2010-09-05T16:55:30-07:00
- Forum: Users
- Topic: Newbie question:Color modification of photos.
- Replies: 8
- Views: 12685
Re: Newbie question:Color modification of photos.
excellent! thank you.
- 2010-09-05T16:07:06-07:00
- Forum: Users
- Topic: Newbie question:Color modification of photos.
- Replies: 8
- Views: 12685
Re: Newbie question:Color modification of photos.
Let me see if I can simplify my question...
Is it possible for me to take all of the purple in a photo and change it to blue using imagemagick?
Is it possible for me to take all of the purple in a photo and change it to blue using imagemagick?
- 2010-09-05T10:53:06-07:00
- Forum: Users
- Topic: Newbie question:Color modification of photos.
- Replies: 8
- Views: 12685
Newbie question:Color modification of photos.
I would like to create a webpage where a user can upload a photo and then it gets converted so that they can see what their dog would see. I have never used ImageMagick but before I go through the learning curve I'd like to make sure this can be done. What I want to do, for example, is take ...