Home General
New Blog Posts: Merging Reports - Part 1 and Part 2

Turning Image RB

edited June 2008 in General
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

Comments

  • edited June 2008
    Hi Rodrigo,

    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

    Best Regards,

    Nico Cizik
    Digital Metaphors
    http://www.digital-metaphors.com
  • edited June 2008
    there are image libraries for Delphi--you may want to do some research in
    the third party newsgroup.

    Ed Dressel
    Team DM

  • edited June 2008
    Hi,

    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
This discussion has been closed.