SWFDisplayItem->rotate()
(PHP 4 >= 4.0.5)
SWFDisplayItem->rotate() — Rotates in relative coordinates
Описание
SWFDisplayItem
void rotate
( float $angle
)
Внимание
Эта функция является ЭКСПЕРИМЕНТАЛЬНОЙ. Поведение этой функции, ее имя и относящаяся к ней документация могут измениться в последующих версиях PHP без уведомления. Используйте эту функцию на свой страх и риск.
swfdisplayitem->rotate() rotates the current object by angle degrees from its current rotation.
The object may be a swfshape(), a swfbutton(), a swftext() or a swfsprite() object. It must have been added using the swfmovie->add().
Возвращаемые значения
Эта функция не возвращает значения после выполнения.
- PHP Руководство
- Функции по категориям
- Индекс функций
- Справочник функций
- Генерация нетекстовых MIME форматов
- Ming (flash)
- Функция SWFDisplayItem::addAction() - Adds this SWFAction to the given SWFSprite instance
- Функция SWFDisplayItem::addColor() - Adds the given color to this item's color transform
- Функция SWFDisplayItem::endMask() - Another way of defining a MASK layer
- Функция SWFDisplayItem::getRot() - Описание
- Функция SWFDisplayItem::getX() - Описание
- Функция SWFDisplayItem::getXScale() - Описание
- Функция SWFDisplayItem::getXSkew() - Описание
- Функция SWFDisplayItem::getY() - Описание
- Функция SWFDisplayItem::getYScale() - Описание
- Функция SWFDisplayItem::getYSkew() - Описание
- Функция SWFDisplayItem::move() - Moves object in relative coordinates
- Функция SWFDisplayItem::moveTo() - Moves object in global coordinates
- Функция SWFDisplayItem::multColor() - Multiplies the item's color transform
- Функция SWFDisplayItem::remove() - Removes the object from the movie
- Функция SWFDisplayItem::rotate() - Rotates in relative coordinates
- Функция SWFDisplayItem::rotateTo() - Rotates the object in global coordinates
- Функция SWFDisplayItem::scale() - Scales the object in relative coordinates
- Функция SWFDisplayItem::scaleTo() - Scales the object in global coordinates
- Функция SWFDisplayItem::setDepth() - Sets z-order
- Функция SWFDisplayItem::setMaskLevel() - Defines a MASK layer at level
- Функция SWFDisplayItem::setMatrix() - Sets the item's transform matrix
- Функция SWFDisplayItem::setName() - Sets the object's name
- Функция SWFDisplayItem::setRatio() - Sets the object's ratio
- Функция SWFDisplayItem::skewX() - Sets the X-skew
- Функция SWFDisplayItem::skewXTo() - Sets the X-skew
- Функция SWFDisplayItem::skewY() - Sets the Y-skew
- Функция SWFDisplayItem::skewYTo() - Sets the Y-skew
Коментарии
if you are looking to place 'rotated text' (not animated)
create the text without a location
then add it to the movie
$di = $movie->add($my_text_object);
then move and rotate the result.
$di->moveto($x,$y);
$di->rotate(90);