Geo::GD::Image - Perl extension to draw Well Known Binary (WKB) blobs directly into a GD::Image


Geo-GD-Image documentation  | view source Contained in the Geo-GD-Image distribution.

Index


NAME

Top

Geo::GD::Image - Perl extension to draw Well Known Binary (WKB) blobs directly into a GD::Image

SYNOPSIS

Top

  use Geo::GD::Image;

  my $img = Geo::GD::Image->newTrueColor();  # same as GD::Image

  # set up colors etc

  $img->draw_wkb( $wkb_blob, $gd_color, $offsetx, $offsety, $ratiox, $ratioy);

METHODS

Top

Geo::GD::Image is a subclass of GD::Image (GD::Image) and currently only adds 2 methods. You should read GD

draw_wkb

 $img->draw_wkb($wkb_blob, $gd_color, $offsetx, $offsety, $ratiox, $ratioy);

Draw a well known binary shape into the image. Polygons are inserted as filled polygons, linestrings are inserted as open polygons or lines and points are inserted as single pixels.

Combined types (multipolygon, multilinestring and geometrycolection) are also supported.

Arguments: $wkb_blob: a Well Know Binary string, $gd_color: a GD color number.

$offsetx, $offsety, $ratiox, $ratioy are used to calculate pixel coordinates (0,0 = top-left) from WKB coordinates:

 $pixelx = $ratiox * ( $wkb_x - $offsetx )
 $pixely = $ratioy * ( $wkb_y - $offsetx )

alpha

 my $alpha = $img->alpha($gd_color);

Get the alpha channel value of a gd color. The method should arguably be part of GD (GD).

SEE ALSO

Top

GD.

OpenGISĀ® Implementation Specification for Geographic information - Simple feature access - Part 2: SQL option: http://www.opengeospatial.org/standards/sfs

AUTHOR

Top

Joost Diepenmaat, Zeekat Softwareontwikkeling. http://zeekat.nl/ - joost@zeekat.nl

COPYRIGHT & LICENSE

Top


Geo-GD-Image documentation  | view source Contained in the Geo-GD-Image distribution.