From be0886032ecbf4077acc4f5cfa91b092bf8d4bff Mon Sep 17 00:00:00 2001 From: edward Date: Wed, 6 Sep 2017 13:28:17 +0800 Subject: [PATCH] Pman.Gnumeric.js --- Pman.Gnumeric.js | 30 ------------------------------ 1 file changed, 30 deletions(-) diff --git a/Pman.Gnumeric.js b/Pman.Gnumeric.js index bd6c7c5a..b79395cf 100644 --- a/Pman.Gnumeric.js +++ b/Pman.Gnumeric.js @@ -1241,36 +1241,6 @@ Roo.extend(Pman.Gnumeric, Roo.util.Observable, { throw "write Image called with missing data"; } - startCol = startCol * 1; - startRow = startRow * 1; - endCol = endCol * 1; - endRow = endRow * 1; - width = width * 1; - height = height * 1; - - var objs = this.sheet.getElementsByTagNameNS('*','Objects')[0]; - var soi = this.doc.createElementNS('http://www.gnumeric.org/v10.dtd', 'gnm:SheetObjectImage'); - - soi.setAttribute('ObjectBound',this.RCtoCell(startRow, startCol) + ':' + this.RCtoCell(endRow, endCol)); - - var name = 'Image' + Math.random().toString(36).substring(2); - var content = this.doc.createElement('Content'); - content.setAttribute('image-type', type ? type : 'jpeg'); - content.setAttribute('name', name); - soi.appendChild(content); - objs.appendChild(soi); - - var godoc = this.doc.getElementsByTagNameNS('*','GODoc')[0]; - - var goimage = this.doc.createElement('GOImage'); - goimage.setAttribute('image-type', type ? type : 'jpeg'); - goimage.setAttribute('name', name); - goimage.setAttribute('type', 'GOPixbuf'); - goimage.setAttribute('width', width); - goimage.setAttribute('height', height); - goimage.textContent = data; - - godoc.appendChild(goimage); return true; //< /gnm:SheetObjectImage> -- 2.39.2