Bitmap images (development): Difference between revisions

From FreeMind
Jump to navigationJump to search
Line 17: Line 17:
====Evaluation====
====Evaluation====


* '''Pro:''' Mind map is still stored as one XML file.
* '''Pro:''' Mind map is still stored as one plain, unzipped XML file. Thus:
** ''Fast'' saving.
** Nice for storing in version control system like ''CVS'' or ''SVN''.
** Easy searching several maps using ''grep'' tool.
* '''Pro:''' The existing JLabel of node view can be used with very little modification.
* '''Pro:''' The existing JLabel of node view can be used with very little modification.
* '''Con:''' The design for applet is missing.
* '''Con:''' The design for applet is missing.

Revision as of 06:08, 18 August 2007

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 in the XML of the mind map as binary data in a node, like

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

This proposal does not fix the XML representation; the above is only for illustration.

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 plain, unzipped XML file. Thus:
    • Fast saving.
    • Nice for storing in version control system like CVS or SVN.
    • Easy searching several maps using grep tool.
  • 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.