To Gimp or Not To Gimp

In the world of photo editing, adobe photoshop is king. They really do have an amazing product. It’s sleek, works great, and is very robust sporting dozens and dozens of functions and endless possibilities for the graphic artist.  Photoshop is also very, very expensive. The entire Adobe creative suite is a major ripoff in our opinion. What is the alternative… well, opensource market provides ….

gimp gainesville

Gimp is the open source alternative to expensive photoshop. It is very robust and does basically everything AP will. It takes some getting used to but the interface is clean simple and there are plenty of core functions to keep you busy.  Adobe has dominated the photo editing market, unfortunately no one has something exactly as powerful for a reasonable price but Gimp is as close as it gets. But it’s free bro!

 

 

More Web Design Blog Content

Jquery Simple Fadeout

A cute little snippet to show a simple green bar upon a successful edit. <?php if(isset($_GET[‘edit’])){ ?> <div id=’notifyy’> Edited Successfully </div>     <script type=”text/javascript”>     $( ‘#notifyy’ ).show(function(){     $(this).fadeOut(5000);     });     </script> <?php } ?> The CSS: #notifyy{width:100%;background:#2f5001;padding:4px 15px;color:#fff;} Always,

New Web Program: Brain Development Maps

Creating braindevelopmentmaps.org was a great opportunity to work on a very interesting site; Shirley came to Livewire with very specific needs. There is nothing ‘typical’ or ‘standard’ about this website, it is in a word, unique. Braindevelopmentmaps.org allows users to view highly detailed brain mapped images online. These

New Beginnings: Mcgriff WIlliams Insurance

New clients start today: Mcgriff Williams Insurance has decided to start a new campaign for online insurance quotes. We’ll be providing a key marketing role with their new website: INSURENCY.com They have the very latest in online quotes and are attempting to break into a heavily saturated market

WordPress: Capturing Post Author Meta

An easy one here from your local Gainesville Web Designer: How to retreive the author information from a post in the WordPress loop. This assumes you’re in the loop, of course. $meta_field= get_the_author_meta( ‘your_meta’ );   Badda-bing badda-boom. You’re done. It really is that simple. Just use get_the_author_meta,