home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Java 1.2 How-To
/
JavaHowTo.iso
/
3rdParty
/
Gamelication
/
com
/
next
/
gt
/
RCS
/
TiledImage.java,v
< prev
next >
Wrap
Text File
|
1998-04-15
|
1KB
|
61 lines
head 1.1;
access;
symbols;
locks; strict;
comment @# @;
1.1
date 98.04.10.17.53.01; author jgh8962; state Exp;
branches;
next ;
desc
@@
1.1
log
@Initial revision
@
text
@/**
*
* TiledImage.java
* @@author Mark G. Tacchi (mtacchi@@next.com)
* @@version 0.8
* Feb 24/1996
*
* TiledImage is a simple class with the sole responsibility of
* replicating an image tile to produce a large tiled image. This is
* useful for creating a background image.
*
*/
package com.next.gt;
import java.awt.Graphics;
import java.awt.Image;
public class TiledImage extends java.lang.Object {
static Image tiledImage;
public static Image createTiledImage(Image theImage, int width, int height,
Gamelication owner) {
int i, j;
tiledImage= owner.createImage(width,height);
for (i= 0; i< width; i+= theImage.getWidth(null)) {
for (j= 0; j< height; j+= theImage.getHeight(null)) {
tiledImage.getGraphics().drawImage(theImage,i,j,owner);
}
}
return tiledImage;
} /*TiledImage(,,,)*/
} /*TiledImage*/
@