1
0
Fork 0
mirror of https://gitlab.com/sbrl/GalleryShare.git synced 2018-06-12 22:45:16 +00:00

Begin implementing error images

This commit is contained in:
Starbeamrainbowlabs 2016-07-10 20:50:29 +01:00
parent dd10edb281
commit 4f1fc0f211

View file

@ -12,6 +12,7 @@ namespace GalleryShare
{ {
public static void GenerateThumbnailPng(string imagePath, Size thumbnailBounds, Stream outputStream) public static void GenerateThumbnailPng(string imagePath, Size thumbnailBounds, Stream outputStream)
{ {
try {
using (Bitmap rawImage = new Bitmap(imagePath)) { using (Bitmap rawImage = new Bitmap(imagePath)) {
float scaleFactor = Math.Min( float scaleFactor = Math.Min(
thumbnailBounds.Width / (float)rawImage.Width, thumbnailBounds.Width / (float)rawImage.Width,
@ -35,6 +36,11 @@ namespace GalleryShare
} }
} }
} }
catch (Exception error)
{
throw new NotImplementedException("Error images haven't been implemented yet.", error);
}
}
} }
} }