aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Implementations/Photos/BaseDynamicImageProvider.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2015-07-29 16:31:15 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2015-07-29 16:31:15 -0400
commit8f75454d76c9c21018476fd278f91ae69f9268c0 (patch)
tree34a873aaf8ffd7420ca77a6f2e052a5d3dc30c75 /MediaBrowser.Server.Implementations/Photos/BaseDynamicImageProvider.cs
parent1f6b5a8c7c049bea309351dd495d99ec21eb32cb (diff)
update image processing
Diffstat (limited to 'MediaBrowser.Server.Implementations/Photos/BaseDynamicImageProvider.cs')
-rw-r--r--MediaBrowser.Server.Implementations/Photos/BaseDynamicImageProvider.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/MediaBrowser.Server.Implementations/Photos/BaseDynamicImageProvider.cs b/MediaBrowser.Server.Implementations/Photos/BaseDynamicImageProvider.cs
index eb25c7d79..642753fa6 100644
--- a/MediaBrowser.Server.Implementations/Photos/BaseDynamicImageProvider.cs
+++ b/MediaBrowser.Server.Implementations/Photos/BaseDynamicImageProvider.cs
@@ -118,7 +118,7 @@ namespace MediaBrowser.Server.Implementations.Photos
protected Task<bool> CreateThumbCollage(IHasImages primaryItem, List<BaseItem> items, string outputPath, bool drawText)
{
- return CreateCollage(primaryItem, items, outputPath, 960, 540, drawText, primaryItem.Name);
+ return CreateCollage(primaryItem, items, outputPath, 640, 360, drawText, primaryItem.Name);
}
protected virtual IEnumerable<string> GetStripCollageImagePaths(IHasImages primaryItem, IEnumerable<BaseItem> items)
@@ -130,12 +130,12 @@ namespace MediaBrowser.Server.Implementations.Photos
protected Task<bool> CreatePosterCollage(IHasImages primaryItem, List<BaseItem> items, string outputPath)
{
- return CreateCollage(primaryItem, items, outputPath, 600, 900, true, primaryItem.Name);
+ return CreateCollage(primaryItem, items, outputPath, 400, 600, true, primaryItem.Name);
}
protected Task<bool> CreateSquareCollage(IHasImages primaryItem, List<BaseItem> items, string outputPath, bool drawText)
{
- return CreateCollage(primaryItem, items, outputPath, 800, 800, drawText, primaryItem.Name);
+ return CreateCollage(primaryItem, items, outputPath, 600, 600, drawText, primaryItem.Name);
}
protected Task<bool> CreateThumbCollage(IHasImages primaryItem, List<BaseItem> items, string outputPath, int width, int height, bool drawText, string text)