SELECT printer
FROM
raven =>
RETURN[CreateFromParameters[fileName: fileName,
deviceCode: DeviceCode[raven].ORD,
sResolution: 300, fResolution: 300,
imageSSize: 300*8+300/2, imageFSize: 300*11, -- 8.5 by 11 inches
nColors: 1, leftovers: TRUE, bandSSize: 16, maxLoadWords: 60000]];
hornet =>
RETURN[CreateFromParameters[fileName: fileName,
deviceCode: DeviceCode[hornet].ORD,
sResolution: 384, fResolution: 384,
imageSSize: 384*8+384/2, imageFSize: 384*11, -- 8.5 by 11 inches
nColors: 1, leftovers: TRUE, bandSSize: 16, maxLoadWords: 60000]];
gnat =>
RETURN[CreateFromParameters[fileName: fileName,
deviceCode: DeviceCode[gnat].ORD,
sResolution: 384, fResolution: 384,
imageSSize: 384*11, imageFSize: 384*14, -- 11 by 14 inches
nColors: 1, leftovers: TRUE, bandSSize: 16, maxLoadWords: 60000]];
plateMaker =>
RETURN[CreateFromParameters[fileName: fileName,
deviceCode: DeviceCode[mig].ORD,
sResolution: 880, fResolution: 880,
imageSSize: 880*11, imageFSize: 880*8+880/2, -- 11 by 8.5 inches
nColors: 1, leftovers: TRUE, bandSSize: 16, maxLoadWords: 60000]];
reticleMaker =>
RETURN[CreateFromParameters[fileName: fileName,
deviceCode: DeviceCode[reticleMaker].ORD,
sResolution: 880, fResolution: 880,
imageSSize: 880*10, imageFSize: 880*10, -- 10 by 10 inches ???
nColors: 1, leftovers:
TRUE, bandSSize: 16, maxLoadWords: 60000]];
These are surely wrong.
puffin =>
RETURN[CreateFromParameters[fileName: fileName,
deviceCode: DeviceCode[puffin].ORD,
sResolution: 384, fResolution: 384,
imageSSize: 384*11, imageFSize: 384*8+384/2, -- 11 by 8.5 inches
nColors: 3, leftovers: TRUE, bandSSize: 16, maxLoadWords: 60000]];
colorVersatec =>
RETURN[CreateFromParameters[fileName: fileName,
deviceCode: DeviceCode[colorVersatec].ORD,
sResolution: 200, fResolution: 200,
imageSSize: 200*100, imageFSize: 200*40, -- 100 (arbitrary) by 40 inches
nColors: 4, leftovers: FALSE, bandSSize: 64, maxLoadWords: 100000]];
ENDCASE;