Partial Image Stretch : Image : Graphics C# Source Code


Custom Search

C# Source Code » Graphics » Image »

 

Partial Image Stretch








    
 

using System;
using System.Drawing;
using System.Windows.Forms;
   
class PartialImageStretch: Form
{
     Image image = Image.FromFile("Color.jpg");
   
     public static void Main()
     {
          Application.Run(new PartialImageStretch());
     }
     public PartialImageStretch()
     {
          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 rectSrc = new Rectangle(95, 5, 50, 55);
          Rectangle rectDst = new Rectangle( 0, 0, cx, cy);
   
          grfx.DrawImage(image, rectDst, rectSrc, GraphicsUnit.Pixel);
     }
}

 
    
   
  
   







HTML code for linking to this page:

Follow Navioo On Twitter

C# Source Code

 Navioo Graphics
» Image