示例#1
0
        private static unsafe Bitmap[] CaptureCompositeScreenshot(ref ScreenshotTask data)
        {
            // Generate a rectangle with the size of all monitors combined
            Rectangle totalSize = Rectangle.Empty;

            foreach (Screen s in Screen.AllScreens)
            {
                totalSize = Rectangle.Union(totalSize, s.Bounds);
            }

            var rct = new WindowsRect();

            if (WindowsApi.DwmGetWindowAttribute(data.WindowHandle, DwmWindowAttribute.ExtendedFrameBounds, ref rct, sizeof(WindowsRect)) != 0)
            {
                // DwmGetWindowAttribute() failed, usually means Aero is disabled so we fall back to GetWindowRect()
                WindowsApi.GetWindowRect(data.WindowHandle, ref rct);
            }
            else
            {
                // DwmGetWindowAttribute() succeeded
            }

            // Get DPI of the window (this only works properly on Win 10 1607+) but it is not really needed until Win 11 anyway
            int DPI = 96;

            try
            {
                DPI = WindowsApi.GetDpiForWindow(data.WindowHandle);
            }
            catch { }

            // Adjust margin for DPI
            double scalingFactor  = DPI / 96;
            int    backdropOffset = Convert.ToInt32(100 * scalingFactor);

            // Add a 100px margin for window shadows. Excess transparency is trimmed out later
            rct.Left   -= backdropOffset;
            rct.Right  += backdropOffset;
            rct.Top    -= backdropOffset;
            rct.Bottom += backdropOffset;

            // These next 4 checks handle if the window is outside of the visible screen
            if (rct.Left < totalSize.Left)
            {
                rct.Left = totalSize.Left;
            }
            if (rct.Right > totalSize.Right)
            {
                rct.Right = totalSize.Right;
            }
            if (rct.Top < totalSize.Top)
            {
                rct.Top = totalSize.Top;
            }
            if (rct.Bottom > totalSize.Bottom)
            {
                rct.Bottom = totalSize.Bottom;
            }

            // Spawning backdrop
            // Handling as much as possible in the constructor makes this easier to render, which makes capture less likely to fail on underpowered PCs
            Color tmpColor = Color.White;
            var   backdrop = new Form
            {
                BackColor       = tmpColor,
                FormBorderStyle = FormBorderStyle.None,
                ShowInTaskbar   = false,
                //Opacity = 0,
                Size          = new Size(rct.Right - rct.Left, rct.Bottom - rct.Top),
                StartPosition = FormStartPosition.Manual,
                Location      = new Point(rct.Left, rct.Top)
            };

            WindowsApi.ShowWindow(backdrop.Handle, 4);
            if (!WindowsApi.SetWindowPos(backdrop.Handle, data.WindowHandle, rct.Left, rct.Top, rct.Right - rct.Left, rct.Bottom - rct.Top, SWP_NOACTIVATE))
            {
                // We are unable to put backdrop directly behind the window, so we will put it into the foreground and then put the original window on top of it
                // This likely happens because the program we're trying to capture is running as administrator
                WindowsApi.SetWindowPos(backdrop.Handle, IntPtr.Zero, rct.Left, rct.Top, rct.Right - rct.Left, rct.Bottom - rct.Top, SWP_NOACTIVATE);
                WindowsApi.SetForegroundWindow(data.WindowHandle).ToString();
            }

            RefreshBackdrop();

            // Capture screenshot with white background
            Bitmap whiteShot = CaptureScreenRegion(new Rectangle(rct.Left, rct.Top, rct.Right - rct.Left, rct.Bottom - rct.Top));

            backdrop.BackColor = Color.Black;
            RefreshBackdrop();

            // Capture screenshot with black background
            Bitmap blackShot = CaptureScreenRegion(new Rectangle(rct.Left, rct.Top, rct.Right - rct.Left, rct.Bottom - rct.Top));

            Bitmap transparentImage;
            Bitmap transparentInactiveImage            = null;
            Bitmap transparentWhiteImage               = null;
            Bitmap transparentWhiteInactiveImage       = null;
            Bitmap transparentMaskImage                = null;
            Bitmap transparentTransparentImage         = null;
            Bitmap transparentTransparentInactiveImage = null;

            transparentImage = DifferentiateAlpha(whiteShot, blackShot, false);
            if (data.SaveActiveLight)
            {
                transparentWhiteImage = DifferentiateAlpha(whiteShot, blackShot, true);
            }

            whiteShot.Dispose();
            blackShot.Dispose();

            //Capture black mask screenshot
            if (data.SaveMask)
            {
                int  minAlpha      = 0;
                bool isCompositing = false;
                bool ShadowToggled = false;
                bool ColorToggled  = false;

                try
                {
                    WindowsApi.DwmIsCompositionEnabled(out isCompositing);
                }
                catch (Exception)
                {
                    //OS doesn't have a supported version of DWM
                }

                //We can't disable shadows on Vista without disabling DWM, which would cause the mask to be inaccurate
                UInt32 ColorizationColor = 0;
                bool   fOpaque           = true;
                if (isCompositing && (VersionHelpers.IsWindowsVista() || VersionHelpers.IsWindows11()))
                {
                    minAlpha = 254;

                    WindowsApi.DwmGetColorizationColor(out ColorizationColor, out fOpaque);

                    if (fOpaque == false)
                    {
                        WindowsApi.DwmpSetColorization(ColorizationColor, true, 0xFF);
                        ColorToggled = true;
                    }
                }
                else if (ShadowEnabled())
                {
                    WindowsApi.SystemParametersInfo(SPI_SETDROPSHADOW, 0, false, 0);
                    ShadowToggled = true;
                }

                backdrop.BackColor = Color.White;
                RefreshBackdrop();
                Bitmap whiteMaskShot = CaptureScreenRegion(new Rectangle(rct.Left, rct.Top, rct.Right - rct.Left, rct.Bottom - rct.Top));

                backdrop.BackColor = Color.Black;
                RefreshBackdrop();
                Bitmap blackMaskShot = CaptureScreenRegion(new Rectangle(rct.Left, rct.Top, rct.Right - rct.Left, rct.Bottom - rct.Top));

                transparentMaskImage = CreateMask(DifferentiateAlpha(whiteMaskShot, blackMaskShot, false), minAlpha);

                if (ShadowToggled)
                {
                    WindowsApi.SystemParametersInfo(SPI_SETDROPSHADOW, 0, true, 0);
                }

                if (ColorToggled)
                {
                    WindowsApi.DwmpSetColorization(ColorizationColor, fOpaque, 0xFF);
                }

                whiteMaskShot.Dispose();
                blackMaskShot.Dispose();
            }

            //Capture active fully transparent
            if (data.SaveActiveTransparent)
            {
                try
                {
                    //win 7
                    WindowsApi.DWM_COLORIZATION_PARAMS parameters, originalParameters = new WindowsApi.DWM_COLORIZATION_PARAMS();
                    //win vista
                    UInt32 ColorizationColor = 0;
                    bool   fOpaque           = true;


                    if (VersionHelpers.IsWindowsVista())
                    {
                        WindowsApi.DwmGetColorizationColor(out ColorizationColor, out fOpaque);

                        if (fOpaque == false)
                        {
                            WindowsApi.DwmpSetColorization(0xFFFFFF, false, 0xFF);
                        }
                    }
                    else
                    {
                        WindowsApi.DwmGetColorizationParameters(out parameters);
                        WindowsApi.DwmGetColorizationParameters(out originalParameters);

                        //Set custom fully transparent parameters
                        parameters.clrAfterGlowBalance = 0;
                        parameters.clrBlurBalance      = 100;
                        parameters.nIntensity          = 0;

                        // Call the DwmSetColorizationParameters to make the change take effect.
                        WindowsApi.DwmSetColorizationParameters(ref parameters, false);
                    }


                    backdrop.BackColor = Color.White;
                    RefreshBackdrop();
                    Bitmap whiteTransparentShot = CaptureScreenRegion(new Rectangle(rct.Left, rct.Top, rct.Right - rct.Left, rct.Bottom - rct.Top));

                    backdrop.BackColor = Color.Black;
                    RefreshBackdrop();
                    Bitmap blackTransparentShot = CaptureScreenRegion(new Rectangle(rct.Left, rct.Top, rct.Right - rct.Left, rct.Bottom - rct.Top));

                    transparentTransparentImage = DifferentiateAlpha(whiteTransparentShot, blackTransparentShot, false);
                    whiteTransparentShot.Dispose();
                    blackTransparentShot.Dispose();

                    if (VersionHelpers.IsWindowsVista())
                    {
                        WindowsApi.DwmpSetColorization(ColorizationColor, fOpaque, 0xFF);
                    }
                    else
                    {
                        WindowsApi.DwmSetColorizationParameters(ref originalParameters, false);
                    }
                }
                catch (Exception)
                {
                    transparentTransparentImage = new Bitmap(transparentImage);
                }
            }

            //Show form to steal focus
            var emptyForm = new Form
            {
                FormBorderStyle = FormBorderStyle.None,
                ShowInTaskbar   = false,
                Opacity         = 0,
            };

            WindowsApi.ShowWindow(emptyForm.Handle, 5);
            WindowsApi.SetWindowPos(emptyForm.Handle, data.WindowHandle, rct.Left, rct.Top, rct.Right - rct.Left, rct.Bottom - rct.Top, 0);
            WindowsApi.SetForegroundWindow(emptyForm.Handle);

            // Capture inactive screenshots
            if (data.SaveInactiveDark || data.SaveInactiveLight)
            {
                backdrop.BackColor = Color.White;
                RefreshBackdrop();

                // Capture inactive screenshot with white background
                Bitmap whiteInactiveShot = CaptureScreenRegion(new Rectangle(rct.Left, rct.Top, rct.Right - rct.Left, rct.Bottom - rct.Top));

                backdrop.BackColor = Color.Black;
                RefreshBackdrop();

                // Capture inactive screenshot with black background
                Bitmap blackInactiveShot = CaptureScreenRegion(new Rectangle(rct.Left, rct.Top, rct.Right - rct.Left, rct.Bottom - rct.Top));


                if (data.SaveInactiveDark)
                {
                    transparentInactiveImage = DifferentiateAlpha(whiteInactiveShot, blackInactiveShot, false);
                }
                if (data.SaveInactiveLight)
                {
                    transparentWhiteInactiveImage = DifferentiateAlpha(whiteInactiveShot, blackInactiveShot, true);
                }

                whiteInactiveShot.Dispose();
                blackInactiveShot.Dispose();
            }

            //Capture inactive fully transparent
            if (data.SaveInactiveTransparent)
            {
                try
                {
                    //Get original colorization parameters
                    WindowsApi.DWM_COLORIZATION_PARAMS parameters, originalParameters;
                    WindowsApi.DwmGetColorizationParameters(out parameters);
                    WindowsApi.DwmGetColorizationParameters(out originalParameters);

                    //Set custom fully transparent parameters
                    parameters.clrAfterGlowBalance = 0;
                    parameters.clrBlurBalance      = 100;
                    parameters.nIntensity          = 0;

                    // Call the DwmSetColorizationParameters to make the change take effect.
                    WindowsApi.DwmSetColorizationParameters(ref parameters, false);

                    backdrop.BackColor = Color.White;
                    RefreshBackdrop();
                    Bitmap whiteTransparentInactiveShot = CaptureScreenRegion(new Rectangle(rct.Left, rct.Top, rct.Right - rct.Left, rct.Bottom - rct.Top));

                    backdrop.BackColor = Color.Black;
                    RefreshBackdrop();
                    Bitmap blackTransparentInactiveShot = CaptureScreenRegion(new Rectangle(rct.Left, rct.Top, rct.Right - rct.Left, rct.Bottom - rct.Top));

                    transparentTransparentInactiveImage = DifferentiateAlpha(whiteTransparentInactiveShot, blackTransparentInactiveShot, false);
                    whiteTransparentInactiveShot.Dispose();
                    blackTransparentInactiveShot.Dispose();

                    WindowsApi.DwmSetColorizationParameters(ref originalParameters, false);
                }
                catch (Exception)
                {
                    transparentTransparentInactiveImage = new Bitmap(transparentInactiveImage);
                }
            }

            backdrop.Dispose();
            emptyForm.Dispose();

            if (data.CaptureMouse)
            {
                DrawCursorToBitmap(transparentImage, new Point(rct.Left, rct.Top));
            }
            Bitmap[] final = CropEmptyEdges(new[] { transparentImage, transparentInactiveImage, transparentWhiteImage, transparentWhiteInactiveImage, transparentMaskImage, transparentTransparentImage, transparentTransparentInactiveImage }, Color.FromArgb(0, 0, 0, 0), ref data);

            // Returns a bitmap with transparency, calculated by differentiating the white and black screenshots
            return(final);
        }
示例#2
0
        public Settings()
        {
            object value;
            _registryKey = Registry.CurrentUser.CreateSubKey(@"Software\AeroShot");

            if ((value = _registryKey.GetValue("FirstRun")) == null)
            {
                firstRun = true;
            }


            if ((value = _registryKey.GetValue("LastPath")) != null && value.GetType() == (typeof(string)))
            {
                if (((string)value).Substring(0, 1) == "*")
                {
                    folderTextBox = ((string)value).Substring(1);
                    clipboardButton = true;
                }
                else
                {
                    folderTextBox = (string)value;
                    diskButton = true;
                }
            }
            else
            {
                folderTextBox =
                    Environment.GetFolderPath(Environment.SpecialFolder.Desktop);
            }

            if ((value = _registryKey.GetValue("WindowSize")) != null && value.GetType() == (typeof(long)))
            {
                var b = new byte[8];
                for (int i = 0; i < 8; i++)
                    b[i] = (byte)(((long)value >> (i * 8)) & 0xff);
                resizeCheckbox = (b[0] & 1) == 1;
                windowWidth = b[1] << 16 | b[2] << 8 | b[3];
                windowHeight = b[4] << 16 | b[5] << 8 | b[6];
            }

            if ((value = _registryKey.GetValue("CanvasSize")) != null && value.GetType() == (typeof(long)))
            {
                var b = new byte[8];
                for (int i = 0; i < 8; i++)
                    b[i] = (byte)(((long)value >> (i * 8)) & 0xff);
                canvasSizeCheckbox = (b[0] & 1) == 1;
                canvasWidth = b[1] << 16 | b[2] << 8 | b[3];
                canvasHeight = b[4] << 16 | b[5] << 8 | b[6];
            }

            if ((value = _registryKey.GetValue("AeroColor")) != null && value.GetType() == (typeof(long)))
            {
                var b = new byte[8];
                for (int i = 0; i < 8; i++)
                    b[i] = (byte)(((long)value >> (i * 8)) & 0xff);
                aeroColorCheckbox = (b[0] & 1) == 1;

                var hex = new StringBuilder(6);
                hex.AppendFormat("{0:X2}", b[1]);
                hex.AppendFormat("{0:X2}", b[2]);
                hex.AppendFormat("{0:X2}", b[3]);
                aeroColorHexBox = hex.ToString();
            }
            /*else
                opaqueType = 0;*/

            if ((value = _registryKey.GetValue("CapturePointer")) != null && value.GetType() == (typeof(int)))
                mouseCheckbox = ((int)value & 1) == 1;

            if ((value = _registryKey.GetValue("CropMode")) != null && value.GetType() == (typeof(int)))
				switch ((int)value)
				{
                    case 1:
                        cropModeKeepCenteredButton = true;
                        break;
                    default:
                        cropModeRemoveAllButton = true;
                        break;
                }
            else
                cropModeRemoveAllButton = true;

            if ((value = _registryKey.GetValue("ClearType")) != null && value.GetType() == (typeof(int)))
                clearTypeCheckbox = ((int)value & 1) == 1;

            if ((value = _registryKey.GetValue("Shadow")) != null && value.GetType() == (typeof(int)))
                shadowCheckbox = ((int)value & 1) == 1;

            if ((value = _registryKey.GetValue("SaveActiveDark")) != null && value.GetType() == (typeof(int)))
                saveActiveDarkCheckbox = ((int)value & 1) == 1;
            else
                saveActiveDarkCheckbox = true;

            if ((value = _registryKey.GetValue("SaveActiveLight")) != null && value.GetType() == (typeof(int)))
                saveActiveLightCheckbox = ((int)value & 1) == 1;
            else
                saveActiveLightCheckbox = VersionHelpers.HasAeroAfterglow();

            if ((value = _registryKey.GetValue("SaveInactiveDark")) != null && value.GetType() == (typeof(int)))
                saveInactiveDarkCheckbox = ((int)value & 1) == 1;
            else
                saveInactiveDarkCheckbox = true;

            if ((value = _registryKey.GetValue("SaveInactiveLight")) != null && value.GetType() == (typeof(int)))
                saveInactiveLightCheckbox = ((int)value & 1) == 1;
            else
                saveInactiveLightCheckbox = VersionHelpers.HasAeroAfterglow();

            if ((value = _registryKey.GetValue("SaveMask")) != null && value.GetType() == (typeof(int)))
                saveMaskCheckbox = ((int)value & 1) == 1;
            else
                saveMaskCheckbox = VersionHelpers.HasAeroTransparency();

            if ((value = _registryKey.GetValue("SaveActiveTransparent")) != null && value.GetType() == (typeof(int)))
                saveActiveTransparentCheckbox = ((int)value & 1) == 1;
            else
                saveActiveTransparentCheckbox = VersionHelpers.HasAeroTransparency();

            if ((value = _registryKey.GetValue("SaveInactiveTransparent")) != null && value.GetType() == (typeof(int)))
                saveInactiveTransparentCheckbox = ((int)value & 1) == 1;
            else
                saveInactiveTransparentCheckbox = VersionHelpers.HasAeroTransparency();

            if ((value = _registryKey.GetValue("HotkeyKey")) != null && value.GetType() == (typeof(int)))
                hotkeyKey = (int)value;

            if ((value = _registryKey.GetValue("HotkeyModifier")) != null && value.GetType() == (typeof(int)))
                hotkeyModifier = (int)value % 8;

            if ((value = _registryKey.GetValue("Delay")) != null && value.GetType() == (typeof(long)))
            {
                var b = new byte[8];
                for (int i = 0; i < 8; i++)
                    b[i] = (byte)(((long)value >> (i * 8)) & 0xff);
                delayCheckbox = (b[0] & 1) == 1;
                delaySeconds = b[1];
            }
        }
示例#3
0
        internal static void CaptureWindow(ref ScreenshotTask data)
        {
            IntPtr start   = WindowsApi.FindWindow("Button", "Start");
            IntPtr taskbar = WindowsApi.FindWindow("Shell_TrayWnd", null);

            if (data.ClipboardNotDisk || Directory.Exists(data.DiskSaveDirectory))
            {
                try
                {
                    // Hide the taskbar, just incase it gets in the way
                    if (data.WindowHandle != start &&
                        data.WindowHandle != taskbar)
                    {
                        WindowsApi.ShowWindow(start, 0);
                        WindowsApi.ShowWindow(taskbar, 0);
                        Application.DoEvents();
                    }
                    bool ClearTypeToggled = false;
                    if (data.DisableClearType && ClearTypeEnabled())
                    {
                        WindowsApi.SystemParametersInfo(SPI_SETFONTSMOOTHINGTYPE, 0, FE_FONTSMOOTHINGSTANDARD, SPIF_UPDATEINIFILE | SPIF_SENDCHANGE);
                        WindowsApi.RedrawWindow(data.WindowHandle, IntPtr.Zero, IntPtr.Zero, RDW_FRAME | RDW_INVALIDATE | RDW_UPDATENOW | RDW_ALLCHILDREN);
                        ClearTypeToggled = true;
                    }
                    WindowsApi.SetForegroundWindow(data.WindowHandle);

                    bool AeroColorToggled        = false;
                    uint ColorizationColor       = 0;
                    bool ColorizationOpaqueBlend = false;

                    WindowsApi.DWM_COLORIZATION_PARAMS originalParameters = new WindowsApi.DWM_COLORIZATION_PARAMS();
                    if (Environment.OSVersion.Version.Major >= 6)
                    {
                        try
                        {
                            if (data.CustomGlass && AeroEnabled())
                            {
                                if (VersionHelpers.IsWindowsVista())
                                {
                                    WindowsApi.DwmGetColorizationColor(out ColorizationColor, out ColorizationOpaqueBlend);
                                    WindowsApi.DwmpSetColorization(ColorToBgra(data.AeroColor), true, 0xFF);
                                }
                                else
                                {
                                    // Original colorization parameters
                                    WindowsApi.DwmGetColorizationParameters(out originalParameters);

                                    // Custom colorization parameters
                                    WindowsApi.DWM_COLORIZATION_PARAMS parameters;
                                    WindowsApi.DwmGetColorizationParameters(out parameters);
                                    parameters.clrAfterGlowBalance = 2;
                                    parameters.clrBlurBalance      = 29;
                                    parameters.clrColor            = ColorToBgra(data.AeroColor);
                                    parameters.nIntensity          = 69;

                                    // Call the DwmSetColorizationParameters to make the change take effect.
                                    WindowsApi.DwmSetColorizationParameters(ref parameters, false);
                                }
                                AeroColorToggled = true;
                            }
                        }
                        catch (Exception)
                        {
                            AeroColorToggled = false; //workaround for Vista Betas
                        }
                    }


                    bool ShadowToggled = false;
                    if (data.DisableShadow && ShadowEnabled())
                    {
                        WindowsApi.SystemParametersInfo(SPI_SETDROPSHADOW, 0, false, 0);
                        ShadowToggled = true;
                    }

                    var r = new WindowsRect(0);
                    if (data.DoResize)
                    {
                        SmartResizeWindow(ref data, out r);
                        Thread.Sleep(100);
                    }

                    int length = WindowsApi.GetWindowTextLength(data.WindowHandle);
                    var sb     = new StringBuilder(length + 1);
                    WindowsApi.GetWindowText(data.WindowHandle, sb, sb.Capacity);

                    string name = sb.ToString();

                    foreach (char inv in Path.GetInvalidFileNameChars())
                    {
                        name = name.Replace(inv.ToString(), string.Empty);
                    }

                    Bitmap[] s = CaptureCompositeScreenshot(ref data);

                    if (AeroColorToggled && Environment.OSVersion.Version.Major >= 6)
                    {
                        if (VersionHelpers.IsWindowsVista())
                        {
                            WindowsApi.DwmpSetColorization(ColorizationColor, ColorizationOpaqueBlend, 0xFF);
                        }
                        else
                        {
                            WindowsApi.DwmSetColorizationParameters(ref originalParameters, false);
                        }
                    }

                    if (ClearTypeToggled)
                    {
                        WindowsApi.SystemParametersInfo(SPI_SETFONTSMOOTHINGTYPE, 0, FE_FONTSMOOTHINGCLEARTYPE, SPIF_UPDATEINIFILE | SPIF_SENDCHANGE);
                        WindowsApi.RedrawWindow(data.WindowHandle, IntPtr.Zero, IntPtr.Zero, RDW_FRAME | RDW_INVALIDATE | RDW_UPDATENOW | RDW_ALLCHILDREN);
                    }

                    if (ShadowToggled)
                    {
                        WindowsApi.SystemParametersInfo(SPI_SETDROPSHADOW, 0, true, 0);
                    }

                    // Show the taskbar again
                    if (data.WindowHandle != start &&
                        data.WindowHandle != taskbar)
                    {
                        WindowsApi.ShowWindow(start, 1);
                        WindowsApi.ShowWindow(taskbar, 1);
                    }

                    if (s == null || s[0] == null)
                    {
                        MessageBox.Show("The screenshot taken was blank, it will not be saved.",
                                        "Warning", MessageBoxButtons.OK, MessageBoxIcon.Warning);
                    }
                    else
                    {
                        if (data.ClipboardNotDisk)
                        {
                            var whiteS = new Bitmap(s[0].Width, s[0].Height, PixelFormat.Format24bppRgb);
                            using (Graphics graphics = Graphics.FromImage(whiteS))
                            {
                                graphics.Clear(Color.White);
                                graphics.DrawImage(s[0], 0, 0, s[0].Width, s[0].Height);
                            }
                            using (var pngStream = new MemoryStream())
                                using (var dibStream = new MemoryStream())
                                {
                                    // Save screenshot in clipboard as PNG which some applications support (eg. Microsoft Office)
                                    s[0].Save(pngStream, ImageFormat.Png);
                                    var    pngClipboardData = new DataObject("PNG", pngStream);
                                    Byte[] dibData          = DIBConverter.ConvertToDib(s[0]);
                                    dibStream.Write(dibData, 0, dibData.Length);
                                    pngClipboardData.SetData(DataFormats.Dib, false, dibStream);
                                    //var pngClipboardData = new DataObject(DataFormats.Dib, false, dibStream);
                                    // Add fallback for applications that don't support PNG from clipboard (eg. Photoshop or Paint)
                                    //pngClipboardData.SetData(DataFormats.Bitmap, s[0]);
                                    Clipboard.Clear();
                                    Clipboard.SetDataObject(pngClipboardData, true);
                                }
                            whiteS.Dispose();
                        }
                        else
                        {
                            name = name.Trim();
                            if (name == string.Empty)
                            {
                                name = "AeroShot";
                            }
                            string pathActive              = Path.Combine(data.DiskSaveDirectory, name + "_b1.png");
                            string pathInactive            = Path.Combine(data.DiskSaveDirectory, name + "_b2.png");
                            string pathWhiteActive         = Path.Combine(data.DiskSaveDirectory, name + "_w1.png");
                            string pathWhiteInactive       = Path.Combine(data.DiskSaveDirectory, name + "_w2.png");
                            string pathMask                = Path.Combine(data.DiskSaveDirectory, name + "_mask.png");
                            string pathTransparentActive   = Path.Combine(data.DiskSaveDirectory, name + "_t1.png");
                            string pathTransparentInactive = Path.Combine(data.DiskSaveDirectory, name + "_t2.png");

                            if (File.Exists(pathActive) || File.Exists(pathInactive) || File.Exists(pathWhiteActive) || File.Exists(pathWhiteInactive) || File.Exists(pathMask) || File.Exists(pathTransparentActive) || File.Exists(pathTransparentInactive))
                            {
                                for (int i = 1; i < 9999; i++)
                                {
                                    pathActive              = Path.Combine(data.DiskSaveDirectory, name + " " + i + "_b1.png");
                                    pathInactive            = Path.Combine(data.DiskSaveDirectory, name + " " + i + "_b2.png");
                                    pathWhiteActive         = Path.Combine(data.DiskSaveDirectory, name + " " + i + "_w1.png");
                                    pathWhiteInactive       = Path.Combine(data.DiskSaveDirectory, name + " " + i + "_w2.png");
                                    pathMask                = Path.Combine(data.DiskSaveDirectory, name + " " + i + "_mask.png");
                                    pathTransparentActive   = Path.Combine(data.DiskSaveDirectory, name + " " + i + "_t1.png");
                                    pathTransparentInactive = Path.Combine(data.DiskSaveDirectory, name + " " + i + "_t2.png");
                                    if (!File.Exists(pathActive) && !File.Exists(pathInactive) && !File.Exists(pathWhiteActive) && !File.Exists(pathWhiteInactive) && !File.Exists(pathMask) && !File.Exists(pathTransparentActive) && !File.Exists(pathTransparentInactive))
                                    {
                                        break;
                                    }
                                }
                            }
                            if (data.SaveActiveDark)
                            {
                                s[0].Save(pathActive, ImageFormat.Png);
                            }

                            if (data.SaveInactiveDark)
                            {
                                s[1].Save(pathInactive, ImageFormat.Png);
                            }

                            if (data.SaveActiveLight)
                            {
                                s[2].Save(pathWhiteActive, ImageFormat.Png);
                            }

                            if (data.SaveInactiveLight)
                            {
                                s[3].Save(pathWhiteInactive, ImageFormat.Png);
                            }

                            if (data.SaveMask)
                            {
                                s[4].Save(pathMask, ImageFormat.Png);
                            }

                            if (data.SaveActiveTransparent)
                            {
                                s[5].Save(pathTransparentActive, ImageFormat.Png);
                            }

                            if (data.SaveInactiveTransparent)
                            {
                                s[6].Save(pathTransparentInactive, ImageFormat.Png);
                            }
                        }
                        if (s[0] != null)
                        {
                            s[0].Dispose();
                        }
                        if (s[1] != null)
                        {
                            s[1].Dispose();
                        }
                        if (s[2] != null)
                        {
                            s[2].Dispose();
                        }
                        if (s[3] != null)
                        {
                            s[3].Dispose();
                        }
                        if (s[4] != null)
                        {
                            s[4].Dispose();
                        }
                    }

                    if (data.DoResize)
                    {
                        if ((WindowsApi.GetWindowLong(data.WindowHandle, GWL_STYLE) & WS_SIZEBOX) == WS_SIZEBOX)
                        {
                            WindowsApi.SetWindowPos(data.WindowHandle, (IntPtr)0, r.Left, r.Top, r.Right - r.Left, r.Bottom - r.Top, SWP_SHOWWINDOW);
                        }
                    }
                }
                catch (Exception e)
                {
                    if (data.WindowHandle != start && data.WindowHandle != taskbar)
                    {
                        WindowsApi.ShowWindow(start, 1);
                        WindowsApi.ShowWindow(taskbar, 1);
                    }

                    MessageBox.Show("An error occurred while trying to take a screenshot.\r\n\r\nPlease make sure you have selected a valid window.\r\n\r\n" + e.ToString(),
                                    "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
                }
            }
            else
            {
                MessageBox.Show("Invalid directory chosen.", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
            }
        }