ShareX/ShareX.ImageEffectsLib/Manipulations/Canvas.cs

60 lines
1.9 KiB
C#
Raw Normal View History

2013-11-03 23:53:49 +13:00
#region License Information (GPL v3)
/*
ShareX - A program that allows you to take screenshots and share any file type
2020-02-05 20:19:48 +13:00
Copyright (c) 2007-2020 ShareX Team
2013-11-03 23:53:49 +13:00
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
Optionally you can also view the license at <http://www.gnu.org/licenses/>.
*/
#endregion License Information (GPL v3)
2014-12-11 09:25:20 +13:00
using ShareX.HelpersLib;
2013-11-03 23:53:49 +13:00
using System.ComponentModel;
using System.Drawing;
using System.Drawing.Design;
2013-11-12 15:42:10 +13:00
using System.Windows.Forms;
2013-11-03 23:53:49 +13:00
2014-12-11 09:25:20 +13:00
namespace ShareX.ImageEffectsLib
2013-11-03 23:53:49 +13:00
{
internal class Canvas : ImageEffect
{
2013-11-12 15:42:10 +13:00
[DefaultValue(typeof(Padding), "0, 0, 0, 0")]
2017-10-22 09:43:39 +13:00
public Padding Margin { get; set; }
2013-11-03 23:53:49 +13:00
[DefaultValue(typeof(Color), "Transparent"), Editor(typeof(MyColorEditor), typeof(UITypeEditor)), TypeConverter(typeof(MyColorConverter))]
public Color Color { get; set; }
2013-11-03 23:53:49 +13:00
public Canvas()
{
this.ApplyDefaultPropertyValues();
}
public override Bitmap Apply(Bitmap bmp)
2013-11-03 23:53:49 +13:00
{
Bitmap bmpResult = ImageHelpers.AddCanvas(bmp, Margin, Color);
2017-10-22 09:43:39 +13:00
if (bmpResult == null)
2017-10-22 09:43:39 +13:00
{
return bmp;
2017-10-22 09:43:39 +13:00
}
2013-11-03 23:53:49 +13:00
bmp.Dispose();
return bmpResult;
2013-11-03 23:53:49 +13:00
}
}
}