A basic graphics package for the LPC4088 Display Module.

Dependents:   lpc4088_displaymodule_demo_sphere sampleGUI sampleEmptyGUI lpc4088_displaymodule_fs_aid ... more

Fork of DMBasicGUI by EmbeddedArtists AB

Revision:
7:4ba7bd9d32ef
Parent:
0:4977187e90c7
Child:
11:265884fa7fdd
--- a/lpc_swim/lpc_swim_image.h	Thu Jan 08 11:14:56 2015 +0100
+++ b/lpc_swim/lpc_swim_image.h	Thu Jan 08 19:28:22 2015 +0100
@@ -71,6 +71,25 @@
 					int32_t ysize);
 
 /**
+ * @brief	Puts a raw image at the virtual X, Y coordinate in the window
+ * @param	win		: Pointer to window data structure
+ * @param	image	: Pointer to raw image data
+ * @param	xsize	: Horizontal size of image data
+ * @param	ysize	: Vertical size of image data
+ * @param	x1	    : Virtual X position of pixel
+ * @param	y1	    : Virtual Y position of pixel
+ * @return	Nothing
+ * @note	Places an image at the spcified position in the window.
+ * Image is cropped to the window size.
+ */
+void swim_put_image_xy(SWIM_WINDOW_T *win,                       
+					   const COLOR_T *image,
+					   int32_t xsize,
+					   int32_t ysize,
+                       int32_t x1,
+                       int32_t y1);
+
+/**
  * @brief	Puts a raw image into a window inverted
  * @param	win		: Pointer to window data structure
  * @param	image	: Pointer to raw image data