I need to undergo some affinetransformation operation using gtk framework.
i found cairo but that does not solve my requirements. i need to crate transformation object and undergo some operations as under:
- [tranform1 translateXBy:2.5 yBy:3.8];
- [transform1 rotateByDegrees:23.0];
- [transform1 appendTransform:trans开发者_如何学JAVAform2];
where transform1, transform2 are objects of AffineTransformation.
Regards, iSight
This can be done by using PangoMatrix, the link is as under:
http://www.gtk.org/api/2.6/pango/pango-Glyph-Storage.html#PangoMatrix
精彩评论