|
ps_rotate(PECL ps >= 1.1.0) ps_rotate — Sets rotation factor Описание
bool ps_rotate
( resource $psdoc
, float $rot
)
Sets the rotation of the coordinate system. Список параметров
Возвращаемые значенияВозвращает TRUE в случае успешного завершения или FALSE в случае возникновения ошибки. Примеры
Пример #1 Rotation of the coordinate system
<?php The above example illustrates a very common way of rotating a graphic (in this case just a rectangle) by simply rotating the coordinate system. Since the graphic's coordinate system assumes (0,0) to be the origin, the page coordinate system is also translated to place the graphics not on the edge of the page. Pay attention to the order of ps_translate() and ps_rotate(). In the above case the rectancle is rotated around the point (100, 100) in the untranslated coordinate system. Switching the two statements has a completely different result. In order to output the following text at the original position, all modifications of the coordinate system are encapsulated in ps_save() and ps_restore(). |
|