🖼 SENATE IMAGE CREATOR TOOLS
Select an image design tool.
function runImageTool(){
var tool=document.getElementById("imageTool").value; var text=document.getElementById("userInput").value;
if(text==""){ alert("Enter topic first"); return; }
var output="";
if(tool=="flyer_business"){ output="BUSINESS FLYER\n\nBusiness: "+text+"\n\nSpecial Offer!\nContact us today for more information.\n\nLocation | Phone | Website"; }
else if(tool=="flyer_event"){ output="EVENT FLYER\n\nEvent: "+text+"\n\nDate: ______\nLocation: ______\n\nJoin us for an amazing experience."; }
else if(tool=="flyer_realestate"){ output="REAL ESTATE FLYER\n\nProperty: "+text+"\n\nBeautiful property available now.\nContact our agents for viewing."; }
else if(tool=="flyer_church"){ output="CHURCH FLYER\n\nEvent: "+text+"\n\nJoin us for worship and fellowship.\nEveryone is welcome."; }
else if(tool=="banner_website"){ output="WEBSITE BANNER IDEA\n\nTopic: "+text+"\n\nLarge headline\nShort tagline\nCall-to-action button"; }
else if(tool=="banner_youtube"){ output="YOUTUBE CHANNEL BANNER IDEA\n\nChannel Topic: "+text+"\n\nDesign Elements:\n• Bold title\n• Bright colors\n• Social media handles"; }
else if(tool=="banner_linkedin"){ output="LINKEDIN BANNER IDEA\n\nProfessional headline about "+text+"\nAdd brand colors and company tagline."; }
else if(tool=="banner_facebook"){ output="FACEBOOK COVER IDEA\n\nTopic: "+text+"\nAdd slogan, brand message, and contact info."; }
else if(tool=="banner_ad"){ output="ADVERTISING BANNER\n\nPromotion: "+text+"\n\nHighlight special offer and clear call to action."; }
else if(tool=="poster"){ output="POSTER DESIGN IDEA\n\nTopic: "+text+"\n\nMain headline\nSupporting text\nCall to action"; }
document.getElementById("resultText").innerText=output;
var words=output.split(" ").length;
document.getElementById("wordCount").innerText="Word count: "+words;
}
function copyText(){
var text=document.getElementById("resultText").innerText;
navigator.clipboard.writeText(text);
alert("Copied!");
}
function downloadText(){
var text=document.getElementById("resultText").innerText;
var blob=new Blob([text],{type:"text/plain"});
var link=document.createElement("a");
link.href=URL.createObjectURL(blob);
link.download="senate-image-tools.txt";
link.click();
}
function downloadPDF(){
var text=document.getElementById("resultText").innerText;
var win=window.open("","","width=600,height=400");
win.document.write("
"+text+"
");
win.print();
}
function shareContent(){
var text=document.getElementById("resultText").innerText;
if(navigator.share){
navigator.share({ title:"Generated with Senate Image Tools", text:text, url:"https://senatecareerhub.com" });
}else{
alert("Sharing not supported on this browser");
}
}