当前位置:网站首页>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文件名
边栏推荐
- 测试用例很难?有手就行
- Analysys and the Alliance of Small and Medium Banks jointly released the Hainan Digital Economy Index, so stay tuned!
- The softmax function is used in TF;
- Test cases are hard?Just have a hand
- 零基础SQL教程: 基础查询 05
- 项目1-PM2.5预测
- 查询跟踪快递单号物流,智能分析物流中转有延误的单号
- Use tf.argmax in Tensorflow to return the index of the maximum value of the tensor along the specified dimension
- Pico neo3 Unity打包设置
- 1061 判断题 (15 分)
猜你喜欢
随机推荐
零基础SQL教程: 主键、外键和索引 04
Interaction of Pico neo3 in Unity
伦敦银规则有哪些?
Four operations in TF
Pico neo3 Unity打包设置
详述 MIMIC护理人员信息表(十五)
1046 punches (15 points)
4.1-支持向量机
囍楽cloud task source code
1002 Write the number (20 points)
美术2.4 UV原理基础
TF中使用softmax函数;
The most complete documentation on Excel's implementation of grouped summation
少年成就黑客,需要这些技能
1076 Wifi Password (15 points)
【LaTex-错误和异常】\verb ended by end of line.原因是因为闭合边界符没有在\verb命令所属行中出现;\verb命令的正确和错误用法、verbatim环境的用法
【Day_13 0509】▲跳石板
初级软件测试工程师笔试试题,你知道答案吗?
js根据当天获取前几天的日期
动态代理学习









