Help for this page

Select Code to Download


  1. or download this
    $mode=$ARGV[0];
    $frames=$ARGV[1];
    $lossy=$ARGV[2];
    $skip=$ARGV[3];
    @bitmap=`cat $ARGV[4]`;
    
  2. or download this
    my $mode = shift;
    my $frames = shift;
    my $lossy = shift;
    my $skip = shift;
    my @bitmap = <>;
    
  3. or download this
    foreach $item (@bitmap)
    {
    ...
      $total.=$item;
    }
    @image=split(//,"$total");
    
  4. or download this
    chomp @bitmap;
    @image = split //, join '', @bitmap;
    
  5. or download this
                $col=$c;
                $row=$thisRow;
    
  6. or download this
    # If you don't want to use this optimization, just
    # comment out the whole if statement.