WpfDrawingSettings PixelWidth PixelHeight Have no effect #258
Replies: 3 comments
|
Currently, we do not transform the |
I want to make sure if changing the size of DrawingImage can reduce the memory usage? var setting = new WpfDrawingSettings() { IncludeRuntime = true, TextAsGeometry = true,EnsureViewboxSize = false};
using (FileSvgReader converter = new FileSvgReader(setting))
{
var drawGroup = converter.Read(net.Stream);
drawGroup.Transform = new ScaleTransform(0.1, 0.1);
var draw = new DrawingImage(drawGroup);
draw.Freeze();
return draw;
} |
I am not sure it will. |
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
The DrawingImage generated is not width = 100 height = 100. The DrawingImage is still the original size of the vector image. Is there any problem with my setting?
All reactions