A Batch File for Plotting Stream Files to TIFFby Steve DiBartolomeo and Hagai Pettel An Artwork customer recently asked us for advise on how to do the following: 
 Two programs are needed to do this: QckBool to handle the unionization of the data within a layer and GDSPLOT to rasterize the layer and output a TIFF file. Unionize Each LayerThis script is easy to write assuming that the user already knows: 
 Let's do a simple example where the name of the GDSII file is demo5.gds, the top level structure is named TOP, and the layers to process are: 1,2,3,4 and 5. The script will be: 
boolw32f.exe demo5.gds demo5_out.gds TOP 1;2;3;4;5 +1;+2;+3;+4;+5 +nclip:1,1 -union
where
boolw32f.exe            name of the Qckbool engine that will do the union operation
demo5.gds               the input GDSII file
demo5_out.gds           the output GDSII file after union
TOP                     the top level structure for demo5.gds
1;2;3;4;5               list of layers in the output file
+1;+2;+3;+4;+5          list of input layers and the union operation (+) 
+nclip:1,1              instructs bool32w to stripe the layout as needed for
                        max efficiency.
-union                  after striping to rebuild (by union) the cuts across
                        stripes.
 |