Search found 7 matches
- 2014-10-13T13:50:02-07:00
 - Forum: Users
 - Topic: Unwanted semi-transparent and inverted color of text
 - Replies: 13
 - Views: 4231
 
Re: Unwanted semi-transparent and inverted color of text
Your command works like a charm 
 I'm executing it via the PHP shell_exec() function. Thanks for help 
					- 2014-10-11T14:23:15-07:00
 - Forum: Users
 - Topic: Unwanted semi-transparent and inverted color of text
 - Replies: 13
 - Views: 4231
 
Re: Unwanted semi-transparent and inverted color of text
Yes, I need it in CMYK because the images will be printed so the color space is important.
For now I found a dirty workaround which have a second one workaround inside. Speaking short: rendering black text work good so I'm making a black text on a transparent background and then I'm using it as a ...
					For now I found a dirty workaround which have a second one workaround inside. Speaking short: rendering black text work good so I'm making a black text on a transparent background and then I'm using it as a ...
- 2014-10-11T05:45:21-07:00
 - Forum: Users
 - Topic: Unwanted semi-transparent and inverted color of text
 - Replies: 13
 - Views: 4231
 
Re: Unwanted semi-transparent and inverted color of text
IMagick is just a shortcut for ImageMagick ;)
I used
$text->setFillColor(new ImagickPixel('cmyk(255,255,255,255)'));
but the text is still semi-transparent. What about good news is that the colors are now not inverted!
Maybe something is wrong with merging the text and the image?
EDIT:
Or ...
					I used
$text->setFillColor(new ImagickPixel('cmyk(255,255,255,255)'));
but the text is still semi-transparent. What about good news is that the colors are now not inverted!
Maybe something is wrong with merging the text and the image?
EDIT:
Or ...
- 2014-10-11T05:18:05-07:00
 - Forum: Users
 - Topic: Unwanted semi-transparent and inverted color of text
 - Replies: 13
 - Views: 4231
 
Re: Unwanted semi-transparent and inverted color of text
#00000000 is totally transparent. #000000ff on the other hand gives the same effect as #000000. :/
					- 2014-10-11T04:51:07-07:00
 - Forum: Users
 - Topic: Unwanted semi-transparent and inverted color of text
 - Replies: 13
 - Views: 4231
 
Re: Unwanted semi-transparent and inverted color of text
Yeah, I know that my images are in CMYK. that's why I'm using ImageMagick in PHP, not GD library. But can you explaine me how to fix the text color?
					- 2014-10-11T01:06:14-07:00
 - Forum: Users
 - Topic: Unwanted semi-transparent and inverted color of text
 - Replies: 13
 - Views: 4231
 
Re: Unwanted semi-transparent and inverted color of text
 bg.tif - Base image. Making an empty image using IM cause the copied image to become lighter. Maybe it's a problem with semi-transparency too?
u.tif The image which is copied many times and which is a background for the text.
Additonally, here are the saving settings:
http://i.imgur.com/osebRS1 ...
					u.tif The image which is copied many times and which is a background for the text.
Additonally, here are the saving settings:
http://i.imgur.com/osebRS1 ...
- 2014-10-10T16:57:45-07:00
 - Forum: Users
 - Topic: Unwanted semi-transparent and inverted color of text
 - Replies: 13
 - Views: 4231
 
Unwanted semi-transparent and inverted color of text
Hi, I'm using ImageMagick to copy some images and add text to them. 
The problem is that I want to make a solid, not transparent white text. What I get is something different.
Example:
$text->setFillColor(new ImagickPixel('#ffffff'));
http://i.imgur.com/i8DIcFJ.png
Other example:
$text ...
					The problem is that I want to make a solid, not transparent white text. What I get is something different.
Example:
$text->setFillColor(new ImagickPixel('#ffffff'));
http://i.imgur.com/i8DIcFJ.png
Other example:
$text ...