Page 1 of 1

Save Image - Add Attributes (ID)

Posted: Thu Sep 18, 2014 4:29 pm
by Testomatico
Hello,
is it possible to add additional attributes to the img-tag?
I need to set an id (<IMG id="blabla" ....>)

Best regards
Testo

Posted: Thu Sep 18, 2014 6:07 pm
by Sergey Tkachenko
There is no simple way to do it.
It is possible by implementing your own item class, inherited from TRVGraphicItemInfo, with overridden GetMoreImgAttributes method.

Re: Save Image - Add Attributes (ID)

Posted: Thu Mar 13, 2025 4:24 pm
by jonjon
Do you have an example on how to replace the TRVGraphicItemInfo class with a custom one so that we can override its GetMoreImgAttributes method ?

Re: Save Image - Add Attributes (ID)

Posted: Mon Mar 17, 2025 3:56 pm
by Sergey Tkachenko
In the current version, you cannot replace classes used to represent image items. They are always TRVGraphicItemInfo and TRVGraphicHotItemInfo. You can only create your own classes based on these classes, override some methods, assign new StyleNo values, and use them. If you do everything correctly, you will be able to save and load items of your classes from RVF (and of course, save to other formats). However, when images are inserted from RTF, DocX, HTML or Clipboard, or from a file using RichViewActions, they still will be inserted as TRVGraphicItemInfo or TRVGraphicHotItemInfo.

In the next update, there will be a way to replace classes used to represent image items. Of course, these new classes must be inherited from TRVGraphicItemInfo. There will be a new RVItemFactory singleton object with properties GraphicItemClass: TRVGraphicItemInfoClass and HotGraphicItemClass: TRVGraphicItemInfoClass. If you assign your classes to these properties, your classes will be used everywhere for images.