Ignore:
Timestamp:
Jan 3, 2005, 11:58:23 AM (18 years ago)
Author:
Sam Hocevar
Message:
  • Put font in share/
  • Fixed file headers
File:
1 edited

Legend:

Unmodified
Added
Removed
  • pwntcha/trunk/src/image.c

    r382 r383  
    1111
    1212#include <stdio.h>
    13 #include <stdint.h>
    1413#include <stdlib.h>
    1514
     
    134133void display_image(struct image *img)
    135134{
    136     char name[BUFSIZ];
    137135#if defined(HAVE_IMLIB2_H)
     136    //char name[BUFSIZ];
    138137    //static int i = 0;
    139138    //sprintf(name, "image%i-%ix%i.png", i++, img->width, img->height);
     
    142141    //fprintf(stderr, "saved to %s\n", name);
    143142#elif defined(HAVE_CV_H)
     143    char name[BUFSIZ];
    144144    sprintf(name, "Image %p (%i x %i)", img, img->width, img->height);
    145145    cvNamedWindow(name, 0);
Note: See TracChangeset for help on using the changeset viewer.