Esempio n. 1
0
 public ImageRenderer(IImageRendererSource source, int renderWidth, int renderHeight, ImageFileFormat outputFormat, Color backgroundColor)
 {
     _Source          = source;
     _RenderWidth     = renderWidth;
     _RenderHeight    = renderHeight;
     _OutputFormat    = outputFormat;
     _BackgroundColor = backgroundColor;
 }
 public ImageRenderer(IImageRendererSource source, int renderWidth, int renderHeight, ImageFileFormat outputFormat, Color backgroundColor)
 {
     _Source = source;
     _RenderWidth = renderWidth;
     _RenderHeight = renderHeight;
     _OutputFormat = outputFormat;
     _BackgroundColor = backgroundColor;
 }
Esempio n. 3
0
 public ImageRenderer(IImageRendererSource source, int renderWidth, int renderHeight) : this(source, renderWidth, renderHeight, ImageFileFormat.Png, Color.Transparent)
 {
 }
 public ImageRenderer(IImageRendererSource source, int renderWidth, int renderHeight)
     : this(source, renderWidth, renderHeight, ImageFileFormat.Png, Color.Transparent)
 {
 }