ShareX/ShareX.HelpersLib/Helpers/ClipboardHelpers.cs

345 lines
11 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
2019-01-02 20:43:52 +13:00
Copyright (c) 2007-2019 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)
using System;
using System.Drawing;
using System.Drawing.Imaging;
using System.IO;
using System.Linq;
using System.Runtime.InteropServices;
2013-11-03 23:53:49 +13:00
using System.Text;
using System.Windows.Forms;
2014-12-11 09:25:20 +13:00
namespace ShareX.HelpersLib
2013-11-03 23:53:49 +13:00
{
public static class ClipboardHelpers
{
private const int RetryTimes = 20, RetryDelay = 100;
private const string FORMAT_PNG = "PNG";
private const string FORMAT_17 = "Format17";
2013-11-03 23:53:49 +13:00
private static readonly object ClipboardLock = new object();
private static bool CopyData(IDataObject data, bool copy = true)
{
if (data != null)
{
lock (ClipboardLock)
{
Clipboard.SetDataObject(data, copy, RetryTimes, RetryDelay);
}
return true;
}
return false;
}
public static bool Clear()
{
try
{
IDataObject data = new DataObject();
CopyData(data, false);
}
catch (Exception e)
{
DebugHelper.WriteException(e, "Clipboard clear failed.");
}
return false;
}
public static bool CopyText(string text)
{
if (!string.IsNullOrEmpty(text))
{
try
{
IDataObject data = new DataObject();
string dataFormat;
if (Environment.OSVersion.Platform != PlatformID.Win32NT || Environment.OSVersion.Version.Major < 5)
{
dataFormat = DataFormats.Text;
}
else
{
dataFormat = DataFormats.UnicodeText;
}
data.SetData(dataFormat, false, text);
return CopyData(data);
}
catch (Exception e)
{
DebugHelper.WriteException(e, "Clipboard copy text failed.");
}
}
return false;
}
public static bool CopyImage(Image img)
{
if (img != null)
{
try
{
if (HelpersOptions.DefaultCopyImageFillBackground)
{
return CopyImageDefaultFillBackground(img, Color.White);
}
return CopyImageDefault(img);
2013-11-03 23:53:49 +13:00
}
catch (Exception e)
{
DebugHelper.WriteException(e, "Clipboard copy image failed.");
}
}
return false;
}
private static bool CopyImageDefault(Image img)
2013-11-03 23:53:49 +13:00
{
2016-01-01 20:37:04 +13:00
IDataObject dataObject = new DataObject();
dataObject.SetData(DataFormats.Bitmap, true, img);
return CopyData(dataObject);
}
private static bool CopyImageDefaultFillBackground(Image img, Color background)
{
using (Bitmap bmp = img.CreateEmptyBitmap(PixelFormat.Format24bppRgb))
using (Graphics g = Graphics.FromImage(bmp))
2013-11-03 23:53:49 +13:00
{
g.Clear(background);
g.DrawImage(img, 0, 0, img.Width, img.Height);
2016-01-01 20:37:04 +13:00
IDataObject dataObject = new DataObject();
dataObject.SetData(DataFormats.Bitmap, true, bmp);
return CopyData(dataObject);
2013-11-03 23:53:49 +13:00
}
}
2013-11-03 23:53:49 +13:00
private static bool CopyImageAlternative(Image img)
{
using (MemoryStream msPNG = new MemoryStream())
2016-01-01 21:12:05 +13:00
using (MemoryStream msBMP = new MemoryStream())
using (MemoryStream msDIB = new MemoryStream())
2016-01-01 20:37:04 +13:00
{
2016-01-01 21:12:05 +13:00
IDataObject dataObject = new DataObject();
2016-01-01 20:37:04 +13:00
img.Save(msPNG, ImageFormat.Png);
dataObject.SetData("PNG", false, msPNG);
img.Save(msBMP, ImageFormat.Bmp);
msBMP.CopyStreamTo(msDIB, 14, (int)msBMP.Length - 14);
2016-01-01 20:37:04 +13:00
dataObject.SetData(DataFormats.Dib, true, msDIB);
2016-01-01 21:12:05 +13:00
return CopyData(dataObject);
}
2013-11-03 23:53:49 +13:00
}
public static bool CopyFile(string path)
{
if (!string.IsNullOrEmpty(path))
{
return CopyFile(new string[] { path });
}
return false;
}
public static bool CopyFile(string[] paths)
{
if (paths != null && paths.Length > 0)
{
try
{
2016-01-01 20:37:04 +13:00
IDataObject dataObject = new DataObject();
dataObject.SetData(DataFormats.FileDrop, true, paths);
return CopyData(dataObject);
2013-11-03 23:53:49 +13:00
}
catch (Exception e)
{
DebugHelper.WriteException(e, "Clipboard copy file failed.");
}
}
return false;
}
2019-12-12 22:59:00 +13:00
public static bool CopyImageFromFile(string path)
2013-11-03 23:53:49 +13:00
{
if (!string.IsNullOrEmpty(path) && File.Exists(path))
{
try
{
2019-12-12 22:59:00 +13:00
using (Image img = ImageHelpers.LoadImage(path))
{
return CopyImage(img);
}
2013-11-03 23:53:49 +13:00
}
catch (Exception e)
{
2019-12-12 22:59:00 +13:00
DebugHelper.WriteException(e, "Clipboard copy image from file failed.");
2013-11-03 23:53:49 +13:00
}
}
return false;
}
2019-12-12 22:59:00 +13:00
public static bool CopyTextFromFile(string path)
2013-11-03 23:53:49 +13:00
{
if (!string.IsNullOrEmpty(path) && File.Exists(path))
{
try
{
2019-12-12 22:59:00 +13:00
string text = File.ReadAllText(path, Encoding.UTF8);
return CopyText(text);
2013-11-03 23:53:49 +13:00
}
catch (Exception e)
{
2019-12-12 22:59:00 +13:00
DebugHelper.WriteException(e, "Clipboard copy text from file failed.");
2013-11-03 23:53:49 +13:00
}
}
return false;
}
2019-12-12 22:59:00 +13:00
public static Image GetImage(bool checkContainsImage = false)
{
2015-12-30 00:58:21 +13:00
try
{
lock (ClipboardLock)
{
2019-12-12 22:59:00 +13:00
if (!checkContainsImage || Clipboard.ContainsImage())
{
return Clipboard.GetImage();
}
2015-12-30 00:58:21 +13:00
}
}
catch (Exception e)
{
DebugHelper.WriteException(e, "Clipboard get image failed.");
}
return null;
}
private static Image GetImageAlternative()
{
IDataObject dataObject = Clipboard.GetDataObject();
if (dataObject != null)
{
string[] dataFormats = dataObject.GetFormats(false);
if (dataFormats.Contains(FORMAT_PNG))
{
using (MemoryStream ms = dataObject.GetData(FORMAT_PNG) as MemoryStream)
{
if (ms != null)
{
using (Image img = Image.FromStream(ms))
{
return (Image)img.Clone();
}
}
}
}
else
{
foreach (string format in new[] { DataFormats.Dib, FORMAT_17 })
{
if (dataFormats.Contains(format))
{
using (MemoryStream ms = dataObject.GetData(format) as MemoryStream)
{
if (ms != null)
{
try
{
2019-09-20 19:48:45 +12:00
return GetDIBImage(ms);
}
catch (Exception e)
{
DebugHelper.WriteException(e);
}
}
}
}
}
}
2015-12-30 00:58:21 +13:00
2016-01-13 19:54:36 +13:00
if (dataObject.GetDataPresent(DataFormats.Bitmap, true))
2016-01-01 20:37:04 +13:00
{
return dataObject.GetData(DataFormats.Bitmap, true) as Image;
}
}
2015-12-30 00:58:21 +13:00
return null;
}
private static Image GetDIBImage(MemoryStream ms)
{
byte[] dib = ms.ToArray();
BITMAPINFOHEADER infoHeader = Helpers.ByteArrayToStructure<BITMAPINFOHEADER>(dib);
IntPtr gcHandle = IntPtr.Zero;
try
{
GCHandle handle = GCHandle.Alloc(dib, GCHandleType.Pinned);
gcHandle = GCHandle.ToIntPtr(handle);
if (infoHeader.biSizeImage == 0)
{
infoHeader.biSizeImage = (uint)(infoHeader.biWidth * infoHeader.biHeight * (infoHeader.biBitCount >> 3));
}
2016-02-16 19:22:55 +13:00
using (Bitmap bmp = new Bitmap(infoHeader.biWidth, infoHeader.biHeight, -(int)(infoHeader.biSizeImage / infoHeader.biHeight),
infoHeader.biBitCount == 32 ? PixelFormat.Format32bppArgb : PixelFormat.Format24bppRgb,
new IntPtr((long)handle.AddrOfPinnedObject() + infoHeader.OffsetToPixels + ((infoHeader.biHeight - 1) * (int)(infoHeader.biSizeImage / infoHeader.biHeight)))))
2016-02-16 19:22:55 +13:00
{
return new Bitmap(bmp);
}
}
finally
{
if (gcHandle != IntPtr.Zero)
{
GCHandle.FromIntPtr(gcHandle).Free();
}
}
}
2013-11-03 23:53:49 +13:00
}
}