[Mapserver-users] php mapscript - pasteimage
Daniel Morissette
dmorissette at dmsolutions.ca
Mon May 3 09:36:17 PDT 2004
This is a multi-part message in MIME format.
--------------080500060909030205020503
Content-Type: text/plain; charset=us-ascii; format=flowed
Content-Transfer-Encoding: 7bit
publiek at home.nl wrote:
>
> I want to show several layers on top of each other.
> How do i combine the images?
>
Just calling $layer->draw($image) for each layer will do the trick. You
need to use $map->prepareImage() to create a balnk image first.
> I looked at pasteimage, but the examples provided with mapserver 4 dont work. (Would be nice if someone updated these)
>
> Anyone willing to provide me a simple example?
>
Thanks for pointing that. I have fixed the
mapscript/php3/examples/test_layer_mask.phtml forV4.x and updated the
copies in CVS for v4.2 and 4.3. I also attached a copy of the updated
script.
Daniel
--
------------------------------------------------------------
Daniel Morissette dmorissette at dmsolutions.ca
DM Solutions Group http://www.dmsolutions.ca/
------------------------------------------------------------
--------------080500060909030205020503
Content-Type: text/html;
name="test_layer_mask.phtml"
Content-Transfer-Encoding: 7bit
Content-Disposition: inline;
filename="test_layer_mask.phtml"
<HTML>
<BODY BGCOLOR="#888888">
<CENTER>
<H1>PHP/MapScript layer mask test</H1>
<P>
<?php
//
// This example shows how to create an opaque mask layer using shapes coming
// from a map layer, and using the imageObj's pasteImage() method.
//
// This example uses the GMap demo's mapfile and data.
//
//
// Load MapScript module.
//
if (PHP_OS == "WINNT" || PHP_OS == "WIN32")
{
dl("php_mapscript.dll");
}
else
{
dl("php_mapscript.so");
}
//
// Load MapServer .map file
//
// You can download the GMap demo at http://www2.dmsolutions.ca/mapserver/dl/
//
$map = ms_newMapObj("gmap75.map");
//
// Note: If you get errors with the saveWebImage() call below, then make sure
// that the directory specified by IMAGEPATH in the .MAP file exists and is
// writable by the httpd user.
//
// This works only with GIF or PNG
$map->SelectOutputFormat("PNG");
////////
// Draw the base layers into an imageObj
$img1 = $map->prepareimage();
$layer = $map->getLayerByName("bathymetry");
$layer->set("status", 1);
$layer->draw($img1);
//$img = $map->draw();
$url = $img1->saveWebImage();
echo "<P>Draw the base layers into an image...<p>\n";
printf("<IMG SRC=%s WIDTH=%d HEIGHT=%d>\n", $url, $map->width, $map->height);
//////////////
// Use the parks layer as a mask... we only want to see the base layers
// through the area of the park polygons and the rest should be light grey.
// Start by creating a new image ...
$img2 = $map->prepareimage();
// ... and we'll use a rectObj to draw the opaque mask background
$rect = ms_newRectObj();
$rect->setExtent(0, 0, $map->width, $map->height);
// We need to create a temporary layer and class to use in drawing the
// filled rectangle that will be the opaque part of the mask.
$tmplayer = ms_newLayerObj($map);
$tmplayer->set("type", MS_LAYER_POLYGON);
$tmplayer->set("status", 1);
$tmplayer->set("transform", MS_FALSE);
$tmpclass = ms_newClassObj($tmplayer);
$tmpstyle = ms_newStyleObj($tmpclass);
$tmpstyle->color->setRGB(222,222,222);
$rect->draw($map, $tmplayer, $img2, 0, ""); // Draw rect with class 0
// Now fetch the park layer and change its only class to use color index 0
// which is the transparent background color... so the parks polygons will
// create transparent holes in the mask
$layer = $map->getLayerByName("park");
$layer->set("status", 1);
$class = $layer->getClass(0);
$style = $class->getStyle(0);
$style->color->setRGB(12,12,12);
$style->outlinecolor->setRGB(12,12,12);
$layer->draw($img2);
$url = $img2->saveWebImage();
echo "<P>Draw the mask into another image...<p>\n";
printf("<IMG SRC=%s WIDTH=%d HEIGHT=%d>\n", $url, $map->width, $map->height);
////////
// Last step... combine the two images using pasteImage()
//
echo "<P>And combine the two with pasteImage()... you see the base layer through the holes in the mask...<p>\n";
$img1->pasteImage($img2, 0x0c0c0c);
$url = $img1->saveWebImage();
printf("<IMG SRC=%s WIDTH=%d HEIGHT=%d>\n", $url, $map->width, $map->height);
?>
</BODY>
</HTML>
--------------080500060909030205020503--
More information about the MapServer-users
mailing list