S
skyherohuang
Unregistered / Unconfirmed
GUEST, unregistred user!
各位父老乡亲:
在图片式报表中如何控制图片输出的比例,我也经有了代码,但不知道放在哪边比较合适或
有其它的方法???多指教!!
以下是我写的代码
var
bmp:tbitmap;
jpegimage1:Tjpegimage;
begin
if quof<>nil then
begin
qrImage2.picture.bitmap:=nil;
if table1['photo']<>'' then
//tabel1为数据表,其中含有一个图像字段
begin
jpegimage1:=tjpegimage.create;
bmp:=tbitmap.create;
jpegimage1.Assign(table1.FieldByName('photo'));
bmp.Height :=qrimage2.height;//输出图片的高
bmp.Width :=round((jpegimage1.width /jpegimage1.Height)* bmp.Height);//输出图片的宽
bmp.Canvas.StretchDraw(rect(0,0,bmp.Width,bmp.Height),jpegimage1);
qrimage2.Width:=bmp.Width;//image2的宽,它的高不变..
qriimage2.Picture.bitmap.Assign(bmp);
bmp.free;
jpegimage1.free;
end;
end;
在图片式报表中如何控制图片输出的比例,我也经有了代码,但不知道放在哪边比较合适或
有其它的方法???多指教!!
以下是我写的代码
var
bmp:tbitmap;
jpegimage1:Tjpegimage;
begin
if quof<>nil then
begin
qrImage2.picture.bitmap:=nil;
if table1['photo']<>'' then
//tabel1为数据表,其中含有一个图像字段
begin
jpegimage1:=tjpegimage.create;
bmp:=tbitmap.create;
jpegimage1.Assign(table1.FieldByName('photo'));
bmp.Height :=qrimage2.height;//输出图片的高
bmp.Width :=round((jpegimage1.width /jpegimage1.Height)* bmp.Height);//输出图片的宽
bmp.Canvas.StretchDraw(rect(0,0,bmp.Width,bmp.Height),jpegimage1);
qrimage2.Width:=bmp.Width;//image2的宽,它的高不变..
qriimage2.Picture.bitmap.Assign(bmp);
bmp.free;
jpegimage1.free;
end;
end;