mirror of
https://github.com/greenshot/greenshot
synced 2025-08-14 02:37:03 -07:00
Added monochrome effect and placeholders in the PrinterDestination, so Jens can fill in the blanks... :)
git-svn-id: http://svn.code.sf.net/p/greenshot/code/trunk@2467 7dccd23d-a4a3-4e1f-8c07-b4c1b4018ab4
This commit is contained in:
parent
b692674f38
commit
360c4d45c7
2 changed files with 43 additions and 4 deletions
|
@ -101,6 +101,16 @@ namespace Greenshot.Core {
|
|||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// MonochromeEffect
|
||||
/// </summary>
|
||||
public class MonochromeEffect : IEffect {
|
||||
public Image Apply(Image sourceImage, out Point offsetChange) {
|
||||
offsetChange = Point.Empty;
|
||||
return ImageHelper.CreateMonochrome(sourceImage);
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// InvertEffect
|
||||
/// </summary>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue