Advertisement
cansik

Untitled

Jun 17th, 2011
287
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.35 KB | None | 0 0
  1. public Bitmap PatchImage(Bitmap image, Size frameSize, Color borderColor)
  2.         {
  3.             Bitmap patchedBmp = this.ResizeImage(image, frameSize, true);
  4.             patchedBmp = this.CropImage(patchedBmp, new Rectangle(new Point(0, 0), frameSize));
  5.             patchedBmp = this.FrameImage(image, 2, borderColor);
  6.             return patchedBmp;
  7.         }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement