Here's what I could find in the old source files:
Bitmap:=tbitmap.Create;
bitmap.height:=1432;
bitmap.width:=2832;
bitmap.Monochrome:=true;
Tiffsave.AttachedBitmap:= bitmap;
bitmap.canvas.font.name:='Barcodefont';
bitmap.canvas.Font.size:=180;
bitmap.canvas.textout(125,26,'qrst '+code);
bitmap.canvas.Font.size:=550;
bitmap.canvas.textout(167,400,'<');
bitmap.canvas.textout(393,400,chr(97+ean[2]));
bitmap.canvas.textout(558,400,chr(65+ean[3]));
.....
bitmap.canvas.textout(2440,400,'>');
Tiffsave.Params.dpix:=2400;
Tiffsave.Params.dpiy:=2400;
Tiffsave.Params.Width:=2832;
Tiffsave.Params.Height:=1432;
Tiffsave.Params.SamplesPerPixel:=1;
Tiffsave.Params.BitsPerSample:=1;
Tiffsave.Params.TIFF_PhotometInterpret:=ioTIFF_BLACKISZERO;
Tiffsave.Params.TIFF_Compression:=ioTIFF_LZW;
Tiffsave.SaveToFile(fn);
Tiffsave.Bitmap.Free;
Never tried on a win2000. The demo and full version works exactly the same way...
Unfortunately I can't post a messed-up eps, the XP was reinstalled on that computer too, and now only the tiff is bad when running this program on it.