Search found 2 matches
- 2013-07-05T10:34:10-07:00
- Forum: Users
- Topic: Porting options to command line imagemagick issues
- Replies: 2
- Views: 978
Re: Porting options to command line imagemagick issues
Thanks for the response. I was able to get it working with the following set of programs: the php program (which takes a 'GET' color of 6 hex values) (e.g. website.com/colorchange.php?color=ffffff) <?php exec('sh colorchange.sh ' . $_GET["color"]); ?> and the colorchange.sh command that worked ...
- 2013-07-05T07:44:45-07:00
- Forum: Users
- Topic: Porting options to command line imagemagick issues
- Replies: 2
- Views: 978
Porting options to command line imagemagick issues
I want to replace the color in one image to another, while por. I am doing this using the following command: convert image1.png -fill '#ffffff' -opaque '#ff00ff' image2.png This works fine. However, when I put that script in a quick bash sh file, the contents of which are: #!/bin/bash convert image1 ...