图纸边框生成器

带分区参照标记的可打印图框

图框

分区标记

边框按精确毫米尺寸绘制。请以 100% 比例打印,以保持留白真实。

实时预览



热门搜索
图框生成器 图纸边框模板 标题栏边框 可打印图纸框 分区参照边框 cad图纸框

将此免费工具添加到你自己的网站 — 复制并粘贴下面的代码。

'; const win = window.open('', '_blank'); if (!win) { if (window.showToast) window.showToast('warning', T.popup_blocked); else alert(T.popup_blocked); return; } win.document.open(); win.document.write(html); win.document.close(); win.focus(); setTimeout(() => win.print(), 300); }); downloadBtn.addEventListener('click', async () => { const token = await ensureCharged(); if (!token) return; if (token.downloadUrl) { window.location.href = token.downloadUrl; return; } // Free fallback (admin set the cost to 0): no server PDF was // produced, so offer the exact-size SVG instead. const c = readConfig(); const node = svg.cloneNode(true); node.setAttribute('width', c.W + 'mm'); node.setAttribute('height', c.H + 'mm'); const blob = new Blob([new XMLSerializer().serializeToString(node)], { type: 'image/svg+xml' }); const a = document.createElement('a'); a.href = URL.createObjectURL(blob); a.download = 'sheet-border.svg'; a.click(); URL.revokeObjectURL(a.href); }); render(); })();