-
Notifications
You must be signed in to change notification settings - Fork 0
/
imageloaders.html
37 lines (36 loc) · 1.26 KB
/
imageloaders.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="vlc.css"/>
<title>VLC Open Source Libraries - Extended Image Loaders</title>
</head>
<body>
<main id="page_content">
<h1>Extended Image Loaders</h1>
<div class="table_wrapper">
<div>
<div class="table_row_title">GitHub</div>
<div class="table_row_content"><a href="https://github.com/Virtual-Light-Company/ImageLoader">ImageLoader</a></div>
</div>
<div>
<div class="table_row_title">License</div>
<div class="table_row_content"><a href="https://www.gnu.org/licenses/old-licenses/lgpl-2.1.html">LGPL v2.1</a></div>
</div>
<div>
<div class="table_row_title">Build System</div>
<div class="table_row_content">Makefile</div>
</div>
<div>
<div class="table_row_title">Downloads</div>
<div class="table_row_content">TBD</div>
</div>
</div>
<div class="prod_description">
The standard Java image loaders that come with the JDK are terrible. The ones from the NIO package aren't much
better. They are quite slow and consume extremely large amounts of memory. A problem since JDK 1.1, and still
an issue with Java 8, these libraries plug into the bottom of the image loading framework and use the native
libraries provided by the platform to improve speed and memory usage.
</div>
</main>
</body>
</html>