https://bugs.documentfoundation.org/show_bug.cgi?id=51510
--- Comment #33 from Regina Henschel <[email protected]> --- The export uses ShapeExport::WriteGraphicObjectShapePart() in oox/source/export/shape.cxx. That calls DrawingML::WriteXGraphicBlip() in oox/source/export/drawingml.cxx That calls DrawingML::WriteImage() That calls GraphicExport::writeToStorage() Inside that method is a switch over aLink.GetType(). In case of an SVG-image GetType() returns GfxLinkType::NativeSvg. But the switch has no case for that. Therefore default: is executed. The default case determines rGraphic.GetType() which is in this case GraphicType::Bitmap. I don't know, why it is that type and could not find the place were it was set. I'm no expert and have found the above with Visual Studio. Nevertheless it might give you a starting point. My try would be to add a case for SVG. -- You are receiving this mail because: You are the assignee for the bug.
