show/hide this revision's text 2 added dispose line

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)

What you can try is something like this:

		final List<Image> 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
show/hide this revision's text 1

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)

What you can try is something like this:

		final List<Image> 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!!!
		//now you can use bigImage