Hi,
Is there a way to set a maximum width size for an image so that when inserting an image it automatically resizes the image to that maximum.
Thanks,
Carlos Castro
Maximum Image Size
-
- Site Admin
- Posts: 17530
- Joined: Sat Aug 27, 2005 10:28 am
- Contact:
Well, you can try to use OnItemAction event for this.
Code: Select all
uses RVItem;
if (ItemAction=rviaInserted) and (Item is TRVGraphicItemInfo) then begin
Item.ImageWidth := ...
Item.ImageHeight := ...
end;
-
- Posts: 13
- Joined: Fri Feb 24, 2006 5:48 pm
Thanks Sergey,
I solved the problem another way, replacing the insert image dialog with one developed by me in which you choose the image and the program automatically resizes it to my maximum width.
The problem of doing it in the editor is that the image is only resized in html code and not in the real size of the image.
Thanks anyway for your answer.
I solved the problem another way, replacing the insert image dialog with one developed by me in which you choose the image and the program automatically resizes it to my maximum width.
The problem of doing it in the editor is that the image is only resized in html code and not in the real size of the image.
Thanks anyway for your answer.