63 lines
1.4 KiB
C
63 lines
1.4 KiB
C
|
/*
|
|||
|
warp3.c
|
|||
|
---------------
|
|||
|
*/
|
|||
|
|
|||
|
#include <stdio.h>
|
|||
|
#include <math.h>
|
|||
|
#include "../tthimage.h"
|
|||
|
|
|||
|
/*::------------------------------------------------------------------::*/
|
|||
|
/*
|
|||
|
* travail bas<EFBFBD> sur un PDF dont l'URL a <EFBFBD>t<EFBFBD> post<EFBFBD>e dans la
|
|||
|
* tribune de la buvette.
|
|||
|
*
|
|||
|
* L'auteur est Gernot Hoffmann.
|
|||
|
*/
|
|||
|
int
|
|||
|
Image_interpolate_0(Image_Desc *src, Image_Desc *dst, int ox, int oy)
|
|||
|
{
|
|||
|
int x, y;
|
|||
|
int x2, y2, foo;
|
|||
|
|
|||
|
fprintf(stderr, "*** Image_interpolate_0: work in progress...\n");
|
|||
|
|
|||
|
if ( src == dst )
|
|||
|
{
|
|||
|
fprintf(stderr, "Image interpolate_0: can't overwrite, sorry\n");
|
|||
|
return IMG_OVERWRITE;
|
|||
|
}
|
|||
|
|
|||
|
/*
|
|||
|
@@@@@@@@@@@@@@
|
|||
|
PUTAIN SA RACE
|
|||
|
La police du PDF est pas sortie <EFBFBD> l'impression :(
|
|||
|
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
|
|||
|
Et comme le code est incomplet et en Pascal, je ne
|
|||
|
sais pas trop quoi en faire. Beueueueh.
|
|||
|
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
|
|||
|
*/
|
|||
|
|
|||
|
|
|||
|
return FUNC_NOT_FINISH;
|
|||
|
}
|
|||
|
/*::------------------------------------------------------------------::*/
|
|||
|
/* new 11 janvier 2009 - avenue St Exupery */
|
|||
|
int
|
|||
|
Image_interpolate_2(Image_Desc *src, Image_Desc *dst, RGBA *rgba)
|
|||
|
{
|
|||
|
int x, y;
|
|||
|
|
|||
|
if (NULL==rgba)
|
|||
|
{
|
|||
|
fprintf(stderr, "Using default RGBA in %s...\n", __func__);
|
|||
|
}
|
|||
|
|
|||
|
return FULL_NUCKED;
|
|||
|
}
|
|||
|
/*::------------------------------------------------------------------::*/
|
|||
|
/*
|
|||
|
* voir aussi les modules scale.c, zoom.c et warp[0|1|2].c
|
|||
|
*/
|
|||
|
/*::------------------------------------------------------------------::*/
|