<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>EasyImg Blog</title>
	<atom:link href="http://blog.easyimg.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.easyimg.com</link>
	<description>The World&#039;s First Internet Graphics Engine</description>
	<lastBuildDate>Sun, 07 Mar 2010 18:25:29 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Techniques for custom fonts in web design</title>
		<link>http://blog.easyimg.com/techniques-for-custom-fonts-in-web-design/</link>
		<comments>http://blog.easyimg.com/techniques-for-custom-fonts-in-web-design/#comments</comments>
		<pubDate>Sun, 07 Mar 2010 17:51:26 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[Custom Fonts]]></category>

		<guid isPermaLink="false">http://blog.easyimg.com/?p=70</guid>
		<description><![CDATA[Using non web standard fonts in web design is hard.  Not because it's technically impossible, but because of browser differences and copyright issues with font distribution. All other modern browsers take a different approach from using IE's proprietary font file format EOT for font embedding. But they can all link to fonts.]]></description>
			<content:encoded><![CDATA[<p>(Disclosure: I want you to use <a title="EasyImg" href="http://www.easyimg.com" target="_blank">easyimg</a>. But I also want to know if <a title="EasyImg" href="http://www.easyimg.com" target="_blank">easyimg</a> solves your problem or not. It can be used to display custom fonts in your web design. But it might not be the solution you want to use. I&#8217;d like to know this in order to improve it or change it to meet your needs.)</p>
<p>Using non web standard fonts in web design is hard.  Not because it&#8217;s technically impossible, but because of browser differences and copyright issues with font distribution. All other modern browsers take a different approach from using IE&#8217;s proprietary font file format EOT for font embedding. But they can all link to fonts.</p>
<ul>
<li>
<h2>Use CSS&#8217;s @font-face (embeddable fonts)</h2>
<p>Including a custom font in your design using CSS&#8217;s @font-face property with the src attribute linking to the font  makes sense and follows the principle of separation of responsibilities well. It&#8217;s supported by modern browsers. Here&#8217;s an example on how to do it (<a title="CSS @ Ten: The Next Big Thing from A List Apart" href="http://www.alistapart.com/articles/cssatten" target="_blank">CSS @ Ten: The Next Big Thing</a>).</p>
<pre><code>@font-face {
font-family: "Kimberley";
  src: url(http://www.princexml.com/fonts/larabie/ »
  kimberle.ttf) format("truetype");
}</code></pre>
<p>You can then use the Kimberley font in your CSS definitions. However, I think the major roadblock in this technique right now is when you use commercial fonts that don&#8217;t allow for web distribution in their licenses. This technique results in the browser downloading the file to the users&#8217; computer thus distributing it, infringing on the license. So for fonts that allow this use, I think this should be your first approach.</li>
<li>
<h2>Javascript + Server component for font conversion + VML/SVG/HTML5 Canvas</h2>
<p>If you want to support older browsers, implementing <a title="Typeface" href="http://typeface.neocracy.org/" target="_blank">typeface.js</a> or <a title="Cufon" href="http://cufon.shoqolate.com/" target="_blank">cufon</a> would be your next approach. These implementations require linking to their javascript library and converting the font that you want to use into a javascript representation of it. However, these solutions may still infringe on commercial font licenses since they distribute a javascript representation of the font which exposes the font for modification.</li>
<li>
<h2>Image Replacement</h2>
<p>The last technique uses images for your text. You can create an image with the custom font and either include it inline with the markup or set the background in CSS of the DOM element to the image. I think the main limitation of this technique is that it&#8217;s not practical to display lots of text this way. I don&#8217;t think you&#8217;d want to display your whole article as an image. But for short text like headlines and marketing  messages, this is practical. In addition, this doesn&#8217;t distribute the font so it complies with commercial font licenses.</p>
<p>Here are 2 approaches to implementing the image replacement technique.</p>
<ol>
<li>You can just create an image and include it inline with the markup. Bad for SEO since the text is not readable by search engines.</li>
<li>You can create an image and set the DOM elements background to it via CSS. Good for SEO since the text is still in the markup.</li>
</ol>
<p>I think the 2nd technique is the best out of the two since it allows you to include the text in the markup, making it more SEO friendly.</li>
</ul>
<p>What technique do you prefer and use? Why do you use one over the other? Do you even use custom web fonts in your design?</p>
<h3>Research for using custom fonts in your web design</h3>
<ul>
<li><a title="Ubiquitous web font embedding" href="http://www.webdirections.org/blog/ubiquitous-web-font-embedding-just-got-a-step-closer/">Ubiquitous web font embedding just got a step closer</a></li>
<li><a title="Rendering text with javascript" href="http://typeface.neocracy.org/usage.html">Rendering text with javascript and typeface</a></li>
<li><a title="Using cufon for custom fonts" href="http://wiki.github.com/sorccu/cufon/about">Using cufon for custom fonts</a></li>
<li><a title="How to use @font-face in CSS" href="http://spyrestudios.com/21-awesome-font-face-embedable-typefaces/">How to use @font-face in CSS</a></li>
<li><a title="Which browsers support font embedding" href="http://stackoverflow.com/questions/488275/which-browsers-support-font-embedding">Which browsers support font embedding</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://blog.easyimg.com/techniques-for-custom-fonts-in-web-design/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Smashing Magazine Advertising Coming Soon</title>
		<link>http://blog.easyimg.com/smashing-magazine-advertising-coming-soon/</link>
		<comments>http://blog.easyimg.com/smashing-magazine-advertising-coming-soon/#comments</comments>
		<pubDate>Sat, 05 Sep 2009 23:09:29 +0000</pubDate>
		<dc:creator>wrangler</dc:creator>
				<category><![CDATA[Marketing]]></category>
		<category><![CDATA[Advertising]]></category>
		<category><![CDATA[Internet Graphics Engine]]></category>
		<category><![CDATA[Smashing Magazine]]></category>

		<guid isPermaLink="false">http://blog.easyimg.com/?p=63</guid>
		<description><![CDATA[If you&#8217;re a regular reader of Smashing Magazine, you should start seeing our first ad buy for EasyIMG very soon! We love Smashing Magazine and we think their readers will love EasyIMG. We&#8217;re excited to get the word out about, what we think, is an awesome product. We want people to know about our Internet [...]]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;re a regular reader of Smashing Magazine, you should start seeing our first ad buy for EasyIMG very soon! We love Smashing Magazine and we think their readers will love EasyIMG.</p>
<p>We&#8217;re excited to get the word out about, what we think, is an awesome product. We want people to know about our <em><a href="http://www.easyimg.com">Internet Graphics Engine</a></em>. So far in our own development efforts, it&#8217;s been a real winner. It saves gobs of time and produces crisp, clean, beautiful images that make our sites look sweet.</p>
<p>If you find it half as useful as we do, EasyIMG will change the way you approach web development. Sign in with your Google id and let us know what you think!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.easyimg.com/smashing-magazine-advertising-coming-soon/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to create common web site graphics and reduce design time with EasyImg.com</title>
		<link>http://blog.easyimg.com/how-to-create-common-web-site-graphics-and-reduce-design-time-with-easyimg-com/</link>
		<comments>http://blog.easyimg.com/how-to-create-common-web-site-graphics-and-reduce-design-time-with-easyimg-com/#comments</comments>
		<pubDate>Tue, 01 Sep 2009 21:32:18 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[How To]]></category>

		<guid isPermaLink="false">http://blog.easyimg.com/?p=51</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="350" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="src" value="http://www.youtube.com/v/gOe1H82Vs80" /><embed type="application/x-shockwave-flash" width="425" height="350" src="http://www.youtube.com/v/gOe1H82Vs80"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.easyimg.com/how-to-create-common-web-site-graphics-and-reduce-design-time-with-easyimg-com/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Developers are not Marketers</title>
		<link>http://blog.easyimg.com/developers-are-not-marketers/</link>
		<comments>http://blog.easyimg.com/developers-are-not-marketers/#comments</comments>
		<pubDate>Sat, 29 Aug 2009 05:42:29 +0000</pubDate>
		<dc:creator>wrangler</dc:creator>
				<category><![CDATA[Marketing]]></category>

		<guid isPermaLink="false">http://blog.easyimg.com/?p=47</guid>
		<description><![CDATA[Developers usually make crappy marketers and we&#8217;re no different. But we&#8217;re trying to make amends. It&#8217;s tough to balance the desire to build cool new functionality and the need to tell people about said features. We&#8217;re learning&#8230;.slowly. We&#8217;re looking for advertising space. We want to reach out to designers and developers across the web and [...]]]></description>
			<content:encoded><![CDATA[<p>Developers usually make crappy marketers and we&#8217;re no different. But we&#8217;re trying to make amends. It&#8217;s tough to balance the desire to build cool new functionality and the need to tell people about said features. We&#8217;re learning&#8230;.slowly. <img src='http://blog.easyimg.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>We&#8217;re looking for advertising space. We want to reach out to designers and developers across the web and tell them about our <em>Internet Graphics Engine</em>. We think EasyIMG will revolutionize the way web apps are written and we need to tell the world.</p>
<p>If you have any advertising or marketing suggestions, let us know.</p>
<p>Thanks!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.easyimg.com/developers-are-not-marketers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Convert Text to Image</title>
		<link>http://blog.easyimg.com/convert-text-to-image/</link>
		<comments>http://blog.easyimg.com/convert-text-to-image/#comments</comments>
		<pubDate>Sat, 15 Aug 2009 16:12:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Features]]></category>

		<guid isPermaLink="false">http://blog.easyimg.com/?p=34</guid>
		<description><![CDATA[Converting some text to an image is EXACTY the problem that EasyImg solves. But that&#8217;s just 1 user story that it addresses. It&#8217;s an internet graphics engine (IGE) that has many options, all accessible via HTML&#8217;s IMG tag. So if you want to convert a few lines of text to a png, gif, or jpeg [...]]]></description>
			<content:encoded><![CDATA[<p>Converting some text to an image is EXACTY the problem that <a title="EasyImg converts text to image" href="http://www.easyimg.com/" target="_blank">EasyImg</a> solves. But that&#8217;s just 1 user story that it addresses. It&#8217;s an internet graphics engine (IGE) that has many <a title="EasyImg documentation" href="http://www.easyimg.com/Docs.aspx" target="_blank">options</a>, all accessible via HTML&#8217;s IMG tag. So if you want to convert a few lines of text to a png, gif, or jpeg image; or create a whole <a title="EasyImg graphics are 99.9% EasyImgs" href="http://www.easyimg.com">web site</a> design, <a title="EasyImg graphics from a url." href="http://www.easyimg.com">EasyImg</a> can handle it.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.easyimg.com/convert-text-to-image/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>EasyImg adds gradient feature</title>
		<link>http://blog.easyimg.com/easyimg-adds-gradient-feature/</link>
		<comments>http://blog.easyimg.com/easyimg-adds-gradient-feature/#comments</comments>
		<pubDate>Tue, 21 Jul 2009 04:09:48 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[EasyImg Updates]]></category>
		<category><![CDATA[howto]]></category>

		<guid isPermaLink="false">http://blog.easyimg.com/?p=22</guid>
		<description><![CDATA[We&#8217;re adding features all the time. Tonight we added the ability to create images with a gradient. This url: http://images.easyimg.com/3f0e28df/gc-848484/t-Click%20here/bc-cacaca/pl-5/pr-5/pt-3/pb-3/bold/c-333333/bw-1/bg.png results in this:]]></description>
			<content:encoded><![CDATA[<p>We&#8217;re adding features all the time. Tonight we added the ability to create images with a gradient. This url:</p>
<p>http://images.easyimg.com/3f0e28df/gc-848484/t-Click%20here/bc-cacaca/pl-5/pr-5/pt-3/pb-3/bold/c-333333/bw-1/bg.png</p>
<p>results in this:</p>
<div class="wp-caption alignnone" style="width: 92px"><a href="http://www.easyimg.com"><img class=" " title="EasyImg button with a gradient" src="http://images.easyimg.com/3f0e28df/gc-848484/t-Click%20here/bc-cacaca/pl-5/pr-5/pt-3/pb-3/bold/c-333333/bw-1/bg.png" alt="EasyImg button with a gradient" width="82" height="29" /></a><p class="wp-caption-text">EasyImg button with a gradient</p></div>
]]></content:encoded>
			<wfw:commentRss>http://blog.easyimg.com/easyimg-adds-gradient-feature/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Video Tutorials Coming Soon!</title>
		<link>http://blog.easyimg.com/hello-world/</link>
		<comments>http://blog.easyimg.com/hello-world/#comments</comments>
		<pubDate>Tue, 23 Jun 2009 06:03:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[EasyImg Updates]]></category>

		<guid isPermaLink="false">http://blog.easyimg.com/?p=1</guid>
		<description><![CDATA[Hi, Welcome to the EasyImg blog.  We recently launched this blog site in order to host additional information helpful to our customers and people like you. Very soon we will be posting some very informative video tutorials on how to effectively use EasyImg in your software development. Please post a comment and check back real [...]]]></description>
			<content:encoded><![CDATA[<p>Hi,</p>
<p>Welcome to the EasyImg blog.  We recently launched this blog site in order to host additional information helpful to our customers and people like you. Very soon we will be posting some very informative video tutorials on how to effectively use EasyImg in your software development.</p>
<p>Please post a comment and check back real soon!</p>
<p>Cubicle5&#8242;s EasyImg team</p>
<p> </p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="350" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="src" value="http://www.youtube.com/v/gOe1H82Vs80" /><embed type="application/x-shockwave-flash" width="425" height="350" src="http://www.youtube.com/v/gOe1H82Vs80"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.easyimg.com/hello-world/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rounded Corner Div Background Images</title>
		<link>http://blog.easyimg.com/rounded-corner-div-background-images/</link>
		<comments>http://blog.easyimg.com/rounded-corner-div-background-images/#comments</comments>
		<pubDate>Sun, 24 May 2009 01:47:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Products]]></category>

		<guid isPermaLink="false">http://www.cubicle5.com/?p=21</guid>
		<description><![CDATA[EasyImg was initially created to convert text to images. We wanted to solve the problem of using special fonts for text on web pages consistently across the most popular web browsers. We quickly realized that this service was so much more, like for rounded corner background images. This is an example of a rounded corner [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.easyimg.com/">EasyImg</a> was initially created to convert text to images. We wanted to solve the problem of using special fonts for text on web pages consistently across the most popular web browsers. We quickly realized that this service was so much more, like for rounded corner background images.</p>
<h3 style="background: transparent url('http://images.easyimg.com/3f0e28df/bordercolor-ff0000/borderwidth-1/height-100/width-600/rounded-8/nocache/round_corners.png') 0 0 no-repeat;width:600px;height:100px;margin: 0;padding: 30px 5px 10px 5px;text-align: center;color: #15ff00;">
This is an example of a rounded corner background image that&#8217;s generated by <a href="http://www.easyimg.com/">EasyImg</a>.<br />
</h3>
<p>Check out other possible uses for <a href="http://www.easyimg.com/">EasyImg</a> at the <a href="http://www.easyimg.com/Samples.aspx">samples</a> page.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.easyimg.com/rounded-corner-div-background-images/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Faster Page Loads with EasyImg</title>
		<link>http://blog.easyimg.com/faster-page-loads-with-easyimg/</link>
		<comments>http://blog.easyimg.com/faster-page-loads-with-easyimg/#comments</comments>
		<pubDate>Thu, 14 May 2009 03:36:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Products]]></category>
		<category><![CDATA[easyimg]]></category>

		<guid isPermaLink="false">http://www.cubicle5.com/?p=11</guid>
		<description><![CDATA[So here&#8217;s the guts of this post. Loading images from different domains can make your web page load faster because the browser will download resources (e.g. images) in parallel from different domains (Performance Research, Part 4: Maximizing Parallel Downloads in the Carpool Lane). Since EasyImg is a different domain than your web site, using EasyImg [...]]]></description>
			<content:encoded><![CDATA[<p>So here&#8217;s the guts of this post. Loading images from different domains can make your web page load faster because the browser will download resources (e.g. images) in parallel from different domains (<a href="http://yuiblog.com/blog/2007/04/11/performance-research-part-4/" target="_blank">Performance Research, Part 4: Maximizing Parallel Downloads in the Carpool Lane</a>). Since EasyImg is a different domain than your web site, using EasyImg for your images will give you faster page loads.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.easyimg.com/faster-page-loads-with-easyimg/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hello EasyImg!</title>
		<link>http://blog.easyimg.com/hello-world-2/</link>
		<comments>http://blog.easyimg.com/hello-world-2/#comments</comments>
		<pubDate>Tue, 12 May 2009 03:41:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Products]]></category>
		<category><![CDATA[easyimg]]></category>

		<guid isPermaLink="false">http://cubicle5.com/?p=1</guid>
		<description><![CDATA[We&#8217;re ramping up for our 1st product (EasyImg) launch. We&#8217;re excited. We hope you will be too. It&#8217;s a web service that generates graphics from a url. Check it out-&#62;www.easyimg.com]]></description>
			<content:encoded><![CDATA[<p>We&#8217;re ramping up for our 1st product (EasyImg) launch. We&#8217;re excited. We hope you will be too. It&#8217;s a web service that generates graphics from a url. Check it out-&gt;<a href="http://www.easyimg.com/" title="EasyImg">www.easyimg.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.easyimg.com/hello-world-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
