Data file formats: Difference between revisions

From OLPC
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
{{stub}}
{{stub}}
==Introduction==

Because the OLPC has limited storage and limited RAM, it is not a good idea to support every data format used on regular PCs. It makes more sense to use our PCs to convert data than to put that burden on the OLPC.
==List of supported formats==
* [[choosing image formats|Image formats]]
* [[choosing image formats|Image formats]]
** [[JPEG_2000]]
** [[JPEG_2000]]
Line 11: Line 14:
** [[DJVU]]
** [[DJVU]]
** [[PDF]]
** [[PDF]]

* General formats
** XML
** Sqlite (a lightweight relational database)
** Gnu gdbm (supported by [[Python]]'s dbm module)
** Berkeley db version 4.3.0.1 (supported by [[Python]]'s bsddb module)

* Compression formats
** Uncompressed (this is listed because the JFFS2 filesystem on the OLPC will compress all compressable files)
** GNU Zip (supported by [[Python]]'s zlib module)

Revision as of 18:40, 14 June 2006

This article is a stub. You can help the OLPC project by expanding it.

Introduction

Because the OLPC has limited storage and limited RAM, it is not a good idea to support every data format used on regular PCs. It makes more sense to use our PCs to convert data than to put that burden on the OLPC.

List of supported formats

  • General formats
    • XML
    • Sqlite (a lightweight relational database)
    • Gnu gdbm (supported by Python's dbm module)
    • Berkeley db version 4.3.0.1 (supported by Python's bsddb module)
  • Compression formats
    • Uncompressed (this is listed because the JFFS2 filesystem on the OLPC will compress all compressable files)
    • GNU Zip (supported by Python's zlib module)