Search found 73 matches

by troyd1
2007-09-27T08:36:27-07:00
Forum: Users
Topic: verticle text
Replies: 7
Views: 14885

Re: verticle text

This may get a little long, but here goes. I settled on using the annotate. It works how I want it to. As a test I did: convert -size 100x200 xc:white -fill black -draw "50,50 70,50" -fill blue -annotate 270x270+25+50 "test text" This work great, the anchor point is the beginning...
by troyd1
2007-09-26T17:08:19-07:00
Forum: Users
Topic: verticle text
Replies: 7
Views: 14885

Re: verticle text

I will be building a command using a program to create it all based on the size dynamically. I did not want you to get wrapped up in the application, I can handle that. I was just wondering how to put text on an image at any angle using the draw command or other command. Like with a line you use sta...
by troyd1
2007-09-26T13:54:18-07:00
Forum: Users
Topic: verticle text
Replies: 7
Views: 14885

Re: verticle text

I kind of want to do the lower left one with the text going up. What I am doing is building a percentage scale. The example was only that. I want to create a image that is 40 pixels high by 400 pixels wide. I am going to append this scale to the top of another image of the same size. I want to draw ...
by troyd1
2007-09-26T09:14:13-07:00
Forum: Users
Topic: verticle text
Replies: 7
Views: 14885

verticle text

I have been trying all morning to create a scale. I am having trouble getting the verticle text to work correctly. Here is my command: convert -size 400x400 xc:white -fill black -draw "line 10,10 50,10" -draw "rotate -90 text 25,25 'text'" test.jpg Any help on this would be great...
by troyd1
2007-09-20T11:21:57-07:00
Forum: Users
Topic: Crop file larger than orginal because image was changed
Replies: 3
Views: 8163

Re: Crop file larger than orginal because image was changed

Worked like a charm. Thanks!
by troyd1
2007-09-20T09:51:54-07:00
Forum: Users
Topic: Crop file larger than orginal because image was changed
Replies: 3
Views: 8163

Crop file larger than orginal because image was changed

I have an 8 bit png image that is 1838x1238. I did the following: convert orig.png -crop 1800x1200+19+19 +repage crop.png I also did: convert orig.png -shave 19x19 shave.png both resulting images are identical I believe, but the orig.png was an 8 bit image, and the new images are a 16 bit images. I ...
by troyd1
2007-08-10T08:04:53-07:00
Forum: Users
Topic: .fon font files don't seem to work.
Replies: 2
Views: 7143

.fon font files don't seem to work.

I have been trying to understand the font usage. If th font file is a ttf, it works fine referencing the file, but if the file is a .fon file, it does not work. Should this work? I am on a windows system.

Thanks, Troy
by troyd1
2007-08-01T11:43:27-07:00
Forum: Users
Topic: freetype install help
Replies: 1
Views: 5020

freetype install help

I posted an earlier question that may have gotten a little convoluted as I have not gotten any replies. I installed freetype, and reinistalled IM, but I still cannot render ghostscript fonts. I still get this or a similar error: convert: unable to read font `n019024l.pfb' convert: missing an image f...
by troyd1
2007-07-30T14:56:59-07:00
Forum: Users
Topic: Font problems
Replies: 1
Views: 5261

Font problems

When I do a simple: convert -font "arial" -pointsize 24 label:"this is some text" new.jpg it works. If I change the font to Helvetica-BoldOblique, I get the error: convert: unable to read font `n019024l.pfb' convert: missing an image filename new.jpg When I do convert -list type,...
by troyd1
2007-07-30T10:31:09-07:00
Forum: Users
Topic: What color codes work with what?
Replies: 6
Views: 14368

Re: What color codes work with what?

I know what the problem is now. It was my fault. Thanks for the help!
by troyd1
2007-07-30T08:25:32-07:00
Forum: Users
Topic: What color codes work with what?
Replies: 6
Views: 14368

Re: What color codes work with what?

here is am example: convert -font arial -pointsize 24 -gravity center -fill "BLUE" -background none label:"TEXTINFO" -trim ( +clone -background "#dddddd50" -shadow 100x4+0+0 -channel A -evaluate multiply +channel ) +swap +repage -gravity center -composite +geometry &quo...
by troyd1
2007-07-29T19:13:51-07:00
Forum: Users
Topic: What color codes work with what?
Replies: 6
Views: 14368

Re: What color codes work with what?

Thanks, that helps for the a options. Any idea why I am getting the error on the wash example when using the #(hex colors)? Also, even using the rbga, I am still not getting any transparency when doing the wash/shadow example. Is this just because of the functionality?
by troyd1
2007-07-29T17:33:54-07:00
Forum: Users
Topic: What color codes work with what?
Replies: 6
Views: 14368

What color codes work with what?

I have been trying to do some backgrounds. I seems sometimes it works to use the color names, sometimes using hex values, sometimes rgb, sometimes cmyk. I have been trying to do some transparency and have had some mixed results. Please comment on these things I have tried and the results. convert -p...