100% Free · No Signup · Export as PNG
SWOT Analysis Generator
Create a professional SWOT analysis in minutes. Add your strengths, weaknesses, opportunities and threats — then export your diagram as a PNG image or copy as formatted text.
Privacy Guaranteed — Your SWOT analysis is saved only to your browser. Nothing is sent to any server.
What are you analysing?
🏢 Business
📦 Product Launch
🧑 Personal Career
🚀 Startup
📋 Project
🎓 University Application
0
Strengths
0
Weaknesses
0
Opportunities
0
Threats
💪
S
Strengths
Internal positive factors — what you do well, unique resources, competitive advantages...
⚠️
W
Weaknesses
Internal negative factors — areas to improve, resource gaps, skill limitations...
🌟
O
Opportunities
External positive factors — market trends, emerging needs, untapped segments...
⚡
T
Threats
External negative factors — competition, regulatory changes, economic risks...
Auto-saved
Export Preview — Click to Download PNG
💡 SWOT Analysis Tips
${tip}
`).join('');
}// ─── SAVE ────────────────────────────────────────────────────
function schedSave() {
const dot = document.getElementById('saveDot');
const lbl = document.getElementById('saveLabel');
if (dot) dot.style.background = '#f59e0b';
if (lbl) lbl.textContent = 'Saving…';
clearTimeout(saveTimer);
saveTimer = setTimeout(() => {
try {
localStorage.setItem(STORAGE_KEY, JSON.stringify(data));
if (dot) dot.style.background = '#10b981';
if (lbl) lbl.textContent = 'Auto-saved';
} catch(e) {}
}, 1500);
}function clearAll() {
const total = data.S.length + data.W.length + data.O.length + data.T.length;
if (!total && !data.subject) return;
if (confirm('Clear all SWOT analysis data?')) {
data.subject = ''; data.S = []; data.W = []; data.O = []; data.T = [];
document.getElementById('subjectInput').value = '';
renderAll();
toast('Cleared!');
}
}// ─── MODE ────────────────────────────────────────────────────
function setMode(mode) {
if (mode === 'advanced') {
document.body.classList.add('advanced-mode');
document.getElementById('btnSimple').classList.remove('active');
document.getElementById('btnAdvanced').classList.add('active');
document.getElementById('modeHint').textContent = 'PNG preview, stats, tips, download and print options';
updateCanvas();
} else {
document.body.classList.remove('advanced-mode');
document.getElementById('btnSimple').classList.add('active');
document.getElementById('btnAdvanced').classList.remove('active');
document.getElementById('modeHint').textContent = 'Build your SWOT and export as PNG';
}
try { localStorage.setItem('sst_swot_mode', mode); } catch(e) {}
}// ─── HELPERS ─────────────────────────────────────────────────
function escHtml(str) {
return (str||'').replace(/&/g,'&').replace(//g,'>').replace(/"/g,'"');
}function toast(msg) {
const t = document.getElementById('toast');
t.textContent = msg;
t.classList.add('show');
setTimeout(() => t.classList.remove('show'), 2400);
}init();