Replies: 1 comment 4 replies
-
I suspect that there was probably a good reason to do it like this years ago. But I do think it makes sense to make this more consistent. So feel free to create a PR to change this. |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Looking at ctor of MagicSettings:
Magick.NET/src/Magick.NET/Settings/MagickSettings.cs
Lines 31 to 51 in 5676471
font
&fontPointSize
are set on the backing property ; but getter&setter use the Drawing object.So, if the default value of
Drawing.Font
andDrawing.FontPointsize
(defined fromNativeDrawingSettings
) are not the same has default ofNativeMagickSettings
, it could be an issue.Setting the Drawing property first, then using Font&FontPointsize should be "safer", no?
Beta Was this translation helpful? Give feedback.
All reactions