Aspose::Pdf::Matrix::Transform method

Matrix::Transform(double, double, double&, double&) method

Transforms coordinates using this matrix.

void Aspose::Pdf::Matrix::Transform(double x, double y, double &x1, double &y1)
ParameterTypeDescription
xdoubleX coordinate.
ydoubleY coordinate.
x1double&Transformed X coordinate.
y1double&Transformed Y coordinate.

See Also

Matrix::Transform(System::SharedPtr<Aspose::Pdf::Rectangle>) method

Transformes rectangle. If angle is not 90 * N degrees then bounding rectangle is returned.

System::SharedPtr<Aspose::Pdf::Rectangle> Aspose::Pdf::Matrix::Transform(System::SharedPtr<Aspose::Pdf::Rectangle> rect)
ParameterTypeDescription
rectSystem::SharedPtr<Aspose::Pdf::Rectangle>Rectangle to be transformed.

ReturnValue

Transformed rectangle.

See Also

Matrix::Transform(System::SharedPtr<Point>) method

Transforms point using this matrix.

System::SharedPtr<Point> Aspose::Pdf::Matrix::Transform(System::SharedPtr<Point> p)
ParameterTypeDescription
pSystem::SharedPtr<Point>Point which will be transformed.

ReturnValue

Transformation result.

See Also