Kaydet (Commit) e481740c authored tarafından Muthu Subramanian's avatar Muthu Subramanian

n#793999: PPTX Export - background image fit to slide.

üst 8d7f13d2
......@@ -561,6 +561,11 @@ void DrawingML::WriteBlipMode( Reference< XPropertySet > rXPropSet )
case BitmapMode_REPEAT:
mpFS->singleElementNS( XML_a, XML_tile, FSEND );
break;
case BitmapMode_STRETCH:
mpFS->startElementNS( XML_a, XML_stretch, FSEND );
mpFS->singleElementNS( XML_a, XML_fillRect, FSEND );
mpFS->endElementNS( XML_a, XML_stretch );
break;
default:
;
}
......
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