我使用Caman.js和 hava
<canvas>
我页面上的元素。
如何使用 Caman.js 旋转此画布?
我找到了这个,但我不知道如何应用它。
用这个:
Caman("#canvasId", function () {
this.rotate(90);
this.render();
});
Rotate is a Plugin.
You have to compile Caman.js with the plugin since its all written in coffeescript.
The plugins you will find here: https://github.com/meltingice/CamanJS-Plugins
For how to include them have a look at the cakefile
After that is done it will work as stephan1001 wrote.
为了更详细地概述如何获取包含在 Camanjs 中的旋转插件(和其他 Camanjs 插件),我按照以下步骤操作:
现在您将插件包含在您的 caman 插件中。
注意:我确信有更好的方法可以做到这一点,但是,这对我有用,我找不到任何其他信息来概述这些步骤。