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.
 
 
 
 
 
 

19 lines
251 B

  1. #include "config.h"
  2. #include "common.h"
  3. #include <pipi.h>
  4. int main(void)
  5. {
  6. pipi_image_t *i, *j;
  7. i = pipi_load("irc.png");
  8. j = pipi_resize(i, 1000, 114);
  9. pipi_save(j, "irc.bmp");
  10. pipi_free(i);
  11. pipi_free(j);
  12. return 0;
  13. }