You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

12 regels
329 B

  1. <?
  2. $img = pipi_load_stock("random:128x128");
  3. $img = pipi_gaussian_blur($img, 10);
  4. $img = pipi_contrast($img, 0.98);
  5. $histogram = pipi_new_histogram();
  6. $histogram_img = pipi_new(320, 200);
  7. pipi_get_image_histogram($img, $histogram, 1);
  8. pipi_render_histogram($img_histogram, $histogram, 1);
  9. pipi_save($histogram_img, "out.png");