
Page loading...
Get the best experience with Internet Explorer 9
Based on your current browser, you are not seeing all that
X-Icon Editor has to offer. Learn more about
Internet Explorer 9 for Windows Vista and Windows 7.

Uploading...
Step 1: Upload your image.
Supported formats are jpg, gif, bmp, png and ico.
Step 2: Crop your image.
Supported all formats but icons.
Step 3: Select the sizes of the image to be exported.
At least one size must be chosen.
Step 4: Click "Ok" to import your image.
Please wait...
(icon being created)
Your icon has been created correctly. Using the button below, you can open the preview
in a new browser window.

Please wait...
(icon being created)
Your icon has been created correctly.
Define the Favicon
To indicate that the icon is available to the browser, use the
<link> tag
in the <head> element of the page, pointing to the
location of the favicon:
<link rel="shortcut icon" href="favicon.ico"/>
Optimize Performance
In order to optimize network performance, please use the following best practices:
- Specify caching behavior in the HTTP header of the resource (IE9 respects max-age
and expires date)
- Compress the icon to minimize its size (ex. GZIP)
| Current size |
Compressed Size (estimated) |
|
|
|

Please wait...

Your icon is empty. Please import an image or edit the icon before proceeding.
<!-- Add this code into the <head> tag of your HTML document -->
<!-- Make sure the href of the link tag points to the icon you created -->
<link rel="shortcut icon" type="image/ico" href="/favicon.ico" />
<meta name="application-name" content="Build My Pinned Site" />
<meta name="msapplication-starturl" content="http://buildmypinnedsite.com" />
<meta name="msapplication-navbutton-color" content="#3480C0" />
<meta name="msapplication-window" content="width=1024;height=768" />
<meta name="msapplication-tooltip" content="Start Build My Pinned Site" />
<!-- Include jQuery via the Microsoft CDN-->
<script src="http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.5.2.min.js"
type="text/javascript" ></script>
<!-- Include the pinify jQuery plugin -->
<script src="jquery.pinify.js" type="text/javascript"></script>
<script type="text/javascript" charset="utf-8">
$(document).ready(function(){
// Here we're adding calling pinify and passing it a set of options
// pinify will then automatically create the correct <meta> tags and
// insert them into the head of your document
$("head").pinify({
applicationName: "Build My Pinned Site",
favIcon: "/favicon.ico",
navColor: "#3480C0",
startUrl: "http://buildmypinnedsite.com",
tooltip: "Start Build My Pinned Site",
window: "width=1024;height=768"
});
// pinify() can be called with no parameters,
// if it is, the plugin will use current information available
// to the browser to set the needed values.
});
</script>