コード例 #1
0
ファイル: BitmapContent.cs プロジェクト: kouweizhong/relib
 public BitmapContent(int width, int height,
                      IImageCodecInfo codecInfo, IGraphicsDrawing[] drawings)
 {
     m_width     = width;
     m_height    = height;
     m_codecInfo = codecInfo;
     m_drawings  = drawings;
 }
コード例 #2
0
ファイル: BitmapContent.cs プロジェクト: kouweizhong/relib
 public BitmapContent(CaptchaOptions options,
                      IImageCodecInfo codecInfo, IGraphicsDrawing[] drawings)
     : this(options.Width, options.Height, codecInfo, drawings)
 {
 }