圖框產生器

附分區參考標記的可列印圖框

圖框

分區標記

圖框以精確毫米尺寸繪製。請以 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(); })();