Help for this page

Select Code to Download


  1. or download this
    Had problems bootstrapping Inline module 'gdexample2_pl_9960'
    
    Can't load '/path/_Inline/lib/auto/gdexample2_pl_9960/gdexample2_pl_99
    +60.so' for module gdexample2_pl_9960: /path/_Inline/lib/auto/gdexampl
    +e2_pl_9960/gdexample2_pl_9960.so: undefined symbol: jpeg_destroy at /
    +usr/lib/perl5/5.6.1/i386-linux/DynaLoader.pm line 206.
    ...
    
     at gdexample2.pl line 0
    INIT failed--call queue aborted.
    
  2. or download this
    > use Inline 'NOCLEAN';
    use Inline 'C' => 'Config' =>
                       AUTO_INCLUDE  => '#include "gd.h"',
                      'INC' => '-I/usr/include ',
                      'LIBS' => '-L/usr/lib -lgd ',
                             ;
    
  3. or download this
    #!/usr/bin/perl
    
    use Inline Config => FORCE_BUILD => 1,
    ...
      gdImageDestroy(im);
      return 1;
    }