Thanks.
I figured it out with what you mentioned :)
I figured it out with what you mentioned :)
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
var
img : timagedata;
img1 : timagedata;
img2 : timagedata;
img3 : timagedata;
begin
InitImage(Img);
InitImage(Img1);
InitImage(Img2);
loadimagefromfile(im1,img1);
loadimagefromfile(im2,img2);
newimage(214,384,ifDefault,img);
imaging.CopyRect(img1,0,0,img1.width,img1.Height,img,0,0);
imaging.CopyRect(img2,0,0,img2.width,img2.Height,img,0,192);
saveimagetofile(finalimage,img);
InitImage(Img);
InitImage(Img2);
loadimagefromfile('c:\icon1.png',img);
imaging.CopyRect(img,0,0,214,200,img2,110,110);
saveimagetofile('c:\11.png',img2);
saveimagetofile('c:\12.png',img);
FImage := TSingleImage.Create;
ConvertBitmapToImage(Timage1Picture.Bitmap, FImage);
FImage.SaveToFile('c:\test.png');
Page created in 0.011 seconds with 21 queries.