Draw Partial Image : Image : Graphics C# Source Code


Custom Search

C# Source Code » Graphics » Image »

 

Draw Partial Image








    
 


using System;
using System.Drawing;
using System.Windows.Forms;
   
class PartialImage: Form
{
     Image image = Image.FromFile("Color.jpg");
   
     public static void Main()
     {
          Application.Run(new PartialImage());
     }
     public PartialImage()
     {
          ResizeRedraw = true; 
     }
     protected override void OnPaint(PaintEventArgs pea)
     {
          DoPage(pea.Graphics, ForeColor,ClientSize.Width, ClientSize.Height);
     }      
     protected void DoPage(Graphics grfx, Color clr, int cx, int cy)
     {
          Rectangle rect = new Rectangle(95, 5, 50, 55);
   
          grfx.DrawImage(image, 0, 0, rect, GraphicsUnit.Pixel);
     }
}

 
    
   
  
   







HTML code for linking to this page:

Follow Navioo On Twitter

C# Source Code

 Navioo Graphics
» Image