/*************************************************************************** pbmpage This program produces a printed page test pattern in PBM format. This was adapted from Tim Norman's 'pbmtpg' program, part of his 'pbm2ppa' package, by Bryan Henderson on 2000.05.01. The only change was to make it use the Netpbm libraries to generate the output. For copyright and licensing information, see the pbmtoppa program, which was also derived from the same package. ****************************************************************************/ #include #include #include #include #include "pbm.h" /* US is 8.5 in by 11 in */ #define USWIDTH (5100) #define USHEIGHT (6600) /* A4 is 210 mm by 297 mm == 8.27 in by 11.69 in */ #define A4WIDTH (4960) #define A4HEIGHT (7016) struct bitmap { int Width; /* width and height in 600ths of an inch */ int Height; int Pwidth; /* width in bytes */ char *bitmap; }; static struct bitmap bitmap; static void setpixel(int const x, int const y, int const c) { int const charidx = y * bitmap.Pwidth + x/8; char const bitmask = 128 >> (x % 8); if (x < 0 || x >= bitmap.Width) return; if (y < 0 || y >= bitmap.Height) return; if (c) bitmap.bitmap[charidx] |= bitmask; else bitmap.bitmap[charidx] &= ~bitmask; } static void setplus(int x,int y,int s) /*---------------------------------------------------------------------------- Draw a black plus sign centered at (x,y) with arms 's' pixels long. Leave the exact center of the plus white. -----------------------------------------------------------------------------*/ { int i; for(i=0; i='0') for(xo=0; xo<5; xo++) for(yo=0; yo<8; yo++) if((charmap[c-'0'][xo]>>yo)&1) setblock(x+xo*3,y+yo*3,3); } static void setstring(int x,int y,char* s) { char* p; int xo; for(xo=0, p=s; *p; xo+=21, p++) setchar(x+xo,y,*p); } static void setCG(int x,int y) { int xo,yo,zo; for(xo=0; xo<=50; xo++) { yo=sqrt(50.0*50.0-xo*xo); setpixel(x+xo,y+yo,1); setpixel(x+yo,y+xo,1); setpixel(x-1-xo,y-1-yo,1); setpixel(x-1-yo,y-1-xo,1); setpixel(x+xo,y-1-yo,1); setpixel(x-1-xo,y+yo,1); for(zo=0; zo 1 && strcmp(argv[1], "-a4") == 0) { Width = A4WIDTH; Height = A4HEIGHT; argc--; argv++; } else { Width = USWIDTH; Height = USHEIGHT; } bitmap.Width = Width; bitmap.Height = Height; bitmap.Pwidth = (Width + 7) / 8; bitmap.bitmap = malloc(bitmap.Pwidth * bitmap.Height); if (argc>1) TP = atoi(argv[1]); switch (TP) { case 1: framePerimeter(Width, Height); for (x = 0; x < Width; x += 100) for(y = 0; y < Height; y += 100) setplus(x, y, 4); for(x = 0; x < Width; x += 100) { sprintf(buf,"%d", x); setstring(x + 3, (Height/200) * 100 + 3, buf); } for (y=0; y < Height; y += 100) { sprintf(buf, "%d", y); setstring((Width/200) * 100 + 3, y + 3, buf); } for (x = 0; x < Width; x += 10) for (y = 0; y < Height; y += 100) setplus(x, y, ((x%100) == 50) ? 2 : 1); for (x=0; x < Width; x += 100) for (y = 0; y < Height; y += 10) setplus(x, y, ((y%100) == 50) ? 2 : 1); setCG(Width/2, Height/2); break; case 2: for (y = 0; y < 300; ++y) setpixel(Width/2, Height/2-y, 1); break; case 3: for (y = 0; y < 300; ++y) { setpixel(y, y, 1); setpixel(Width-1-y, Height-1-y, 1); } break; default: pm_error("unknown test pattern (%d)", TP); } outputPbm(stdout, bitmap); return 0; }