Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/Magick.NET.Core/IMagickImage.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2311,6 +2311,7 @@ Interlace Interlace
/// <summary>
/// Oilpaint image (image looks like oil painting).
/// </summary>
/// <exception cref="MagickException">Thrown when an error is raised by ImageMagick.</exception>
void OilPaint();

/// <summary>
Expand Down
1 change: 1 addition & 0 deletions src/Magick.NET/MagickImage.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4335,6 +4335,7 @@ public void Normalize()
/// <summary>
/// Oilpaint image (image looks like oil painting).
/// </summary>
/// <exception cref="MagickException">Thrown when an error is raised by ImageMagick.</exception>
public void OilPaint()
=> OilPaint(3.0, 1.0);

Expand Down