2003/09/23 08:24:59
[org.ibex.core.git] / src / org / xwt / Picture.java
index 8cd3c97..88cf65b 100644 (file)
@@ -1,5 +1,9 @@
 // Copyright 2003 Adam Megacz, see the COPYING file for licensing [GPL]
 package org.xwt;
+import java.io.*;
+import org.xwt.js.*;
+import org.xwt.util.*;
+import org.xwt.translators.*;
 
 /** 
  *    <p>
@@ -15,6 +19,37 @@ package org.xwt;
  *    </p>
  */
 public abstract class Picture {
+
+    /** Pictures, cached by Res */
+    private static Cache cache = new Cache();
+    
+    /** turns a resource into a Picture.Source */
+    public static Picture fromRes(Res r) {
+        // FIXME: put self in background thread if needed
+        Picture ret = (Picture)cache.get(r);
+        if (ret == null) {
+            try {
+                PushbackInputStream pbis = new PushbackInputStream(r.getInputStream());
+                int c = pbis.read();
+                pbis.unread(c);
+                // FEATURE: cache GIF/PNG objects, reuse int[]'s?
+                if (c == 'G') ret = new GIF().fromInputStream(pbis, "FIXME");
+                else if (c == 137) ret = new PNG().fromInputStream(pbis, "FIXME");
+                else if (c == 0xff) ret = Platform.decodeJPEG(pbis, "FIXME");
+                else throw new JS.Exn("couldn't figure out image type from first byte");
+                cache.put(r, ret);
+            } catch (IOException e) {
+                Log.logJS(Picture.class, e);
+                return null;
+            }
+        }
+        return ret;
+    }
+
+    /** the height of the picture */
     public abstract int getHeight();
+    
+    /** the width of the picture */
     public abstract int getWidth();
+
 }