Imported from antiword-0.37.tar.gz.
[antiword.git] / png2sprt.c
blobd40ceb64c201fb242653c2a6d3d06c0aca1a0aca
1 /*
2 * png2sprt.c
3 * Copyright (C) 2000 A.J. van Os; Released under GPL
5 * Description:
6 * Functions to translate png pictures into sprites
7 */
9 #include <stdio.h>
10 #include "antiword.h"
14 * bTranslatePNG - translate a PNG picture
16 * This function translates a picture from png to sprite
18 * return TRUE when sucessful, otherwise FALSE
20 BOOL
21 bTranslatePNG(diagram_type *pDiag, FILE *pFile,
22 ULONG ulFileOffset, size_t tPictureLen, const imagedata_type *pImg)
24 /* PNG is not supported yet */
25 return bAddDummyImage(pDiag, pImg);
26 } /* end of bTranslatePNG */