Search found 6 matches
- 2019-05-24T11:24:42-07:00
- Forum: Users
- Topic: convert command with noise overlay
- Replies: 4
- Views: 6184
Re: convert command with noise overlay
Got it, thanks
- 2019-05-24T11:19:48-07:00
- Forum: Users
- Topic: convert command with noise overlay
- Replies: 4
- Views: 6184
Re: convert command with noise overlay
Oh, ok so lena was the image you used. I guess I can add your code after my +appned maybe? I'll give that a try.
- 2019-05-24T11:18:13-07:00
- Forum: Users
- Topic: convert command with noise overlay
- Replies: 4
- Views: 6184
Re: convert command with noise overlay
How do I attach that to the single command above? Is lena.png a sort of temporary file convert uses, or is that supposed to be a real image I have already? Basically, I just want to add some texture to the image I am creating with the converted code I created. I figured adding noise would be the ...
- 2019-05-24T10:38:49-07:00
- Forum: Users
- Topic: convert command with noise overlay
- Replies: 4
- Views: 6184
convert command with noise overlay
Ubuntu 18.04 ImageMagick 6.9.7-4 x86_64 PHP I have some code to develop some colored blocks, but I'd like to add a bit of texture. I don't want to use a script, I just want to do it in one line. So I'm thinking just add a little noise with lowered opacity as an overlay. The code looks like this now ...
- 2019-05-21T20:30:28-07:00
- Forum: Users
- Topic: Annotate is repeating on every image.
- Replies: 3
- Views: 5288
Re: Annotate is repeating on every image.
Yup, that was it, thanks. Interestingly I wasn't able to put it on one line in my php code running on Ubuntu Linux like: ecec('convert \( -size 25x25 xc:#FFFFFF -gravity center -fill black -annotate +0 \'1\' \) \( -size 25x25 xc:#FFFFFF -gravity center -fill black -annotate +0 \'2\' \) \( -size ...
- 2019-05-21T19:36:01-07:00
- Forum: Users
- Topic: Annotate is repeating on every image.
- Replies: 3
- Views: 5288
Annotate is repeating on every image.
Command Line Image: I want 3 25x25 colored blocks, each block should contain a number. convert -size 25x25 xc:#FFFFFF -gravity center -fill black -annotate +0 '1' -size 25x25 xc:#FFFFFF -gravity center -fill black -annotate +0 '2' -size 25x25 xc:#FFFFFF -gravity center -fill black -annotate +0 '3 ...