모눈종이 생성기

인쇄 가능한 격자, 도트 및 등각 격자

격자는 정확한 밀리미터 크기로 생성됩니다. 간격이 정확하게 유지되도록 100% 배율(\"페이지에 맞춤\" 없이)로 인쇄하세요.

실시간 미리보기



인기 검색어
모눈종이 생성기 인쇄용 그래프 용지 도트 그리드 용지 아이소메트릭 그리드 용지 그래프 용지 pdf 모눈종이 제작기

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

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