File indexing completed on 2024-12-22 04:04:09
0001 /* Copyright (C) 2001-2019 Peter Selinger. 0002 This file is part of Potrace. It is free software and it is covered 0003 by the GNU General Public License. See the file COPYING for details. */ 0004 0005 0006 #ifndef BACKEND_SVG_H 0007 #define BACKEND_SVG_H 0008 0009 #include "potracelib.h" 0010 #include "main.h" 0011 0012 int page_svg(FILE *fout, potrace_path_t *plist, imginfo_t *imginfo); 0013 int page_gimp(FILE *fout, potrace_path_t *plist, imginfo_t *imginfo); 0014 0015 #endif /* BACKEND_SVG_H */ 0016