Search found 5 matches

by deadpickle
2015-08-06T21:17:23-07:00
Forum: IMagick
Topic: Caption not Filling Textbox
Replies: 1
Views: 7170

Re: Caption not Filling Textbox

I tried to find the minimal amount of characters that are allowed before the text does not fill the vertical extent. $description = "Casting Time: 1 action\nRange: 30 feet\nComponents: V, S, M\nDuration: Concentration up to 1 minute\n(a drop of blood) Up to three creatures of your choice that y...
by deadpickle
2015-08-05T21:14:12-07:00
Forum: IMagick
Topic: Caption not Filling Textbox
Replies: 1
Views: 7170

Caption not Filling Textbox

In this example, the entire text should fill, or try to fill, the entire textbox. For some reason it is smaller instead. Not sure why but for other text thats longer it overflows the text box. any help is greatly appreciated. Using version 6.8.9-9 <?php $tempdir = "/home/jlahowetz2/DnD/DnD5/car...
by deadpickle
2013-09-16T11:05:40-07:00
Forum: Users
Topic: Draw Polygon not positioned at top right
Replies: 5
Views: 6123

Re: Draw Polygon not positioned at top right

Image

not much change. Coordinate call for the point to be of type double and the call to draw is one line, so I dont think that is the issue since the method used is the same as the examples.
by deadpickle
2013-09-16T06:11:00-07:00
Forum: Users
Topic: Draw Polygon not positioned at top right
Replies: 5
Views: 6123

Re: Draw Polygon not positioned at top right

I hardcoded the same box: vorCoords.push_back(Coordinate(64.0,48.0)); vorCoords.push_back(Coordinate(576.0,48.0)); vorCoords.push_back(Coordinate(576.0,432.0)); vorCoords.push_back(Coordinate(64.0,432.0)); vorCoords.push_back(Coordinate(64.0,48.0)); and got the same results. Which I guess does not m...
by deadpickle
2013-09-15T21:34:02-07:00
Forum: Users
Topic: Draw Polygon not positioned at top right
Replies: 5
Views: 6123

Draw Polygon not positioned at top right

I am using Magick++ 6.7.7 Q16 to try and draw a ploygon on an image. Here is the code (it is a function of a larger program): void DoublyConnectedEdgeList::MakeImage() { extern const double BOUNDBOX[4]; extern const int XPIXELS; extern const int YPIXELS; int gridWidthX; int gridWidthY; Image voronoi...