summaryrefslogtreecommitdiff
path: root/src/ext/plantuml/com/ctreber/acearth/renderer/RenderTarget.java
blob: 1b4881fac42d4d4e212a0efc40f07e12058cdb9a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package ext.plantuml.com.ctreber.acearth.renderer;

import java.awt.Color;

/**
 * <p>.
 * 
 * <p>
 * &copy; 2002 Christian Treber, ct@ctreber.com
 * 
 * @author Christian Treber, ct@ctreber.com
 * 
 */
public interface RenderTarget {

	public void setPixel(int pX, int pY, int pA, int pR, int pG, int pB);

	public void setPixel(int pX, int pY, Color pColor);

	public int getImageWidth();

	public int getImageHeight();

}