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 ) ...@@ -561,6 +561,11 @@ void DrawingML::WriteBlipMode( Reference< XPropertySet > rXPropSet )
case BitmapMode_REPEAT: case BitmapMode_REPEAT:
mpFS->singleElementNS( XML_a, XML_tile, FSEND ); mpFS->singleElementNS( XML_a, XML_tile, FSEND );
break; 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: 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