Search found 4 matches

by ttmt
2011-10-26T10:37:21-07:00
Forum: Users
Topic: Increase font quality at small sizes ?
Replies: 5
Views: 12544

Re: Increase font quality at small sizes ?

If I type 'convert -list format' I get a long list with

TTF* TTF r-- TrueType font (Freetype 2.4.7)

so I assume I have FreeType support

How would I supersample, render at a 40 point size then resize the image by 50%

Regards

ttmt
by ttmt
2011-10-26T09:08:31-07:00
Forum: Users
Topic: Increase font quality at small sizes ?
Replies: 5
Views: 12544

Increase font quality at small sizes ?

Hi all

I'm using this simple script to create images of text in a set font and at a set size.


<?php

header('Content-Type: image/png');

$text = 'Testing HHAVAHH';

$output_image = new Imagick();
$output_image->newImage(600, 200, '#dddddd');
$output_image->setImageFormat("png");

$text ...
by ttmt
2011-10-26T07:25:45-07:00
Forum: Users
Topic: I think ImageMagick is installed, but can't get any response
Replies: 3
Views: 7028

Re: I think ImageMagick is installed, but can't get any resp

Thanks Bonzo, thats done it.

I keep making the same mistake - it's an image and I'm trying to put html in it.
by ttmt
2011-10-26T06:50:41-07:00
Forum: Users
Topic: I think ImageMagick is installed, but can't get any response
Replies: 3
Views: 7028

I think ImageMagick is installed, but can't get any response

Hi all

After days of trying I think I finally have ImageMagick and Imagick installed.

Im using MAMP 2 with PHP 5.3.6 on Mac OSX Lion.

If I test with phpInfo() I can see the Imagick.

http://www.ttmt.org.uk/test/phpinfo.png

If I try and test Imagick I don't get any response. I'm using this ...