鸟舍(adobe creative SDK)无法使用角度2

时间:2016-09-10 14:52:52

标签: angular aviary adobecreativesdk

我用角度2创建了简单的应用: http://plnkr.co/edit/OfjI0jCaZF5kHE45V4ur?p=preview

...
declare var Aviary: any;
...
this.featherEditor=new Aviary.Feather({
...

这工作正常。 但是当照片出现时,照片总是在编辑器中垂直翻转。我该怎么办?

2 个答案:

答案 0 :(得分:2)

您可以使用ng2-photo-editor完全自定义的angular2照片编辑器,您可以在几分钟内集成到HTML5应用程序中。

  1. npm install --save ng2-photo-editor
  2. 从' ng2-photo-editor';
  3. 导入{PhotoEditorComponent}

答案 1 :(得分:0)

尝试将以下属性添加到Aviary.Feather()配置对象:

var editor = new Aviary.Feather({
    // ...
    disableWebGL: true
});

翻转可能是由于与Windows上的Web GL支持相关的突出问题。