Is it possible to run a script that will loop through documents in a view and export a picture that resides in a rich text field to a jpg or bmp file? Can this be done with lotusscript? If not, is there a third party product available? I need to give each exported file a unique name based on a field located on the form too. Any help would be greatly appreciated. Thanks
Subject: Export rich text to image file
In order to export inline images you have to resort to DXL. The image data is surrounded by tags so you can pick them out. I wrote an agent to do exactly this, but it was working for a company that I am no longer at, so unfortunately I cannot provide you with any code.
Subject: RE: Export rich text to image file
Turn clipboard image into GIF attachment The download associated with this blog entry contains code that converts a document to DXL, picks out GIF image data, and writes it to a file. It shouldn’t be too difficult for you to adapt this to store JPEGs also.
Subject: RE: Export rich text to image file
Thanks, this wil give me something to work with. I really appreciate your response.