축척 막대 및 북향 화살표

인쇄 가능한 그래픽 축척 막대 및 북향 표시

축척 막대

1:

북향 화살표

인쇄된 막대 길이:

막대는 정확한 밀리미터 크기로 축척에 맞게 생성됩니다. 정확하게 측정되도록 100% 배율로 인쇄하세요.

실시간 미리보기



인기 검색어
스케일바 생성기 그래픽 스케일바 방위표 생성기 인쇄용 스케일바 지도 스케일바 방위표 기호

이 무료 도구를 귀하의 웹사이트에 추가하세요 — 아래 코드를 복사하여 붙여넣으세요.

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