Lotus Notes DXL Notesbitmap to GIF

后端 未结 3 1650
醉梦人生
醉梦人生 2021-01-27 16:16

I am converting lotus notes document library inline images to gif images using dxl logic of reading Filedata and converting it to base64 byte[] and creating a gif images. The co

3条回答
  •  渐次进展
    2021-01-27 17:01

    From http://publib.boulder.ibm.com/infocenter/domhelp/v8r0/index.jsp?topic=%2Fcom.ibm.designer.domino.main.doc%2FH_NOTESBITMAP_ELEMENT_XML.html

    notesbitmap element

    Represents a proprietary Notes bitmap image. Images stored in an NSF file are comprised of base64 content, which is a series of CD (composite data) records representing a bitmap.

    Therefore, if you run

    xP8gAAEAAQAAAAgAAAAAAAAAAAAAAAAAU1RHNjI2NTeVACYAAAAAAAAAAAAAAAAAAAAAAAAA0wF/ AAAAAAAAAAAAAAAAAA==
    

    though a base64 decoder, you get

    `Äÿ ������������������STG62657�&�������������������Ó�������������
    

    And you will find "STG62657" further down in the DXL

    
    
    
    
    
    

    Which you can decode ....

    提交回复
    热议问题