Help for this page

Select Code to Download


  1. or download this
    # Ok, could be better
    local $/;
    open ( FH , '/path/to/some/image' ) or confess $!;
    ...
    read FH, $image, -s FH;
    close FH or confess $!;
    return \ $image;