1
當我在電子表格中插入圖像,然後將其轉換爲pdf時,我遇到了應用程序腳本的問題。該圖像未出現在文檔pdf中。電子表格和應用程序腳本中的圖像問題
我的代碼是:
此處插入圖片
libro=SpreadsheetApp.openById('XXXXXXXXXXXXXXXXX');
hojaX=Libro.getSheetByName('Test');
hojax.insertImage("http://test.com/imagen.jpg", 3, 71, 0, 0);
這裏轉換電子表格PDF
var file = DriveApp.getFileById('XXXXXXXXXXXXXXXXX').getAs('application/pdf').getBytes();
這裏附加到電子郵件發送
var attach = {fileName:'name.pdf',content:file, mimeType:'application/pdf'};
MailApp.sendEmail([email protected], "title", "message" {attachments:[attach]});
我無法修復,PD f發送沒有圖像,你能幫助我嗎? 關於
該腳本不完整。請結帳[mcve]。 –