Ejemplo n.º 1
0
 /**
  * 
  * @param int $x : Ancho
  * @param inty $y : Alto
  * @return image : i magen resultante
  */
 function crearImagen($x, $y, $zi, $mx, $my, $capa, $type)
 {
     if ($type == "p") {
         return crearImagenPuntos($x, $y, $zi, $mx, $my, $capa);
     } else {
         if ($type == "l") {
             return crearImagenLineas($x, $y, $zi, $mx, $my, $capa);
         } else {
             if ($type == "po") {
                 return crearImagenPoligono($x, $y, $zi, $mx, $my, $capa);
             }
         }
     }
 }
Ejemplo n.º 2
0
 /**
  * 
  * @param int $x : Ancho
  * @param inty $y : Alto
  * @return image : i magen resultante
  */
 function crearImagen($x, $y, $zi, $mx, $my, $capa, $type, $rgb, $conn)
 {
     if ($type == "MULTIPOINT") {
         return crearImagenPuntos($x, $y, $zi, $mx, $my, $capa, $rgb, $conn);
     } else {
         if ($type == "MULTILINESTRING") {
             return crearImagenLineas($x, $y, $zi, $mx, $my, $capa, $rgb, $conn);
         } else {
             if ($type == "MULTIPOLYGON") {
                 return crearImagenPoligono($x, $y, $zi, $mx, $my, $capa, $conn);
             }
         }
     }
 }