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);
}
}