Google Apps脚本:如何复制文本并保留格式?

时间:2015-07-18 21:21:34

标签: google-apps-script string-formatting children deep-copy inline-images

考虑接下来3行所代表的文件。

..一些文字..
6 7 8 9 10 11
..一些文字..

想象一下,所有数字都是各自的字体大小(即10是字体大小10)。现在我想在8到9之间的空格中插入内嵌图像,并删除该空格,但不要破坏未受影响的文本的格式(本例中的大小)。结果将是

..一些文字..
6 7 8 <some image here> 9 10 11
..一些文字..

然而,当我尝试

function placeImage() {
  var s = DocumentApp.getActiveDocument().getBody();

  //Find in Document
  var found = s.findText("8");
  if(found==null)
    return 0; 
  var foundLocation = found.getStartOffset(); //position of image insertion

  //Get all the needed variables
  var textAsElement = found.getElement(); 
  var text = textAsElement.getText();
  var paragraph = textAsElement.getParent();
  var childIndex = paragraph.getChildIndex(textAsElement);  //gets index of found text in paragraph

  //Problem part - when removing the space, destroys all formatting
  var textRemaining = text.substring(foundLocation + 2);
  textAsElement.deleteText(foundLocation, text.length-1);
  if(textRemaining != "")
      paragraph.insertText(childIndex+1, textRemaining);//destroys formatting for the rest of the child index

  //Insert image
  var imgSource = UrlFetchApp.fetch("https://upload.wikimedia.org/wikipedia/commons/thumb/1/1f/Red_information_icon_with_gradient_background.svg/48px-Red_information_icon_with_gradient_background.svg.png");
  var ingBlob = imgSource.getBlob();
  paragraph.getChild(childIndex+1).insertInlineImage(foundLocation, ingBlob);
}

问题是当我删除空格并在段落中创建另一个子元素以插入图像时,子字符串也会删除剩余的文本格式。我已经尝试过查看copy(),但我不确定它是如何有效工作的。

我已经研究了很多其他地方,答案here都没有保留格式,并且position.insertInlineImage()似乎已被破坏,正如here所述。

1 个答案:

答案 0 :(得分:1)

它基本上取决于文档的内容如何用段落设置。尝试使用文档中的简单内容并插入图像。

它正好插入图像,也没有改变文本其余部分的格式。

检查以下代码:

function placeImage()
 {
 var s = DocumentApp.getActiveDocument().getBody();
 var number = '8'
 //Find in Document
 var found = s.findText(number);
 if(found==null)
   return 0; 
 var foundLocation = found.getStartOffset(); //position of image insertion

 //Get all the needed variables
 var textAsElement = found.getElement(); 
 var text = textAsElement.asText().copy();// getText();
 textAsElement.editAsText().deleteText(foundLocation + number.length  ,textAsElement.asText().getText().length -1)

text.asText().editAsText().deleteText(0, foundLocation + 1 );
 //Insert image
 var imgSource = UrlFetchApp.fetch('https://upload.wikimedia.org/wikipedia/commons/thumb/1/1f/Red_information_icon_with_gradient_background.svg/48px-Red_information_icon_with_gradient_background.svg.png');
 var ingBlob = imgSource.getBlob();

 var children =DocumentApp.getActiveDocument().getBody().getChild(0).asParagraph().appendInlineImage(ingBlob);

 DocumentApp.getActiveDocument().getBody().getChild(0).asParagraph().appendText(text);

 var child = DocumentApp.getActiveDocument().getBody().getNumChildren();


}

测试的文档内容是:

6 7 8 9 10 11

(文字的大小与你提到的相似。'8'是8号,依此类推)

您必须根据文档内容使用试错法进行测试。

希望有所帮助!