Mercurial > mxd2map
view src/java/de/intevation/mxd/reader/PictureMarkerSymbolReader.java @ 131:cd18c61cbcf6
Do not write lines or outlines if their width is smaller than 1.0.
author | vc11884admin@VC11884.win.bsh.de |
---|---|
date | Mon, 20 Jun 2011 17:41:55 +0200 |
parents | fb93f20478cc |
children | a4ab239509f1 |
line wrap: on
line source
package de.intevation.mxd.reader; import org.apache.log4j.Logger; import com.esri.arcgis.display.ISymbol; import com.esri.arcgis.display.IMarkerSymbol; import com.esri.arcgis.display.PictureMarkerSymbol; import com.esri.arcgis.carto.PictureElement; import org.w3c.dom.Element; import java.io.IOException; /** * Reads picture marker symbol information. * * @author <a href="mailto:raimund.renkert@intevation.de">Raimund Renkert</a> */ public class PictureMarkerSymbolReader extends AbstractSymbolReader { /** * The logger. */ private static final Logger logger = Logger.getLogger(PictureMarkerSymbolReader.class); /** * Private member. */ private PictureMarkerSymbol symbol; public PictureMarkerSymbolReader(ISymbol symbol) throws Exception { logger.debug("contructor()"); if(symbol instanceof PictureMarkerSymbol) { this.symbol = (PictureMarkerSymbol)symbol; } else { throw new Exception("Not a PictureMarkerSymbol!"); } } public PictureMarkerSymbolReader(IMarkerSymbol symbol) throws Exception { logger.debug("contructor()"); if(symbol instanceof PictureMarkerSymbol) { this.symbol = (PictureMarkerSymbol)symbol; } else { throw new Exception("Not a PictureMarkerSymbol!"); } } /** * Reads the symbol attributes. * * @return The XML node. */ public Element read() { //TODO Read the picture from mxd and write it as base64 string to the // XML Element. logger.debug("read()"); Element symbolElement = util.addSymbol(parent); try { symbolElement.setAttribute( "angle", String.valueOf(symbol.getAngle())); } catch(IOException ioe) { logger.warn("Could not read angle. Setting angle to 0."); symbolElement.setAttribute("angle", "0"); } try { symbolElement.setAttribute( "size", String.valueOf(symbol.getSize())); } catch (IOException ioe) { logger.warn("Could not read size. Setting size to 1."); symbolElement.setAttribute("size", "0"); } try { symbolElement.setAttribute( "x_offset", String.valueOf(symbol.getXOffset())); } catch(IOException ioe) { logger.warn("Could not read x-offset. Setting x-offset to 0"); symbolElement.setAttribute("x_offset", "0"); } try { symbolElement.setAttribute( "y_offset", String.valueOf(symbol.getYOffset())); } catch(IOException ioe) { logger.warn("Could not read y-offset. Setting y-offset to 0."); symbolElement.setAttribute("y_offset", "0"); } try { symbolElement.setAttribute( "name", symbol.getNameString()); } catch(IOException ioe) { logger.warn("Could not read name. Setting name to \"default\""); symbolElement.setAttribute("name", "default"); } try { PictureElement pElem = new PictureElement(); pElem.importPicture(symbol.getPicture()); } catch(IOException ioe) { logger.warn("Could not read picture. No fallback defined."); } symbolElement.setAttribute("style", "picture"); symbolElement.setAttribute("type", "marker"); return symbolElement; } } // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :