当前位置:网站首页>klayout--导出版图为gds文件

klayout--导出版图为gds文件

2022-08-11 07:28:00 天天进步2015

    db::Layout layout = pView->active_cellview()->layout();
    db::SaveLayoutOptions option;
    option.select_all_layers();

    db::GDS2WriterOptions gds2_options;
    gds2_options.write_file_properties = true;
    option.set_options(gds2_options);

    db::Writer write(option);
    tl::OutputStream outstream(strFileName.toStdString());
    layout.prop_id(1);
    write.write(layout , outstream);

pView 是 lay::LayoutView*, 指向当前的LayoutView.

主要是设置 db::SaveLayoutOptions

strFileName是导出的gds文件名

原网站

版权声明
本文为[天天进步2015]所创,转载请带上原文链接,感谢
https://blog.csdn.net/exlink2012/article/details/126266353