Ejemplo n.º 1
0
 public BitmapContent(int width, int height,
                      IImageCodecInfo codecInfo, IGraphicsDrawing[] drawings)
 {
     m_width     = width;
     m_height    = height;
     m_codecInfo = codecInfo;
     m_drawings  = drawings;
 }
Ejemplo n.º 2
0
 public BitmapContent(CaptchaOptions options,
                      IImageCodecInfo codecInfo, IGraphicsDrawing[] drawings)
     : this(options.Width, options.Height, codecInfo, drawings)
 {
 }