1 package org.jmage.filter.merge;
2
3 import java.util.Properties;
4
5 /***
6 * Test ImageOverlay with PNG
7 */
8 public class ImageOverlayPNG extends ImageOverlayJPG {
9
10 public void setProperties() {
11 Properties props = new Properties();
12 props.setProperty("IMAGE_URI", "file:///sample/jmage_inaction.png");
13 props.setProperty("POSITION", "3");
14 props.setProperty("ORIENTATION", "45");
15 props.setProperty("BORDEROFFSET", "-50");
16 request.setFilterChainProperties(props);
17 }
18 }