Turning Image RB
Delphi 7.0
Report Builder Professional Version 7.03
Hi
I have to print a report turning the image.
The image is stored in the vertical line, however in the impression it will
have to leave in the horizontal line.
The Image component does not allow to make that.
Any new version makes this?
Thanks, Rodrigo Vieira
Report Builder Professional Version 7.03
Hi
I have to print a report turning the image.
The image is stored in the vertical line, however in the impression it will
have to leave in the horizontal line.
The Image component does not allow to make that.
Any new version makes this?
Thanks, Rodrigo Vieira
This discussion has been closed.
Comments
ReportBuilder does not have the ability to rotate an image. I would suggest
using an image editor such as Photoshop to create two versions of the image
and place both of them on the report. Then toggle the Visibility property
of each image component based on which direction you would like to see it.
--
Regards,
Nico Cizik
Digital Metaphors
http://www.digital-metaphors.com
Nico Cizik
Digital Metaphors
http://www.digital-metaphors.com
the third party newsgroup.
Ed Dressel
Team DM
I did use from ImageEN component for mirror image and copy to for
example 'c:\output.jpg' and did load again(with one Image save in DB
only!):
// Mirror for RB DBImage
Mirrored_ImageEn.Assign( ImageEn1 );
Mirrored_ImageEn.Proc.Flip(fdHorizontal);
Mirrored_ImageEn.IO.savetoFile('c:\output.jpg');
MainForm.ppImage2.Picture.LoadFromFile('c:\output.jpg');
MainForm.ppReport1.Print;
in
it
--- posted by geoForum on http://delphi.newswhat.com