ShareX/ShareX.MediaLib/Forms/ImageCombinerForm.cs

229 lines
6.9 KiB
C#
Raw Normal View History

2015-10-01 01:44:19 +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
2015-10-01 01:44:19 +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)
using ShareX.HelpersLib;
using System;
using System.Collections.Generic;
using System.Drawing;
using System.IO;
2015-10-01 01:44:19 +13:00
using System.Windows.Forms;
2017-07-10 09:50:10 +12:00
namespace ShareX.MediaLib
2015-10-01 01:44:19 +13:00
{
public partial class ImageCombinerForm : Form
2015-10-01 01:44:19 +13:00
{
2020-03-24 08:33:26 +13:00
public event Action<Bitmap> ProcessRequested;
2015-10-01 02:35:45 +13:00
2015-10-01 01:44:19 +13:00
public ImageCombinerOptions Options { get; private set; }
public ImageCombinerForm(ImageCombinerOptions options)
{
Options = options;
2015-10-01 01:44:19 +13:00
InitializeComponent();
2019-06-25 06:36:16 +12:00
ShareXResources.ApplyTheme(this);
2015-10-01 02:35:45 +13:00
cbOrientation.Items.AddRange(Enum.GetNames(typeof(Orientation)));
cbOrientation.SelectedIndex = (int)Options.Orientation;
UpdateAlignmentComboBox();
nudSpace.SetValue(Options.Space);
2015-10-01 01:44:19 +13:00
}
private void UpdateAlignmentComboBox()
{
cbAlignment.Items.Clear();
// TODO: Translate
if (Options.Orientation == Orientation.Horizontal)
{
cbAlignment.Items.Add("Top");
cbAlignment.Items.Add("Center");
cbAlignment.Items.Add("Bottom");
}
else
{
cbAlignment.Items.Add("Left");
cbAlignment.Items.Add("Center");
cbAlignment.Items.Add("Right");
}
cbAlignment.SelectedIndex = (int)Options.Alignment;
}
public ImageCombinerForm(ImageCombinerOptions options, IEnumerable<string> imageFiles) : this(options)
{
if (imageFiles != null)
{
foreach (string image in imageFiles)
{
lvImages.Items.Add(image);
}
}
}
2015-10-01 01:44:19 +13:00
private void btnAdd_Click(object sender, EventArgs e)
{
2015-10-01 02:35:45 +13:00
string[] images = ImageHelpers.OpenImageFileDialog(true);
if (images != null)
{
foreach (string image in images)
{
lvImages.Items.Add(image);
}
}
2015-10-01 01:44:19 +13:00
}
private void btnRemove_Click(object sender, EventArgs e)
{
2015-10-01 02:35:45 +13:00
if (lvImages.SelectedItems.Count > 0)
{
foreach (ListViewItem lvi in lvImages.SelectedItems)
{
lvImages.Items.Remove(lvi);
}
}
2015-10-01 01:44:19 +13:00
}
private void btnMoveUp_Click(object sender, EventArgs e)
{
2015-10-01 02:35:45 +13:00
if (lvImages.SelectedItems.Count > 0)
{
lvImages.SelectedItems[0].MoveUp();
}
2015-10-01 01:44:19 +13:00
}
private void btnMoveDown_Click(object sender, EventArgs e)
{
2015-10-01 02:35:45 +13:00
if (lvImages.SelectedItems.Count > 0)
{
lvImages.SelectedItems[0].MoveDown();
}
}
private void cbOrientation_SelectedIndexChanged(object sender, EventArgs e)
{
Options.Orientation = (Orientation)cbOrientation.SelectedIndex;
UpdateAlignmentComboBox();
}
private void cbAlignment_SelectedIndexChanged(object sender, EventArgs e)
{
Options.Alignment = (ImageCombinerAlignment)cbAlignment.SelectedIndex;
2015-10-01 02:35:45 +13:00
}
private void nudSpace_ValueChanged(object sender, EventArgs e)
{
Options.Space = (int)nudSpace.Value;
2015-10-01 01:44:19 +13:00
}
private void btnCombine_Click(object sender, EventArgs e)
{
2015-10-01 02:35:45 +13:00
if (lvImages.Items.Count > 0)
{
List<Bitmap> images = new List<Bitmap>();
2015-10-01 02:35:45 +13:00
try
{
foreach (ListViewItem lvi in lvImages.Items)
{
string filePath = lvi.Text;
if (File.Exists(filePath))
{
Bitmap bmp = ImageHelpers.LoadImage(filePath);
if (bmp != null)
{
images.Add(bmp);
}
}
}
if (images.Count > 1)
{
Bitmap output = ImageHelpers.CombineImages(images, Options.Orientation, Options.Alignment, Options.Space);
OnProcessRequested(output);
}
2015-10-01 02:35:45 +13:00
}
catch (Exception ex)
{
DebugHelper.WriteException(ex);
2017-04-22 08:42:52 +12:00
ex.ShowError();
2015-10-01 02:35:45 +13:00
}
finally
{
if (images != null)
{
foreach (Bitmap image in images)
2015-10-01 02:35:45 +13:00
{
if (image != null)
{
image.Dispose();
}
}
}
}
}
}
2020-03-24 08:33:26 +13:00
protected void OnProcessRequested(Bitmap bmp)
2015-10-01 02:35:45 +13:00
{
if (ProcessRequested != null)
{
2020-03-24 08:33:26 +13:00
ProcessRequested(bmp);
2015-10-01 02:35:45 +13:00
}
2015-10-01 01:44:19 +13:00
}
private void ImageCombinerForm_DragEnter(object sender, DragEventArgs e)
{
if (e.Data.GetDataPresent(DataFormats.FileDrop, false))
{
e.Effect = DragDropEffects.Copy;
}
else
{
e.Effect = DragDropEffects.None;
}
}
private void ImageCombinerForm_DragDrop(object sender, DragEventArgs e)
{
if (e.Data.GetDataPresent(DataFormats.FileDrop, false))
{
string[] files = e.Data.GetData(DataFormats.FileDrop, false) as string[];
if (files != null)
{
foreach (string file in files)
{
lvImages.Items.Add(file);
}
}
}
}
2015-10-01 01:44:19 +13:00
}
}