Index: trunk/ippMonitor/raw/getimage.php
===================================================================
--- trunk/ippMonitor/raw/getimage.php	(revision 28654)
+++ trunk/ippMonitor/raw/getimage.php	(revision 28688)
@@ -36,6 +36,15 @@
 }
 
-# $basename may contain filename@filerule
+// $basename may contain filename@filerule
 $basename = $_GET[name];
+if ($basename == "noimage.noimage") {
+  $file = fopen ("noimage.png", "r");//$MISSING?
+  if ($file && !$debug) {
+    # do I need to use image/jpg? can I modify this to image/png, etc, based on the type?
+	   header ('Content-Type: image/jpg');
+    fpassthru ($file);
+  }
+  exit ();
+}
 $filerule = $_GET[rule];
 $camera   = $_GET[camera];
