Help for this page

Select Code to Download


  1. or download this
    BEGIN {
        *GD::Image:: = *SVG::GD::Image::;
    }
    
  2. or download this
    BEGIN {
        *SVG::H:: = *GD::
        *GD::Image:: = *SVG::GD::Image::;
    }
    
  3. or download this
    SVG::GD::Image::new {
       ....create object and bless... as $self
       $self->{_GD_} = SVG::H::Image::new()
    }
    
  4. or download this
     *SVG::H::GD::Image::new = \&GD::Image::new;
     *SVG::H::GD::Image::meths = \&GD::Image::meths;
    
  5. or download this
     *SVG::H::GD::_new = \&GD::_new;
     ...etc for every xs subroutine...