有没有做过手签的大哥,说说思路!

lqdmafeng 2003-01-17 07:59:35
我想作个办公文档审批,需要领导手工签名,但是签好发送到WORD文档中的图片比一般拿手写得大得多,我想在手签软件发送以后到WORD文档接受之前或接收到之后能不能将其成比例缩小,如何解决?
...全文
33 5 打赏 收藏 转发到动态 举报
写回复
用AI写文章
5 条回复
切换为时间正序
请发表友善的回复…
发表回复
lqdmafeng 2003-01-19
  • 打赏
  • 举报
回复
谢谢大虾的帮助,本来打算迟两天再结,但是又要一周不能上网了,所以就结了。
yczyk 2003-01-19
  • 打赏
  • 举报
回复
不懂,我在学习中呢!不过,还想拿点分,先UP一下啦!
Billy_Chen28 2003-01-18
  • 打赏
  • 举报
回复
图片处理方法:
procedure TForm2.Zoom_In(Img: TImage;const Times:Integer);
var
Bmp :TBitmap;
begin
Bmp :=TBitmap.Create;
Bmp.Width :=Img.Picture.Bitmap.Width*Times;
Bmp.Height :=Img.Picture.Bitmap.Height*Times;
StretchBlt(Bmp.Canvas.Handle,0,0,Bmp.Width,Bmp.Height,
Img.Picture.Bitmap.Canvas.Handle,0,0,Img.Picture.Bitmap.Width,Img.Picture.Bitmap.Height,SRCCOPY);
Img.AutoSize :=True;
Img.Picture.Bitmap.Assign(Bmp);
SecondPic.Assign(Img.Picture);
Bmp.Free;
end;

procedure TForm2.Zoom_Out(Img: TImage;const Times:Integer);
var
Bmp :TBitmap;
begin
Bmp :=TBitmap.Create;
Bmp.Width :=Img.Picture.Bitmap.Width div Times;
Bmp.Height :=Img.Picture.Bitmap.Height div Times;
StretchBlt(Bmp.Canvas.Handle,0,0,Bmp.Width,Bmp.Height,
Img.Picture.Bitmap.Canvas.Handle,0,0,Img.Picture.Bitmap.Width,Img.Pi cture.Bitmap.Height,SRCCOPY);
Img.AutoSize :=True;
Img.Picture.Bitmap.Assign(Bmp);
SecondPic.Assign(Img.Picture);
Bmp.Free;
end;
naughtyboy 2003-01-18
  • 打赏
  • 举报
回复
楼上提供了一种方法
另外你看看能不能用OpenGL来实现
通过OpenGL改变像素间距
lqdmafeng 2003-01-17
  • 打赏
  • 举报
回复
为什么没有人说?是不明白我的意思吗?

1,184

社区成员

发帖
与我相关
我的任务
社区描述
Delphi GAME,图形处理/多媒体
社区管理员
  • GAME,图形处理/多媒体社区
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
暂无公告

试试用AI创作助手写篇文章吧