added new image params & GameSystem constants

This commit is contained in:
Luke Pulverenti
2013-10-02 11:32:11 -04:00
parent f87454336e
commit 7dae0069d6
16 changed files with 155 additions and 54 deletions

View File

@@ -5,15 +5,16 @@ namespace MediaBrowser.Server.Implementations.Drawing
public class WatchedIndicatorDrawer
{
private const int IndicatorHeight = 50;
public const int IndicatorWidth = 50;
private const int FontSize = 50;
public void Process(Graphics graphics, Size imageSize)
{
var x = imageSize.Width - IndicatorHeight;
var x = imageSize.Width - IndicatorWidth;
using (var backdroundBrush = new SolidBrush(Color.FromArgb(225, 204, 51, 51)))
{
graphics.FillRectangle(backdroundBrush, x, 0, IndicatorHeight, IndicatorHeight);
graphics.FillRectangle(backdroundBrush, x, 0, IndicatorWidth, IndicatorHeight);
const string text = "a";