Help for this page

Select Code to Download


  1. or download this
    my $image_name = "heybuddy.jpg";
    my $image_full = "/home/temp/$image_name"; #image full path to the tem
    +p file
    my $status = getstore($video_src, $image_full); #uses getstore to retr
    +ieve image and to be stored in the temp path.
    die "Error $status on $video_src" unless is_success($status);
    
  2. or download this
    open(IN, ">/home/images/$image_name") or die "Can't open: $!";        
    +     
    binmode IN;
    ...
        }
        close IN or die "Can't close: $!";
    }