예제 #1
0
 public ProfileImage(
     ProfileImageType type,
     SafeBitmapWithData image,
     int srcX,
     int srcY,
     int srcWidth,
     int srcHeight)
 {
     this.m_type  = type;
     this.m_image = image.Clone(srcX, srcY, srcWidth, srcHeight, this.Width, this.Height);
 }
예제 #2
0
 public ProfileImage(ProfileImageType type, SafeBitmapWithData image)
 {
     this.m_type  = type;
     this.m_image = image;
 }