S
sohuandsina
Unregistered / Unconfirmed
GUEST, unregistred user!
//imgedit,imgscan为kordak的扫描显示控件;
procedure TForm1.Button1Click(Sender: TObject);
begin
imgedit1.zoom:=100;
scan.OpenScanner;
scan.StartScan;
scan.CloseScanner;
///此处也是正确的。
end;
procedure TForm1.Button6Click(Sender: TObject);
begin
imgedit1.DrawSelectionRect(0,0,0,0);//进行图象局部选择
imgedit1.Clipboardcopy(imgedit1.left,imgedit1.top,imgedit1.width,imgedit1.height);
end;
//此处已经把imgedit1的显示区域拷贝到粘贴版
//因为我打开画笔能粘贴到图象
procedure TForm1.Button3Click(Sender: TObject);
begin
end;
///请问有没有人做过类似的程序。把已经拷贝到粘贴板的图象显示在image里面。
谢谢
procedure TForm1.Button1Click(Sender: TObject);
begin
imgedit1.zoom:=100;
scan.OpenScanner;
scan.StartScan;
scan.CloseScanner;
///此处也是正确的。
end;
procedure TForm1.Button6Click(Sender: TObject);
begin
imgedit1.DrawSelectionRect(0,0,0,0);//进行图象局部选择
imgedit1.Clipboardcopy(imgedit1.left,imgedit1.top,imgedit1.width,imgedit1.height);
end;
//此处已经把imgedit1的显示区域拷贝到粘贴版
//因为我打开画笔能粘贴到图象
procedure TForm1.Button3Click(Sender: TObject);
begin
end;
///请问有没有人做过类似的程序。把已经拷贝到粘贴板的图象显示在image里面。
谢谢