Bitmap images (development)

From FreeMind
Revision as of 08:40, 13 August 2007 by Danielpolansky (talk | contribs)
Jump to navigationJump to search

There is a requirement to let mind maps contain bitmap images. Word processors store their bitmap images in their files.

The storage of bitmap images

Solution 1: Storing the images in the XML

The images shall be stored at as binary data in a node, like

<node TYPE="image" BINARY="x4543edvc...45ert"/>

Upon creation of node view, temporary file shall be created, and HTML viewer of the JLabel shall point to that file.

Upon editing, external image editor shall be opened to edit the temporary file, like Gimp.

Evaluation

  • Pro: Mind map is still stored as one XML file.
  • Pro: The existing JLabel of node view can be used with very little modification.
  • Con: The design for applet is missing.
  • Model: XML stored by certain versions of Microsoft Word.

Solution 2: Storing the images like ...

...

Requirements

  • The mind maps shall be fast to load and save.
  • The image function shall work in FreeMind applet.