SWT Image concatenation or tiling / mosaic - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T20:16:04Z http://stackoverflow.com/feeds/question/273711 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/273711/swt-image-concatenation-or-tiling-mosaic 3 SWT Image concatenation or tiling / mosaic Brian 2008-11-07T21:34:03Z 2008-11-14T19:09:01Z <p>I have an Eclipse RCP application that displays a lot (10k+) of small images next to each other, like a film strip. For each image, I am using a SWT <code>Image</code> object. This uses an excessive amount of memory and resources. I am looking for a more efficient way. I thought of taking all of these images and concatenating them by creating an <code>ImageData</code> object of the proper total, concatenated width (with a constant height) and using <code>setPixel()</code> for the rest of the pixels. However, the <code>Palette</code> used in the <code>ImageData</code> constructor I can't figure out.</p> <p>I also searched for SWT tiling or mosaic functionality to create one image from a group of images, but found nothing.</p> <p>Any ideas how I can display thousands of small images next to each other efficiently? Please note that once the images are displayed, they are not manipulated, so this is a one-time cost.</p> http://stackoverflow.com/questions/273711/swt-image-concatenation-or-tiling-mosaic/287468#287468 0 Answer by alexmcchessers for SWT Image concatenation or tiling / mosaic alexmcchessers 2008-11-13T16:45:20Z 2008-11-13T16:45:20Z <p>Presumably not every image is visible on screen at any one time? Perhaps a better solution would be to only load the images when they become (or are about to become) visible, disposing of them when they have been scrolled off the screen. Obviously you'd want to keep a few in memory on either side of the current viewport in order to make a smooth transition for the user.</p> http://stackoverflow.com/questions/273711/swt-image-concatenation-or-tiling-mosaic/287491#287491 0 Answer by Scott Wegner for SWT Image concatenation or tiling / mosaic Scott Wegner 2008-11-13T16:52:42Z 2008-11-13T16:52:42Z <p>I previously worked with a Java application to create photomosaics, and found it very difficult to achieve adequate performance and memory usage using the java imaging (JAI) libraries and SWT. Although we weren't using nearly as many images as you mention, one route was to rely on a utilities outside of java. In particular, you could use ImageMagick command-line utilities to stitch together your mosaic, and the load the completed memory from disk. If you want to get fancy, there is also a C++ API for ImageMagick, which is very efficient in memory.</p> http://stackoverflow.com/questions/273711/swt-image-concatenation-or-tiling-mosaic/290904#290904 1 Answer by Herman Lintvelt for SWT Image concatenation or tiling / mosaic Herman Lintvelt 2008-11-14T18:07:28Z 2008-11-14T19:09:01Z <p>You can draw directly on the GC (graphics context) of a new (big) image. Having one big Image should result in much less resource usage than thousands of smaller images (each image in SWT keeps some OS graphics object handle)</p> <p>What you can try is something like this:</p> <pre><code> final List&lt;Image&gt; images; final Image bigImage = new Image(Display.getCurrent(), combinedWidth, height); final GC gc = new GC(bigImage); //loop thru all the images while increasing x as necessary: int x = 0; int y = 0; for (Image curImage : images) { gc.drawImage(curImage, x, y); x += curImage.getBounds().width; } //very important to dispose GC!!! gc.dispose(); //now you can use bigImage </code></pre>