Index: trunk/psLib/src/image/psImage.h
===================================================================
--- trunk/psLib/src/image/psImage.h	(revision 714)
+++ trunk/psLib/src/image/psImage.h	(revision 719)
@@ -7,6 +7,6 @@
  *  @author Ross Harman, MHPCC
  *   
- *  @version $Revision: 1.9 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2004-05-18 02:33:59 $
+ *  @version $Revision: 1.10 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2004-05-18 23:26:26 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -138,3 +138,15 @@
 );
 
+/** Resize a given image to the given size/type.
+ *
+ *  return psImage* Resized psImage.
+ *
+ */
+psImage* psImageRealloc(
+    psImage* old,                   ///< the psImage to recycle by resizing image buffer
+    unsigned int numCols,           ///< the desired number of columns in image
+    unsigned int numRows,           ///< the desired number of rows in image
+    const psElemType type           ///< the desired datatype of the image
+);
+
 #endif
