using System;
using System.Collections.Generic;
using System.Drawing;
using System.Drawing.Imaging;
using System.Linq;
using GreenshotPlugin.Interfaces;
using GreenshotPlugin.Interfaces.Ocr;
using log4net;
using ZXing;
namespace GreenshotPlugin.Core
{
///
/// This class is used to pass an instance of the "Capture" around
/// Having the Bitmap, eventually the Windows Title and cursor all together.
///
public class Capture : ICapture {
private static readonly ILog Log = LogManager.GetLogger(typeof(Capture));
private List _elements = new List();
private Rectangle _screenBounds;
///
/// Get/Set the Screenbounds
///
public Rectangle ScreenBounds {
get {
if (_screenBounds == Rectangle.Empty) {
_screenBounds = WindowCapture.GetScreenBounds();
}
return _screenBounds;
}
set => _screenBounds = value;
}
private Image _image;
///
/// Get/Set the Image
///
public Image Image {
get => _image;
set {
_image?.Dispose();
_image = value;
if (value != null) {
if (value.PixelFormat.Equals(PixelFormat.Format8bppIndexed) || value.PixelFormat.Equals(PixelFormat.Format1bppIndexed) || value.PixelFormat.Equals(PixelFormat.Format4bppIndexed)) {
Log.Debug("Converting Bitmap to PixelFormat.Format32bppArgb as we don't support: " + value.PixelFormat);
try {
// Default Bitmap PixelFormat is Format32bppArgb
_image = new Bitmap(value);
} finally {
// Always dispose, even when a exception occured
value.Dispose();
}
}
Log.DebugFormat("Image is set with the following specifications: {0} - {1}", _image.Size, _image.PixelFormat);
} else {
Log.Debug("Image is removed.");
}
}
}
public void NullImage() {
_image = null;
}
private Icon _cursor;
///
/// Get/Set the image for the Cursor
///
public Icon Cursor {
get => _cursor;
set {
_cursor?.Dispose();
_cursor = (Icon)value.Clone();
}
}
///
/// The information which OCR brings
///
public OcrInformation OcrInformation { get; set; }
///
/// Set if the cursor is visible
///
public bool CursorVisible { get; set; }
private Point _cursorLocation = Point.Empty;
///
/// Get/Set the CursorLocation
///
public Point CursorLocation {
get => _cursorLocation;
set => _cursorLocation = value;
}
private Point _location = Point.Empty;
///
/// Get/set the Location
///
public Point Location {
get => _location;
set => _location = value;
}
private CaptureDetails _captureDetails;
///
/// Get/set the CaptureDetails
///
public ICaptureDetails CaptureDetails {
get => _captureDetails;
set => _captureDetails = (CaptureDetails)value;
}
///
/// Default Constructor
///
public Capture() {
_screenBounds = WindowCapture.GetScreenBounds();
_captureDetails = new CaptureDetails();
}
///
/// Constructor with Image
/// Note: the supplied bitmap can be disposed immediately or when constructor is called.
///
/// Image
public Capture(Image newImage) : this() {
Image = newImage;
}
///
/// Destructor
///
~Capture() {
Dispose(false);
}
///
/// The public accessible Dispose
/// Will call the GarbageCollector to SuppressFinalize, preventing being cleaned twice
///
public void Dispose() {
Dispose(true);
GC.SuppressFinalize(this);
}
///
/// This Dispose is called from the Dispose and the Destructor.
/// When disposing==true all non-managed resources should be freed too!
///
///
protected virtual void Dispose(bool disposing) {
if (disposing) {
_image?.Dispose();
_cursor?.Dispose();
}
_image = null;
_cursor = null;
}
///
/// Crops the capture to the specified rectangle (with Bitmap coordinates!)
///
/// Rectangle with bitmap coordinates
public bool Crop(Rectangle cropRectangle) {
Log.Debug("Cropping to: " + cropRectangle);
if (!ImageHelper.Crop(ref _image, ref cropRectangle))
{
return false;
}
_location = cropRectangle.Location;
// Change mouse location according to the cropRectangle (including screenbounds) offset
MoveMouseLocation(-cropRectangle.Location.X, -cropRectangle.Location.Y);
// Move all the elements
// TODO: Enable when the elements are usable again.
// MoveElements(-cropRectangle.Location.X, -cropRectangle.Location.Y);
// Offset the OCR information
// TODO: Remove invisible lines/words?
CaptureDetails.OcrInformation?.Offset(-cropRectangle.Location.X, -cropRectangle.Location.Y);
// Offset the Qr information
// TODO: Remove invisible QR codes?
var oldQrResult = CaptureDetails.QrResult;
if (oldQrResult != null)
{
CaptureDetails.OcrInformation?.Offset(-cropRectangle.Location.X, -cropRectangle.Location.Y);
var offsetPoints = CaptureDetails.QrResult.ResultPoints
.Select(p => new ResultPoint(p.X - cropRectangle.Location.X, p.Y - cropRectangle.Location.Y)).ToArray();
var newQqResult = new Result(oldQrResult.Text, oldQrResult.RawBytes, offsetPoints, oldQrResult.BarcodeFormat);
CaptureDetails.QrResult = newQqResult;
}
// Remove invisible elements
var visibleElements = new List();
foreach(var captureElement in _elements) {
if (captureElement.Bounds.IntersectsWith(cropRectangle)) {
visibleElements.Add(captureElement);
}
}
_elements = visibleElements;
return true;
}
///
/// Apply a translate to the mouse location.
/// e.g. needed for crop
///
/// x coordinates to move the mouse
/// y coordinates to move the mouse
public void MoveMouseLocation(int x, int y) {
_cursorLocation.Offset(x, y);
}
// TODO: Enable when the elements are usable again.
/////
///// Apply a translate to the elements
///// e.g. needed for crop
/////
///// x coordinates to move the elements
///// y coordinates to move the elements
//public void MoveElements(int x, int y) {
// MoveElements(elements, x, y);
//}
//private void MoveElements(List listOfElements, int x, int y) {
// foreach(ICaptureElement childElement in listOfElements) {
// Rectangle bounds = childElement.Bounds;
// bounds.Offset(x, y);
// childElement.Bounds = bounds;
// MoveElements(childElement.Children, x, y);
// }
//}
/////
///// Add a new element to the capture
/////
///// CaptureElement
//public void AddElement(ICaptureElement element) {
// int match = elements.IndexOf(element);
// if (match >= 0) {
// if (elements[match].Children.Count < element.Children.Count) {
// elements.RemoveAt(match);
// elements.Add(element);
// }
// } else {
// elements.Add(element);
// }
//}
/////
///// Returns a list of rectangles which represent object that are on the capture
/////
//public List Elements {
// get {
// return elements;
// }
// set {
// elements = value;
// }
//}
}
}