Modifying a drawing using Google Apps Script

前端 未结 3 1500
醉酒成梦
醉酒成梦 2021-01-02 18:43

Has anyone found support for creating or changing a drawing using Google Apps Script? I\'ve looked through the Google documentation, but I don\'t see any classes for drawing

相关标签:
3条回答
  • 2021-01-02 19:24

    It's not possible to do anything related to Google Drawings, embedded on files or not, up until today. The closest thing you have is ability to insert images (via urls), which you can do on spreadsheets and UIs.

    You can always ask for this enhancement at the Apps Script issue tracker: http://code.google.com/p/google-apps-script-issues/issues/list

    0 讨论(0)
  • 2021-01-02 19:26

    modifying seldom includes a deletion too...

    var drawingRange = body.findElement(DocumentApp.ElementType.INLINE_DRAWING);
               while (drawingRange != null) {
                   var element = drawingRange.getElement();
                   var drawingElement = element.asInlineDrawing();
                   drawingElement.removeFromParent();
                   drawingRange = body.findElement(DocumentApp.ElementType.INLINE_DRAWING);
               }
    
    0 讨论(0)
  • 2021-01-02 19:42

    I got an answer on a related question that is good enough to use as a workaround for this question. You may not be able to modify a Google Drawing directly through code, but you can generate a Windows Metafile image and then upload that to a Google Drawing as described on the Google Docs blog.

    Until my feature request is completed, this will have to do.

    Update

    You can now create drawings through the Google Slides API. If you want that in a Google Drawing, Doc, or Sheet, you can copy it there.

    0 讨论(0)
提交回复
热议问题