00001
00007
00008
00009 #include <stdlib.h>
00010 #include <stdio.h>
00011 #include <string.h>
00012 #include "NPWBase.h"
00013 #include "NPWStdAlloc.h"
00014 #include "NPWStdOutput.h"
00015 #include "NPWInfo.h"
00016
00017 #define kBufSize 256
00018
00020 int main(int argc, char **argv)
00021 {
00022 NPW npw;
00023 int n;
00024 int width = kNPWPaperWidthA4, height = kNPWPaperHeightA4;
00025 char buf[kBufSize];
00026
00027 if (argc >= 4 && !strcmp(argv[1], "--size"))
00028 {
00029 width = strtol(argv[2], NULL, 0);
00030 height = strtol(argv[3], NULL, 0);
00031 }
00032
00033 NPWInit(&npw);
00034 NPWSetAllocCallback(&npw, NPWAllocStdlib, NULL);
00035 NPWSetWriteCallback(&npw, NPWWriteStdOutput, (void *)stdout);
00036
00037 NPWBeginPage(&npw, width, height);
00038
00039 while (~feof(stdin))
00040 {
00041 n = fread(buf, 1, kBufSize, stdin);
00042 if (n <= 0)
00043 break;
00044 NPWWrite(&npw, buf, n);
00045 }
00046
00047 NPWWrite(&npw, "\n", 1);
00048 NPWEndPage(&npw);
00049
00050 NPWInfoBegin(&npw);
00051 NPWInfoAddEntry(&npw, kNPWInfoKeyCreator, "PDF Wrapper (nyctergatis.com)");
00052 NPWInfoEnd(&npw);
00053
00054 NPWTerminate(&npw);
00055
00056 return 0;
00057 }