Save Image - Add Attributes (ID)

General TRichView support forum. Please post your questions here
Post Reply
Testomatico
Posts: 15
Joined: Sat Mar 22, 2014 7:47 pm

Save Image - Add Attributes (ID)

Post 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
Sergey Tkachenko
Site Admin
Posts: 17749
Joined: Sat Aug 27, 2005 10:28 am
Contact:

Post 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.
jonjon
Posts: 475
Joined: Sat Aug 27, 2005 4:19 pm

Re: Save Image - Add Attributes (ID)

Post 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 ?
Sergey Tkachenko
Site Admin
Posts: 17749
Joined: Sat Aug 27, 2005 10:28 am
Contact:

Re: Save Image - Add Attributes (ID)

Post 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.
Post Reply