File: thumbnail.c

package info (click to toggle)
luola 1.3.2-10
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, stretch
  • size: 3,316 kB
  • ctags: 1,694
  • sloc: ansic: 14,480; sh: 2,932; makefile: 225
file content (11 lines) | stat: -rw-r--r-- 335 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
#include <stdio.h>

#include "thumbnail.h"

int make_thumbnail(const char *input,const char *output,int height,float aspect) {
    /* Try: image magick, SDL_gfx rotozoom, simple pixel zoom */
    fprintf(stderr,"make_thumbnail(\"%s\", \"%s\", %d, %f): Not implemented yet.\n",
            input,output,height,aspect);
    return 1;
}