Pman.Gnumeric.js
[Pman.Core] / Pman.Gnumeric.js
index e881e6c..d8cd0b4 100644 (file)
@@ -1248,7 +1248,7 @@ Roo.extend(Pman.Gnumeric, Roo.util.Observable, {
      * writeFixedImageOld:
      * write an image in old gnumberic format (needs base64 data to write it)
      */
-    writeFixedImageOld : function (startCol, startRow, endCol, endRow, type, data, width, height) 
+    writeFixedImageOld : function (startCol, startRow, endCol, endRow, type, data, width, height, size
     {
         if (!data) {
             throw "write Image called with missing data";
@@ -1274,25 +1274,13 @@ Roo.extend(Pman.Gnumeric, Roo.util.Observable, {
         soi.setAttribute('crop-left','0.000000');
         soi.setAttribute('crop-right','0.000000');
         
-        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);
+        content.setAttribute('size-bytes', size);
+        content.textContent = data;
         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);
-        
         if (typeof(this.grid[startRow]) == 'undefined') {
             this.grid[startRow] = [];
         }