????JFIF??x?x????'
Server IP : 79.136.114.73 / Your IP : 18.218.131.147 Web Server : Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4.29 OpenSSL/1.0.1f System : Linux b8009 3.13.0-170-generic #220-Ubuntu SMP Thu May 9 12:40:49 UTC 2019 x86_64 User : www-data ( 33) PHP Version : 5.5.9-1ubuntu4.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/share/doc/perlmagick/examples/demo/ |
Upload File : |
#!/usr/bin/perl # Written by jreed@itis.com, adapted by John Cristy. use Image::Magick; use Turtle; sub flower { my $flower = shift; my ($width, $height) = $flower->Get('width', 'height'); my ($x, $y) = $turtle->state(); my ($geometry); $geometry = '+' . int($x-$width/2) . '+' . int($y-$height/2); $im->Composite(image=>$flower, compose=>'over', geometry=>$geometry); } sub lsys_init { my ($imagesize) = @_; %translate = ( 'S' => sub{ # Step forward $turtle->forward($changes->{"distance"}, $changes->{"motionsub"}); }, '-' => sub{ $turtle->turn(-$changes->{"dtheta"}); }, # counter-clockwise '+' => sub{ $turtle->turn($changes->{"dtheta"}); }, # Turn clockwise 'M' => sub{ $turtle->mirror(); }, # Mirror '[' => sub{ push(@statestack, [$turtle->state()]); }, # Begin branch ']' => sub{ $turtle->setstate(@{pop(@statestack)}); }, # End branch '{' => sub{ @poly = (); $changes=\%polychanges; }, # Begin polygon '}' => sub{ # End polygon $im->Draw (primitive=>'Polygon', points=>join(' ',@poly), fill=>'light green'); $changes = \%stemchanges; }, 'f' => sub{ flower($pink_flower); }, # Flower 'g' => sub{ flower($red_flower); }, # Flower 'h' => sub{ flower($yellow_flower); } # Flower ); # Create the main image $im = new Image::Magick; $im->Set(size=>$imagesize . 'x' . $imagesize); $im->Read('xc:white'); # Create the flower images $pink_flower = new Image::Magick; $pink_flower->Read('pink-flower.gif'); $red_flower = new Image::Magick; $red_flower->Read('red-flower.gif'); $yellow_flower = new Image::Magick; $yellow_flower->Read('yellow-flower.gif'); # Turtle: the midpoint of the bottom edge of the image, pointing up. $turtle=new Turtle($imagesize/2, $imagesize, 0, 1); } sub lsys_execute { my ($string, $repetitions, $filename, %rule) = @_; my ($command); # Apply the %rule to $string, $repetitions times. for (1..$repetitions) { $string =~ s/./defined ($rule{$&}) ? $rule{$&} : $&/eg; } foreach $command (split(//, $string)) { if ($translate{$command}) { &{$translate{$command}}(); } } $im->Write($filename); $im->Write('win:'); } 1;