1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104
|
/*
NrrdIO: stand-alone code for basic nrrd functionality
Copyright (C) 2008, 2007, 2006, 2005 Gordon Kindlmann
Copyright (C) 2004, 2003, 2002, 2001, 2000, 1999, 1998 University of Utah
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any
damages arising from the use of this software.
Permission is granted to anyone to use this software for any
purpose, including commercial applications, and to alter it and
redistribute it freely, subject to the following restrictions:
1. The origin of this software must not be misrepresented; you must
not claim that you wrote the original software. If you use this
software in a product, an acknowledgment in the product
documentation would be appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must
not be misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
*/
#include "NrrdIO.h"
#include "privateNrrd.h"
int
_nrrdFormatEPS_available(void) {
return AIR_FALSE;
}
int
_nrrdFormatEPS_nameLooksLike(const char *filename) {
return airEndsWith(filename, NRRD_EXT_EPS);
}
int
_nrrdFormatEPS_fitsInto(const Nrrd *nrrd, const NrrdEncoding *encoding,
int useBiff) {
char me[]="_nrrdFormatEPS_fitsInto", err[AIR_STRLEN_MED];
AIR_UNUSED(nrrd);
AIR_UNUSED(encoding);
AIR_UNUSED(useBiff);
sprintf(err, "%s: Sorry, %s format not available in NrrdIO",
me, nrrdFormatEPS->name);
biffMaybeAdd(NRRD, err, useBiff);
return AIR_FALSE;
}
int
_nrrdFormatEPS_contentStartsLike(NrrdIoState *nio) {
AIR_UNUSED(nio);
return AIR_FALSE;
}
int
_nrrdFormatEPS_read(FILE *file, Nrrd *nrrd, NrrdIoState *nio) {
char me[]="_nrrdReadEPS", err[AIR_STRLEN_MED];
AIR_UNUSED(file);
AIR_UNUSED(nrrd);
AIR_UNUSED(nio);
sprintf(err, "%s: Sorry, %s format not available in NrrdIO",
me, nrrdFormatEPS->name);
biffAdd(NRRD, err);
return 1;
}
int
_nrrdFormatEPS_write(FILE *file, const Nrrd *nrrd, NrrdIoState *nio) {
char me[]="_nrrdFormatEPS_write", err[AIR_STRLEN_MED];
AIR_UNUSED(file);
AIR_UNUSED(nrrd);
AIR_UNUSED(nio);
sprintf(err, "%s: Sorry, %s format not available in NrrdIO",
me, nrrdFormatEPS->name);
biffAdd(NRRD, err);
return 1;
}
const NrrdFormat
_nrrdFormatEPS = {
"EPS",
AIR_FALSE, /* isImage */
AIR_FALSE, /* readable */
AIR_FALSE, /* usesDIO */
_nrrdFormatEPS_available,
_nrrdFormatEPS_nameLooksLike,
_nrrdFormatEPS_fitsInto,
_nrrdFormatEPS_contentStartsLike,
_nrrdFormatEPS_read,
_nrrdFormatEPS_write
};
const NrrdFormat *const
nrrdFormatEPS = &_nrrdFormatEPS;
|