Commit 46ea1a09 authored by konovalovsergey's avatar konovalovsergey Committed by Alexander.Trofimov

EffectExtent for inline shapes

parent c8634537
......@@ -4245,6 +4245,12 @@ function BinaryDocumentTableWriter(memory, doc, oMapCommentId, oNumIdMap, copyPa
this.memory.WriteByte(c_oSerImageType2.Extent);
this.memory.WriteByte(c_oSerPropLenType.Variable);
this.bs.WriteItemWithLength(function(){oThis.WriteExtent(img.Extent);});
if(img.EffectExtent)
{
this.memory.WriteByte(c_oSerImageType2.EffectExtent);
this.memory.WriteByte(c_oSerPropLenType.Variable);
this.bs.WriteItemWithLength(function(){oThis.WriteEffectExtent(img.EffectExtent);});
}
if(null != img.GraphicObj.chart)
{
this.memory.WriteByte(c_oSerImageType2.Chart2);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment