Hey! so my boss just asked me to find him a command for imagemagick to write transparent text on top of very large images. I had no idea what imagemagick was and i still don't. I need to know how he can use imagemagick to sort of watermark images we upload into our website. He asked for a command.
Thanks!
How can i install it in my website and what command do i use for text?
-
- Posts: 4
- Joined: 2015-10-13T06:28:34-07:00
- Authentication code: 1151
-
- Posts: 12159
- Joined: 2010-01-23T23:01:33-07:00
- Authentication code: 1151
- Location: England, UK
Re: How can i install it in my website and what command do i use for text?
Transparent text wouldn't be visible.
Good places to start reading:
http://www.imagemagick.org/Usage/
http://www.imagemagick.org/Usage/basics/
http://www.imagemagick.org/Usage/reference.html
http://www.imagemagick.org/script/comma ... ptions.php
http://www.imagemagick.org/script/comma ... essing.php
Good places to start reading:
http://www.imagemagick.org/Usage/
http://www.imagemagick.org/Usage/basics/
http://www.imagemagick.org/Usage/reference.html
http://www.imagemagick.org/script/comma ... ptions.php
http://www.imagemagick.org/script/comma ... essing.php
snibgo's IM pages: im.snibgo.com
-
- Posts: 4
- Joined: 2015-10-13T06:28:34-07:00
- Authentication code: 1151
Re: How can i install it in my website and what command do i use for text?
yeah i found those pages before, thanks.
"Transparent text wouldn't be visible."
Why? Aren't there different degrees of transparency? Like in CSS we use opacity:0.8 for example
"Transparent text wouldn't be visible."
Why? Aren't there different degrees of transparency? Like in CSS we use opacity:0.8 for example
Re: How can i install it in my website and what command do i use for text?
Yes there are; I would use RGBA for the text colour.
If you are using php I have some examples here.
If you are using php I have some examples here.
-
- Posts: 12159
- Joined: 2010-01-23T23:01:33-07:00
- Authentication code: 1151
- Location: England, UK
Re: How can i install it in my website and what command do i use for text?
Yes, you can have partially transparent text if you want.
snibgo's IM pages: im.snibgo.com
-
- Posts: 4
- Joined: 2015-10-13T06:28:34-07:00
- Authentication code: 1151
Re: How can i install it in my website and what command do i use for text?
Right and what command should i use?
-
- Posts: 4
- Joined: 2015-10-13T06:28:34-07:00
- Authentication code: 1151
Re: How can i install it in my website and what command do i use for text?
Bonzo wrote:Yes there are; I would use RGBA for the text colour.
If you are using php I have some examples here.
this helped a lot thanks!