Tạo khung tên

Khung bản vẽ có thể in với khung tên dự án

Khổ giấy

Khung tên

Khung được vẽ theo kích thước milimét chính xác. In ở tỷ lệ 100% để bản vẽ giữ đúng tỷ lệ.

Xem trước trực tiếp



Tìm kiếm phổ biến
tạo khung tên khung tên bản vẽ mẫu khung tên cad khung tên in được mẫu khổ bản vẽ công cụ tạo khung tên

Thêm công cụ miễn phí này vào trang web của riêng bạn — sao chép và dán mã bên dưới.

'; 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 = 'title-block.svg'; a.click(); URL.revokeObjectURL(a.href); }); render(); })();