Fix: Device Model Image Size: 256px

This commit is contained in:
Gary Sharp
2013-04-30 12:38:28 +10:00
parent b17ed91fb0
commit e04296bbed
3 changed files with 3 additions and 3 deletions
@@ -17,7 +17,7 @@ namespace Disco.BI.Extensions
{
using (Bitmap inputBitmap = new Bitmap(ImageStream))
{
using (Image outputBitmap = inputBitmap.ResizeImage(255, 255))
using (Image outputBitmap = inputBitmap.ResizeImage(256, 256))
{
using (MemoryStream ms = new MemoryStream())
{