We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 51c6467 commit 81ea601Copy full SHA for 81ea601
src/Magick.NET/Native/Drawables/DrawingWand.cs
@@ -569,7 +569,7 @@ protected override void Dispose(IntPtr instance)
569
NativeMethods.X86.DrawingWand_Dispose(instance);
570
#endif
571
}
572
- public NativeDrawingWand(IMagickImage? image, DrawingSettings? settings)
+ public NativeDrawingWand(IMagickImage image, DrawingSettings settings)
573
{
574
using var settingsNative = DrawingSettings.CreateInstance(settings);
575
#if PLATFORM_AnyCPU
src/Magick.NET/Native/Drawables/DrawingWand.json
@@ -4,11 +4,11 @@
4
"arguments": [
5
6
"name": "image",
7
- "type": "MagickImage?"
+ "type": "MagickImage"
8
},
9
10
"name": "settings",
11
- "type": "DrawingSettings?"
+ "type": "DrawingSettings"
12
13
]
14
0 commit comments