/*
* Greenshot - a free and open source screenshot tool
* Copyright (C) 2007-2021 Thomas Braun, Jens Klingen, Robin Krom
*
* For more information see: http://getgreenshot.org/
* The Greenshot project is hosted on GitHub https://github.com/greenshot/greenshot
*
* 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 1 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, see .
*/
using System.Drawing;
using System.Drawing.Imaging;
using System.IO;
using Svg;
namespace GreenshotPlugin.Core
{
///
/// Create an image look like of the SVG
///
public sealed class SvgImage : IImage
{
private readonly SvgDocument _svgDocument;
private Image _imageClone;
///
/// Factory to create via a stream
///
/// Stream
/// IImage
public static IImage FromStream(Stream stream)
{
return new SvgImage(stream);
}
///
/// Default constructor
///
///
public SvgImage(Stream stream)
{
_svgDocument = SvgDocument.Open(stream);
Height = (int)_svgDocument.ViewBox.Height;
Width = (int)_svgDocument.ViewBox.Width;
}
///
/// Height of the image, can be set to change
///
public int Height { get; set; }
///
/// Width of the image, can be set to change.
///
public int Width { get; set; }
///
/// Size of the image
///
public Size Size => new Size(Width, Height);
///
/// Pixelformat of the underlying image
///
public PixelFormat PixelFormat => Image.PixelFormat;
///
/// Horizontal resolution of the underlying image
///
public float HorizontalResolution => Image.HorizontalResolution;
///
/// Vertical resolution of the underlying image
///
public float VerticalResolution => Image.VerticalResolution;
///
/// Underlying image, or an on demand rendered version with different attributes as the original
///
public Image Image
{
get
{
if (_imageClone?.Height == Height && _imageClone?.Width == Width)
{
return _imageClone;
}
// Calculate new image clone
_imageClone?.Dispose();
_imageClone = ImageHelper.CreateEmpty(Width, Height, PixelFormat.Format32bppArgb, Color.Transparent, 96, 96);
_svgDocument.Draw((Bitmap)_imageClone);
return _imageClone;
}
}
///
/// Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
///
public void Dispose()
{
_imageClone?.Dispose();
}
}
}