Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

example1.php 212 B

1234567
  1. <?
  2. $img = pipi_load_stock("random:128x128");
  3. $img = pipi_gaussian_blur($img, 10);
  4. //$img = pipi_box_blur($img, 30);
  5. $img = pipi_contrast($img, 0.98);
  6. $img = pipi_tile($img, 256, 256);
  7. pipi_save($img, "out.png");