-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsvg-to-png.html
More file actions
54 lines (54 loc) · 3.91 KB
/
svg-to-png.html
File metadata and controls
54 lines (54 loc) · 3.91 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<title>SVG to PNG Converter — Free, Private, No Upload</title>
<meta name="description" content="Convert SVG vector files to PNG images instantly in your browser. Perfect for logos, icons, and illustrations. No upload, no server. 100% free.">
<link rel="canonical" href="https://purpledoubled.github.io/file-converter/svg-to-png.html">
<meta property="og:title" content="SVG to PNG Converter — Free & Private">
<meta property="og:description" content="Convert SVG vector graphics to PNG raster images in your browser. No upload needed.">
<meta property="og:type" content="website">
<script type="application/ld+json">{"@context":"https://schema.org","@type":"WebApplication","name":"SVG to PNG Converter","url":"https://purpledoubled.github.io/file-converter/svg-to-png.html","description":"Convert SVG to PNG privately in your browser.","applicationCategory":"UtilityApplication","operatingSystem":"Any","offers":{"@type":"Offer","price":"0","priceCurrency":"USD"}}</script>
<style>
body{font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif;background:#f8fafc;color:#0f172a;margin:0}
.hero{background:linear-gradient(135deg,#6366f1,#a855f7);color:#fff;padding:48px 24px;text-align:center}
.hero h1{font-size:36px;font-weight:800;margin:0 0 12px}
.hero p{font-size:18px;opacity:.9;max-width:600px;margin:0 auto 24px}
.badge{display:inline-flex;align-items:center;gap:6px;background:rgba(255,255,255,.2);padding:8px 20px;border-radius:99px;font-size:14px;font-weight:600;margin:4px}
.cta{display:inline-block;background:#fff;color:#6366f1;padding:16px 40px;border-radius:12px;font-size:18px;font-weight:700;text-decoration:none;margin-top:24px}
.container{max-width:800px;margin:0 auto;padding:40px 24px}
.faq h2{font-size:24px;font-weight:700;margin-bottom:24px}
.faq-item{background:#fff;border:1px solid #e2e8f0;border-radius:12px;padding:20px;margin-bottom:12px}
.faq-item h3{font-size:16px;font-weight:700;margin:0 0 8px;color:#6366f1}
.faq-item p{font-size:14px;color:#64748b;margin:0;line-height:1.6}
footer{text-align:center;padding:24px;color:#64748b;font-size:13px}
footer a{color:#6366f1}
</style>
</head>
<body>
<div class="hero">
<h1>SVG to PNG Converter</h1>
<p>Rasterize SVG vector graphics to PNG images in your browser. Perfect when you need a compatible image format for apps that don't support SVG.</p>
<div>
<span class="badge">🛡️ No upload</span>
<span class="badge">🎨 Vector → Raster</span>
<span class="badge">💯 Free</span>
</div>
<a href="index.html" class="cta">Convert SVG to PNG Now →</a>
</div>
<div class="container">
<div class="faq">
<h2>About SVG to PNG Conversion</h2>
<div class="faq-item"><h3>Why convert SVG to PNG?</h3><p>SVG is a vector format — great for logos and icons, but not supported everywhere. Word documents, many apps, and older software only accept raster formats like PNG. Converting makes your graphic universally usable.</p></div>
<div class="faq-item"><h3>Will the image be crisp?</h3><p>Yes. SVGs are rendered at full resolution. The output PNG will be sharp and clear at the original SVG dimensions.</p></div>
<div class="faq-item"><h3>Does it preserve transparency?</h3><p>Yes. PNG supports transparency, so transparent SVG backgrounds stay transparent in the output.</p></div>
<div class="faq-item"><h3>Can I also convert SVG to JPG?</h3><p>Yes! Select JPG as the output format instead. Note that transparent areas become white in JPG.</p></div>
</div>
</div>
<footer>
<p>Also: <a href="heic-to-jpg.html">HEIC to JPG</a> · <a href="pdf-to-png.html">PDF to PNG</a> · <a href="webp-to-jpg.html">WebP to JPG</a> · <a href="jpg-to-pdf.html">JPG to PDF</a> · <a href="index.html">All</a></p>
<p style="margin-top:8px"><a href="https://github.com/PurpleDoubleD/file-converter">Open Source</a></p>
</footer>
</body>
</html>