Search found 6 matches

by dadagogo
2011-01-26T01:31:59-07:00
Forum: Bugs
Topic: BUG : annotate No Thread Safe
Replies: 9
Views: 16463

Re: BUG : annotate No Thread Safe

ok, thanks.
As, there is no problem with other fonts (No X11) and other OS. I m not sure that it is necessary to single thread the entire X1.
by dadagogo
2011-01-25T01:45:49-07:00
Forum: Bugs
Topic: BUG : annotate No Thread Safe
Replies: 9
Views: 16463

Re: BUG : annotate No Thread Safe

Hi,
I called image.annotate() once before go into threading code using X11 font and I have same error.
by dadagogo
2011-01-24T06:54:27-07:00
Forum: Bugs
Topic: BUG : annotate No Thread Safe
Replies: 9
Views: 16463

Re: BUG : annotate No Thread Safe

Thanks lot,
No problem with Helvetica font !!

david
by dadagogo
2011-01-24T06:45:40-07:00
Forum: Bugs
Topic: BUG : annotate No Thread Safe
Replies: 9
Views: 16463

Re: BUG : annotate No Thread Safe

For the OS : Ubuntu 10.04.1 LTS (Linux version 2.6.32-27-generic)
by dadagogo
2011-01-24T06:41:13-07:00
Forum: Bugs
Topic: BUG : annotate No Thread Safe
Replies: 9
Views: 16463

Re: BUG : annotate No Thread Safe

I'm using Ubuntu 4.4.3-4ubuntu5 (gcc 4.4.3) and ImageMagick-6.6.7-1.
by dadagogo
2011-01-24T03:15:41-07:00
Forum: Bugs
Topic: BUG : annotate No Thread Safe
Replies: 9
Views: 16463

BUG : annotate No Thread Safe

hi,

I'm using IM 6.6.7-1. I am trying to put text into image with the "annotate" method.



image.modifyImage();
Color col("white");
image.fillColor(col);
image.fontPointsize(20);
std::string Font="-*-bitstream charter-medium-r-normal-*-*-*-*-*-*-*-iso8859-1";
image.font(Font);
image ...