//---------------------------------------------------------------------------
#include <vcl.h>
#pragma hdrstop
#include "Unit1.h"
//---------------------------------------------------------------------------
#pragma package(smart_init)
#pragma resource "*.dfm"
TForm1 *Form1;
//---------------------------------------------------------------------------
__fastcall TForm1::TForm1(TComponent* Owner)
: TForm(Owner)
{
}
//---------------------------------------------------------------------------
void __fastcall TForm1::Button3Click(TObject *Sender)
{
int i,j;
int ht=Image1->Height;
int wt=Image1->Width;
int tx=StrToInt(Edit1->Text);
int ty=StrToInt(Edit2->Text);
for(i=0;i<wt;i++)
{
for(j=0;j<ht;j++)
{
Image2->Canvas->Pixels[i+tx][j+ty]=Image1->Canvas->Pixels[i][j];
}
}
}
//---------------------------------------------------------------------------
No comments:
Post a Comment