|
@@ -9,140 +9,35 @@ namespace Emby.Drawing.ImageMagick
|
|
|
public class StripCollageBuilder
|
|
|
{
|
|
|
private readonly IApplicationPaths _appPaths;
|
|
|
- private readonly IFileSystem _fileSystem;
|
|
|
+ private readonly IFileSystem _fileSystem;
|
|
|
|
|
|
- public StripCollageBuilder(IApplicationPaths appPaths, IFileSystem fileSystem)
|
|
|
+ public StripCollageBuilder(IApplicationPaths appPaths, IFileSystem fileSystem)
|
|
|
{
|
|
|
_appPaths = appPaths;
|
|
|
- _fileSystem = fileSystem;
|
|
|
+ _fileSystem = fileSystem;
|
|
|
}
|
|
|
|
|
|
- public void BuildPosterCollage(List<string> paths, string outputPath, int width, int height, string text)
|
|
|
+ public void BuildPosterCollage(List<string> paths, string outputPath, int width, int height)
|
|
|
{
|
|
|
- if (!string.IsNullOrWhiteSpace(text))
|
|
|
+ using (var wand = BuildPosterCollageWand(paths, width, height))
|
|
|
{
|
|
|
- using (var wand = BuildPosterCollageWandWithText(paths, text, width, height))
|
|
|
- {
|
|
|
- wand.SaveImage(outputPath);
|
|
|
- }
|
|
|
- }
|
|
|
- else
|
|
|
- {
|
|
|
- using (var wand = BuildPosterCollageWand(paths, width, height))
|
|
|
- {
|
|
|
- wand.SaveImage(outputPath);
|
|
|
- }
|
|
|
+ wand.SaveImage(outputPath);
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- public void BuildSquareCollage(List<string> paths, string outputPath, int width, int height, string text)
|
|
|
+ public void BuildSquareCollage(List<string> paths, string outputPath, int width, int height)
|
|
|
{
|
|
|
- if (!string.IsNullOrWhiteSpace(text))
|
|
|
+ using (var wand = BuildSquareCollageWand(paths, width, height))
|
|
|
{
|
|
|
- using (var wand = BuildSquareCollageWandWithText(paths, text, width, height))
|
|
|
- {
|
|
|
- wand.SaveImage(outputPath);
|
|
|
- }
|
|
|
- }
|
|
|
- else
|
|
|
- {
|
|
|
- using (var wand = BuildSquareCollageWand(paths, width, height))
|
|
|
- {
|
|
|
- wand.SaveImage(outputPath);
|
|
|
- }
|
|
|
+ wand.SaveImage(outputPath);
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- public void BuildThumbCollage(List<string> paths, string outputPath, int width, int height, string text)
|
|
|
+ public void BuildThumbCollage(List<string> paths, string outputPath, int width, int height)
|
|
|
{
|
|
|
- if (!string.IsNullOrWhiteSpace(text))
|
|
|
+ using (var wand = BuildThumbCollageWand(paths, width, height))
|
|
|
{
|
|
|
- using (var wand = BuildThumbCollageWandWithText(paths, text, width, height))
|
|
|
- {
|
|
|
- wand.SaveImage(outputPath);
|
|
|
- }
|
|
|
- }
|
|
|
- else
|
|
|
- {
|
|
|
- using (var wand = BuildThumbCollageWand(paths, width, height))
|
|
|
- {
|
|
|
- wand.SaveImage(outputPath);
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- private MagickWand BuildThumbCollageWandWithText(List<string> paths, string text, int width, int height)
|
|
|
- {
|
|
|
- var inputPaths = ImageHelpers.ProjectPaths(paths, 8);
|
|
|
- using (var wandImages = new MagickWand(inputPaths.ToArray()))
|
|
|
- {
|
|
|
- var wand = new MagickWand(width, height);
|
|
|
- wand.OpenImage("gradient:#111111-#111111");
|
|
|
- using (var draw = new DrawingWand())
|
|
|
- {
|
|
|
- using (var fcolor = new PixelWand(ColorName.White))
|
|
|
- {
|
|
|
- draw.FillColor = fcolor;
|
|
|
- draw.Font = MontserratLightFont;
|
|
|
- draw.FontSize = 60;
|
|
|
- draw.FontWeight = FontWeightType.LightStyle;
|
|
|
- draw.TextAntialias = true;
|
|
|
- }
|
|
|
-
|
|
|
- var fontMetrics = wand.QueryFontMetrics(draw, text);
|
|
|
- var textContainerY = Convert.ToInt32(height * .165);
|
|
|
- wand.CurrentImage.AnnotateImage(draw, (width - fontMetrics.TextWidth) / 2, textContainerY, 0.0, text);
|
|
|
-
|
|
|
- var iSlice = Convert.ToInt32(width * .1166666667);
|
|
|
- int iTrans = Convert.ToInt32(height * 0.2);
|
|
|
- int iHeight = Convert.ToInt32(height * 0.46296296296296296296296296296296);
|
|
|
- var horizontalImagePadding = Convert.ToInt32(width * 0.0125);
|
|
|
-
|
|
|
- foreach (var element in wandImages.ImageList)
|
|
|
- {
|
|
|
- int iWidth = (int)Math.Abs(iHeight * element.Width / element.Height);
|
|
|
- element.Gravity = GravityType.CenterGravity;
|
|
|
- element.BackgroundColor = new PixelWand("none", 1);
|
|
|
- element.ResizeImage(iWidth, iHeight, FilterTypes.LanczosFilter);
|
|
|
- int ix = (int)Math.Abs((iWidth - iSlice) / 2);
|
|
|
- element.CropImage(iSlice, iHeight, ix, 0);
|
|
|
-
|
|
|
- element.ExtentImage(iSlice, iHeight, 0 - horizontalImagePadding, 0);
|
|
|
- }
|
|
|
-
|
|
|
- wandImages.SetFirstIterator();
|
|
|
- using (var wandList = wandImages.AppendImages())
|
|
|
- {
|
|
|
- wandList.CurrentImage.TrimImage(1);
|
|
|
- using (var mwr = wandList.CloneMagickWand())
|
|
|
- {
|
|
|
- using (var blackPixelWand = new PixelWand(ColorName.Black))
|
|
|
- {
|
|
|
- using (var greyPixelWand = new PixelWand(ColorName.Grey70))
|
|
|
- {
|
|
|
- mwr.CurrentImage.ResizeImage(wandList.CurrentImage.Width, (wandList.CurrentImage.Height / 2), FilterTypes.LanczosFilter, 1);
|
|
|
- mwr.CurrentImage.FlipImage();
|
|
|
-
|
|
|
- mwr.CurrentImage.AlphaChannel = AlphaChannelType.DeactivateAlphaChannel;
|
|
|
- mwr.CurrentImage.ColorizeImage(blackPixelWand, greyPixelWand);
|
|
|
-
|
|
|
- using (var mwg = new MagickWand(wandList.CurrentImage.Width, iTrans))
|
|
|
- {
|
|
|
- mwg.OpenImage("gradient:black-none");
|
|
|
- var verticalSpacing = Convert.ToInt32(height * 0.01111111111111111111111111111111);
|
|
|
- mwr.CurrentImage.CompositeImage(mwg, CompositeOperator.DstInCompositeOp, 0, verticalSpacing);
|
|
|
-
|
|
|
- wandList.AddImage(mwr);
|
|
|
- int ex = (int)(wand.CurrentImage.Width - mwg.CurrentImage.Width) / 2;
|
|
|
- wand.CurrentImage.CompositeImage(wandList.AppendImages(true), CompositeOperator.AtopCompositeOp, ex, Convert.ToInt32(height * 0.26851851851851851851851851851852));
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- return wand;
|
|
|
+ wand.SaveImage(outputPath);
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -211,81 +106,6 @@ namespace Emby.Drawing.ImageMagick
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- private MagickWand BuildPosterCollageWandWithText(List<string> paths, string label, int width, int height)
|
|
|
- {
|
|
|
- var inputPaths = ImageHelpers.ProjectPaths(paths, 4);
|
|
|
- using (var wandImages = new MagickWand(inputPaths.ToArray()))
|
|
|
- {
|
|
|
- var wand = new MagickWand(width, height);
|
|
|
- wand.OpenImage("gradient:#111111-#111111");
|
|
|
- using (var draw = new DrawingWand())
|
|
|
- {
|
|
|
- using (var fcolor = new PixelWand(ColorName.White))
|
|
|
- {
|
|
|
- draw.FillColor = fcolor;
|
|
|
- draw.Font = MontserratLightFont;
|
|
|
- draw.FontSize = 60;
|
|
|
- draw.FontWeight = FontWeightType.LightStyle;
|
|
|
- draw.TextAntialias = true;
|
|
|
- }
|
|
|
-
|
|
|
- var fontMetrics = wand.QueryFontMetrics(draw, label);
|
|
|
- var textContainerY = Convert.ToInt32(height * .165);
|
|
|
- wand.CurrentImage.AnnotateImage(draw, (width - fontMetrics.TextWidth) / 2, textContainerY, 0.0, label);
|
|
|
-
|
|
|
- var iSlice = Convert.ToInt32(width * 0.225);
|
|
|
- int iTrans = Convert.ToInt32(height * 0.2);
|
|
|
- int iHeight = Convert.ToInt32(height * 0.46296296296296296296296296296296);
|
|
|
- var horizontalImagePadding = Convert.ToInt32(width * 0.0275);
|
|
|
-
|
|
|
- foreach (var element in wandImages.ImageList)
|
|
|
- {
|
|
|
- int iWidth = (int)Math.Abs(iHeight * element.Width / element.Height);
|
|
|
- element.Gravity = GravityType.CenterGravity;
|
|
|
- element.BackgroundColor = new PixelWand("none", 1);
|
|
|
- element.ResizeImage(iWidth, iHeight, FilterTypes.LanczosFilter);
|
|
|
- int ix = (int)Math.Abs((iWidth - iSlice) / 2);
|
|
|
- element.CropImage(iSlice, iHeight, ix, 0);
|
|
|
-
|
|
|
- element.ExtentImage(iSlice, iHeight, 0 - horizontalImagePadding, 0);
|
|
|
- }
|
|
|
-
|
|
|
- wandImages.SetFirstIterator();
|
|
|
- using (var wandList = wandImages.AppendImages())
|
|
|
- {
|
|
|
- wandList.CurrentImage.TrimImage(1);
|
|
|
- using (var mwr = wandList.CloneMagickWand())
|
|
|
- {
|
|
|
- using (var blackPixelWand = new PixelWand(ColorName.Black))
|
|
|
- {
|
|
|
- using (var greyPixelWand = new PixelWand(ColorName.Grey70))
|
|
|
- {
|
|
|
- mwr.CurrentImage.ResizeImage(wandList.CurrentImage.Width, (wandList.CurrentImage.Height / 2), FilterTypes.LanczosFilter, 1);
|
|
|
- mwr.CurrentImage.FlipImage();
|
|
|
-
|
|
|
- mwr.CurrentImage.AlphaChannel = AlphaChannelType.DeactivateAlphaChannel;
|
|
|
- mwr.CurrentImage.ColorizeImage(blackPixelWand, greyPixelWand);
|
|
|
-
|
|
|
- using (var mwg = new MagickWand(wandList.CurrentImage.Width, iTrans))
|
|
|
- {
|
|
|
- mwg.OpenImage("gradient:black-none");
|
|
|
- var verticalSpacing = Convert.ToInt32(height * 0.01111111111111111111111111111111);
|
|
|
- mwr.CurrentImage.CompositeImage(mwg, CompositeOperator.DstInCompositeOp, 0, verticalSpacing);
|
|
|
-
|
|
|
- wandList.AddImage(mwr);
|
|
|
- int ex = (int)(wand.CurrentImage.Width - mwg.CurrentImage.Width) / 2;
|
|
|
- wand.CurrentImage.CompositeImage(wandList.AppendImages(true), CompositeOperator.AtopCompositeOp, ex, Convert.ToInt32(height * 0.26851851851851851851851851851852));
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- return wand;
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
private MagickWand BuildThumbCollageWand(List<string> paths, int width, int height)
|
|
|
{
|
|
|
var inputPaths = ImageHelpers.ProjectPaths(paths, 4);
|
|
@@ -352,148 +172,29 @@ namespace Emby.Drawing.ImageMagick
|
|
|
}
|
|
|
|
|
|
private MagickWand BuildSquareCollageWand(List<string> paths, int width, int height)
|
|
|
- {
|
|
|
- var inputPaths = ImageHelpers.ProjectPaths(paths, 3);
|
|
|
- using (var wandImages = new MagickWand(inputPaths.ToArray()))
|
|
|
- {
|
|
|
- var wand = new MagickWand(width, height);
|
|
|
- wand.OpenImage("gradient:#111111-#111111");
|
|
|
- using (var draw = new DrawingWand())
|
|
|
- {
|
|
|
- var iSlice = Convert.ToInt32(width * .32);
|
|
|
- int iTrans = Convert.ToInt32(height * .25);
|
|
|
- int iHeight = Convert.ToInt32(height * .68);
|
|
|
- var horizontalImagePadding = Convert.ToInt32(width * 0.02);
|
|
|
-
|
|
|
- foreach (var element in wandImages.ImageList)
|
|
|
- {
|
|
|
- using (var blackPixelWand = new PixelWand(ColorName.Black))
|
|
|
- {
|
|
|
- int iWidth = (int)Math.Abs(iHeight * element.Width / element.Height);
|
|
|
- element.Gravity = GravityType.CenterGravity;
|
|
|
- element.BackgroundColor = blackPixelWand;
|
|
|
- element.ResizeImage(iWidth, iHeight, FilterTypes.LanczosFilter);
|
|
|
- int ix = (int)Math.Abs((iWidth - iSlice) / 2);
|
|
|
- element.CropImage(iSlice, iHeight, ix, 0);
|
|
|
-
|
|
|
- element.ExtentImage(iSlice, iHeight, 0 - horizontalImagePadding, 0);
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- wandImages.SetFirstIterator();
|
|
|
- using (var wandList = wandImages.AppendImages())
|
|
|
- {
|
|
|
- wandList.CurrentImage.TrimImage(1);
|
|
|
- using (var mwr = wandList.CloneMagickWand())
|
|
|
- {
|
|
|
- using (var blackPixelWand = new PixelWand(ColorName.Black))
|
|
|
- {
|
|
|
- using (var greyPixelWand = new PixelWand(ColorName.Grey70))
|
|
|
- {
|
|
|
- mwr.CurrentImage.ResizeImage(wandList.CurrentImage.Width, (wandList.CurrentImage.Height / 2), FilterTypes.LanczosFilter, 1);
|
|
|
- mwr.CurrentImage.FlipImage();
|
|
|
-
|
|
|
- mwr.CurrentImage.AlphaChannel = AlphaChannelType.DeactivateAlphaChannel;
|
|
|
- mwr.CurrentImage.ColorizeImage(blackPixelWand, greyPixelWand);
|
|
|
-
|
|
|
- using (var mwg = new MagickWand(wandList.CurrentImage.Width, iTrans))
|
|
|
- {
|
|
|
- mwg.OpenImage("gradient:black-none");
|
|
|
- var verticalSpacing = Convert.ToInt32(height * 0.01111111111111111111111111111111);
|
|
|
- mwr.CurrentImage.CompositeImage(mwg, CompositeOperator.CopyOpacityCompositeOp, 0, verticalSpacing);
|
|
|
-
|
|
|
- wandList.AddImage(mwr);
|
|
|
- int ex = (int)(wand.CurrentImage.Width - mwg.CurrentImage.Width) / 2;
|
|
|
- wand.CurrentImage.CompositeImage(wandList.AppendImages(true), CompositeOperator.AtopCompositeOp, ex, Convert.ToInt32(height * .03));
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- return wand;
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- private MagickWand BuildSquareCollageWandWithText(List<string> paths, string label, int width, int height)
|
|
|
{
|
|
|
var inputPaths = ImageHelpers.ProjectPaths(paths, 4);
|
|
|
- using (var wandImages = new MagickWand(inputPaths.ToArray()))
|
|
|
+ var outputWand = new MagickWand(width, height, new PixelWand("none", 1));
|
|
|
+ var imageIndex = 0;
|
|
|
+ var cellWidth = width/2;
|
|
|
+ var cellHeight = height/2;
|
|
|
+ for (var x = 0; x < 2; x++)
|
|
|
{
|
|
|
- var wand = new MagickWand(width, height);
|
|
|
- wand.OpenImage("gradient:#111111-#111111");
|
|
|
- using (var draw = new DrawingWand())
|
|
|
+ for (var y = 0; y < 2; y++)
|
|
|
{
|
|
|
- using (var fcolor = new PixelWand(ColorName.White))
|
|
|
- {
|
|
|
- draw.FillColor = fcolor;
|
|
|
- draw.Font = MontserratLightFont;
|
|
|
- draw.FontSize = 60;
|
|
|
- draw.FontWeight = FontWeightType.LightStyle;
|
|
|
- draw.TextAntialias = true;
|
|
|
- }
|
|
|
-
|
|
|
- var fontMetrics = wand.QueryFontMetrics(draw, label);
|
|
|
- var textContainerY = Convert.ToInt32(height * .165);
|
|
|
- wand.CurrentImage.AnnotateImage(draw, (width - fontMetrics.TextWidth) / 2, textContainerY, 0.0, label);
|
|
|
-
|
|
|
- var iSlice = Convert.ToInt32(width * .225);
|
|
|
- int iTrans = Convert.ToInt32(height * 0.2);
|
|
|
- int iHeight = Convert.ToInt32(height * 0.46296296296296296296296296296296);
|
|
|
- var horizontalImagePadding = Convert.ToInt32(width * 0.02);
|
|
|
-
|
|
|
- foreach (var element in wandImages.ImageList)
|
|
|
- {
|
|
|
- int iWidth = (int)Math.Abs(iHeight * element.Width / element.Height);
|
|
|
- element.Gravity = GravityType.CenterGravity;
|
|
|
- element.BackgroundColor = new PixelWand("none", 1);
|
|
|
- element.ResizeImage(iWidth, iHeight, FilterTypes.LanczosFilter);
|
|
|
- int ix = (int)Math.Abs((iWidth - iSlice) / 2);
|
|
|
- element.CropImage(iSlice, iHeight, ix, 0);
|
|
|
-
|
|
|
- element.ExtentImage(iSlice, iHeight, 0 - horizontalImagePadding, 0);
|
|
|
- }
|
|
|
-
|
|
|
- wandImages.SetFirstIterator();
|
|
|
- using (var wandList = wandImages.AppendImages())
|
|
|
+ using (var temp = new MagickWand(inputPaths[imageIndex]))
|
|
|
{
|
|
|
- wandList.CurrentImage.TrimImage(1);
|
|
|
- using (var mwr = wandList.CloneMagickWand())
|
|
|
- {
|
|
|
- using (var blackPixelWand = new PixelWand(ColorName.Black))
|
|
|
- {
|
|
|
- using (var greyPixelWand = new PixelWand(ColorName.Grey70))
|
|
|
- {
|
|
|
- mwr.CurrentImage.ResizeImage(wandList.CurrentImage.Width, (wandList.CurrentImage.Height / 2), FilterTypes.LanczosFilter, 1);
|
|
|
- mwr.CurrentImage.FlipImage();
|
|
|
-
|
|
|
- mwr.CurrentImage.AlphaChannel = AlphaChannelType.DeactivateAlphaChannel;
|
|
|
- mwr.CurrentImage.ColorizeImage(blackPixelWand, greyPixelWand);
|
|
|
-
|
|
|
- using (var mwg = new MagickWand(wandList.CurrentImage.Width, iTrans))
|
|
|
- {
|
|
|
- mwg.OpenImage("gradient:black-none");
|
|
|
- var verticalSpacing = Convert.ToInt32(height * 0.01111111111111111111111111111111);
|
|
|
- mwr.CurrentImage.CompositeImage(mwg, CompositeOperator.DstInCompositeOp, 0, verticalSpacing);
|
|
|
-
|
|
|
- wandList.AddImage(mwr);
|
|
|
- int ex = (int)(wand.CurrentImage.Width - mwg.CurrentImage.Width) / 2;
|
|
|
- wand.CurrentImage.CompositeImage(wandList.AppendImages(true), CompositeOperator.AtopCompositeOp, ex, Convert.ToInt32(height * 0.26851851851851851851851851851852));
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
+ temp.CurrentImage.ScaleImage(cellWidth, cellHeight);
|
|
|
+ // draw this image into the strip at the next position
|
|
|
+ var xPos = x*cellWidth;
|
|
|
+ var yPos = y*cellHeight;
|
|
|
+ outputWand.CurrentImage.CompositeImage(temp, CompositeOperator.OverCompositeOp, xPos, yPos);
|
|
|
}
|
|
|
+ imageIndex++;
|
|
|
}
|
|
|
-
|
|
|
- return wand;
|
|
|
}
|
|
|
- }
|
|
|
|
|
|
- private string MontserratLightFont
|
|
|
- {
|
|
|
- get { return PlayedIndicatorDrawer.ExtractFont("MontserratLight.otf", _appPaths, _fileSystem); }
|
|
|
+ return outputWand;
|
|
|
}
|
|
|
}
|
|
|
}
|