The Idea
Me and a friend want to to play a joke on another friend and make a delphi application that takes screen shots of our friends screen and then send it to my computer.
The Question
The problem is that me and my friend have no idea how to send the image to my computer. Any idea how?
I have tried what GolezTrol said
This is the code for that (starts at line 27)
procedure TForm1.Button1Click(Sender: TObject);
var
Params: TIMultipartFormDataStream;
Response1: TStringStream;
begin
try
Params := TIMultipartFormDataStream.create;
Response1 := TStringStream.Create;
try
Params.AddFile('file', 'C:\temp\YourTempImageName.jpg', 'image/jpg');
IdHTTP1.Post('http://localhost/uploadimage.php', Params, Response1);
finally
Params.Free;
Response1.Free;
end;
end;
(I'm busy trying to make it work.)
Extra Information After reconsidering I don't really see the funny side anymore. By the way I was not going to steel my friends identity. After telling him what we wanted to do he challenged us to try (He bet we couldn't do it).
autoexec.bat, there wasn't an internet and wasn't as much identity theft. Today is different, and so are the laws in many places. – Ken White Nov 5 '12 at 0:08