downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | conferences | my php.net

search for in the

ImagickDraw::setStrokeAlpha> <ImagickDraw::setFontWeight
[edit] Last updated: Fri, 17 May 2013

view this page in

ImagickDraw::setGravity

(PECL imagick 2.0.0)

ImagickDraw::setGravityEstablece la gravedad de ubicación del texto

Descripción

bool ImagickDraw::setGravity ( int $gravity )
Advertencia

Esta función no está documentada actualmente, solamente se encuentra disponible la lista de parámetros.

Establece la gravedad de ubicación del texto para usarla cuando se escribe texto.

Parámetros

gravity

constante GRAVITY_

Valores devueltos

No devuelve ningún valor.



add a note add a note User Contributed Notes ImagickDraw::setGravity - [1 notes]
up
0
alan at ridersite dot org
5 years ago
Gravity constants are very useful as they can save having to calculate the placement of variable text strings and font sizes.

For example:
$draw->setGravity (Imagick::GRAVITY_CENTER);
$image->annotateImage($draw, 0, 0, 0, 'The quick brown fox jumps over the lazy dog');

Will horizontally and vertically center the text string.

Note, there are several gravity constants available. See, Constants — Imagick class constants

 
show source | credits | stats | sitemap | contact | advertising | mirror sites