dumbledore / AlbiteREADER

A feature-rich e-book reader for the Java Mobile platform. Currently works with txt, xhtml and epub files. Supported features include touch scrolling, images, styling and multilingual hyphenation, on-touch dictionaries, units converter, table of contents. Uses the Droid Serif font through it's own font implementation scheme.
http://albite.org/reader_j2me
72 stars 21 forks source link

Some images don't show #194

Closed dumbledore closed 13 years ago

dumbledore commented 13 years ago

Images using the rather than tag don't show up. That is, I need to include support for that tag, too.

dumbledore commented 13 years ago

It turns out that this is a part of the SVG language. Still, there's no problem to add support for it.

dumbledore commented 13 years ago

Not going to support alt text for SVG images, as it's not worth the effort as it is done through tag nesting, which is something non-trivial to account for, at least for the current (rather messy) implementation.

<image x="200" y="200" width="100px" height="100px" xlink:href="myimage.png">
    <title>My image</title>
</image>