Edited default mode ShapeRendering for metafile to svg conversion

This commit is contained in:
Green
2025-02-06 13:41:28 +03:00
parent beb8574dfd
commit b7d3464609
2 changed files with 2 additions and 2 deletions

View File

@ -763,7 +763,7 @@ namespace MetaFile
if (InterpretatorType::Svg == oInterpretatorType)
{
CEmfInterpretatorSvg *pEmfInterpretatorSvg = new CEmfInterpretatorSvg(this, dWidth, dHeight);
pEmfInterpretatorSvg->SetShapeRendering(EShapeRendering::CrispEdges);
pEmfInterpretatorSvg->SetShapeRendering(EShapeRendering::OptimizeSpeed);
m_pInterpretator = pEmfInterpretatorSvg;
}
}

View File

@ -196,7 +196,7 @@ namespace MetaFile
if (InterpretatorType::Svg == oInterpretatorType)
{
CWmfInterpretatorSvg *pWmfInterpretatorSvg = new CWmfInterpretatorSvg(this, unWidth, unHeight);
pWmfInterpretatorSvg->SetShapeRendering(EShapeRendering::CrispEdges);
pWmfInterpretatorSvg->SetShapeRendering(EShapeRendering::OptimizeSpeed);
m_pInterpretator = pWmfInterpretatorSvg;
}
}