Actual for You
#1 in Business Subscribe Email Print

You are here: Home > Internet and Businesses Online > Web Development > PIM Team Case Study: Creating Text Effects With PHP and GD

Tags

  • names
  • clients
  • iftablefontsvar contentvar
  • letter above
  • visitors computers

  • Links

  • Commercial Real Estate Loans - 12 Problems to Avoid
  • Lessons We Can Learn from Jonah and the Whale
  • Sleep - Luxury or Necessity
  • Actual for You - PIM Team Case Study: Creating Text Effects With PHP and GD

    7 Rules of Successful Freelancer
    I've been a freelance programmer, web developer and system administrator for three years. Not that much, you'd probably say, you may be right. You may be wrong either. Anyway, when you're 21, three years don't seem to be a little time.I started when I was 18. I had a part-time job in dental clinic (I'm terribly afraid of dentists since then, though I wasn't afraid of them before) and my salary could just cover my Internet bills (in a small town ISPs have very high prices while students can't get much money for work) and leave a little spare money to later spend them on my friends' and parents' birthdays and New Year. I'll tell you the full story some day, now I just want to note that I started from barely nothing and today I only get money from freelance. No full-time office work.1. Work regularly. Don't depend on you mood. You should choose time for you to work, and you must work every day from, eg. 6 pm to midnight, and you mustn't do anything but work duri
    ById(elid).value=color;

    document.getElementById('tabler').style.visibility='hidden';

    }

    Thus we created nice palettes which appear and disappear on a single click and don't take much space on the screen.

    - Drop Shawdows

    The decals offered has the ability to have a drop shadow added so we had to add this option to the online builder. PHP however didn't offered a nice function for that. We created a procedure which draws the texts twice - once the original 100% saturated text and once the shadow with a percentage of the color and appropriate displacement. Of course the shadow was drawn on the image before the main text.

    @imagettftext($img, 20, $gr[$i], $x+$dx, $ys[$i]+$dy, $scolors[$shadowcolor], "fonts/".$_POST['fonts'],$word[$i]);

    - Arcs

    The main problem came when we had to 'rotate' the texts thru arcs. First we created perfect Bezie funtion which to draw the curves and adjust the letter above them. But what a surprise - the curves looked perfect alone, but when we adjusted the letters above them they seemed r

    Robert Bond's Franchise Survey of Women and Minority Franchisor Programs
    Few people know that there is a special publication that is solely geared towards special programs in the franchising industry for women and minority owned franchises. There are some even in the franchising business itself who are unaware of this. Robert Bond has written and sold more books on franchising than any other person in the World.Robert is a personal friend of mind, who I respect for his no BS approach to a reality check in franchising. Each Robert sends out a survey to the franchisors to ask them of their special programs for women and minorities who buy franchises in their franchise systems. Recently I filled out Robert Bond's franchise survey of women and minority programs for the top franchisors. Each franchisor with programs will be ranked. I hope our company will rank high.Women in franchising is a key component of a successful franchisor, previously having been personal friends with Susan Kezios, Founder of "Women in Franchising" in Chicago, I got to know f
    See how you can create graphic effects on text with PHP and GD - drop shadows, arcs, fonts and colors.

    Problem

    A-tec Signs and Sraphics Inc. launched a web site with the idea to sell decals online. To achieve better customers ineterest the website had to integrate online decal builder. The company is offering also decals for vehicles which brought some specific requirements to the builder like having the decal text turning arround 4 types of arcs.

    Goals

    • Provide users with preview area

    • Allow visitors to choose font and color

    • Allow adding drop shadow and selecting drop shadow color

    • Allow turning the text into arcs

    • Real Time calculating

    Solution

    Because of the need for increasing customers interest we had to think about not for perfect math formulas when showing the graphs in the preview area, but for the people who will look at them.

    As we will reaveal below, there were few problems going arround human appreceptions for something 'perfectly smooth' and the matchematical perfect figures.

    Methodology

    We were going to extensively use PHP GD library for the text effects. It provided easy changing of fonts and colors, adding drop shawdows and rotating the texts.

    We had also to create color palletes which to appear when user click and disappear when color is selected (You can personally try the decals creating here). Using hidden layers and javascript was supposed to do the work.

    The main problem in this site was to create 4 types of arcs so when the user selects one of them the text is created arround imaginary arc (like in the vector graphical softwares). We were going to study Bezie's formulas and create these arcs with its help.

    Implementation

    PIM Team Bulgaria had the task to build the full functional online decals builder with the following features:

    - Decal background

    Some users were supposed to have their decals placed on colored background. We had to allow the preview area to be painted in a selected background. First we created the image in temp folder:

    // the name of destination image

    $dest='decals/'.time().'.jpg';

    //the background

    imagefilledrectangle ( $im, 0, 0, 590, 60, $colors[$_POST['bcolors']]);

    $colors array contains the available color which are stored by the administrator in the database.

    Thus, when the visitor selects a background it is passed as parametter to imagefilledrectangle function.

    - Font selection

    Users should be able to select fonts for their future decals. Knowing that we can't consider all the fonts will be available on all visitor's computers we had to upload them on the web server directory.

    We allowed the admin to manage the fonts, adding their names and uploading files in admin area.

    The fonts in the select box came from the database. Selected font was passed in the call to imagettftext funtion which is drawing on the previously created image.

    - Color Selections

    The color selections had to be a palettes which appear when user clicks and disappear when color is selected. The palette had to look as a table with colors and these colors are also defined in the

    admin area so they had to come dynamicly. We had to seed a static javascript function with dynamic content.

    We created a PHP cycle which was taking the colors from the database and then creating a string for HTML table. This table is then passed to a javascript function which creates the palletes with the help of hidden layers:

    function showTable(table)

    {

    mouseX = window.event.x + document.body.scrollLeft+25;

    if(table=='background')

    {

    var content="";

    var y=460;

    }

    if(table=='fonts')

    {

    var content="";

    var y=690;

    }

    if(table=='shadows')

    {

    var content="";

    var y=810;

    }

    document.getElementById('tabler').style.pixelLeft=mouseX;

    document.getElementById('tabler').style.pixelTop=y;

    document.getElementById('tabler').style.visibility='visible';

    document.getElementById('tabler').innerHTML=content;

    }

    Of course, once the user select the desired color we had to hide the pallette:

    function setColor(elid,color,fromid,shc)

    {

    document.getElementById(elid).value=color;

    document.getElementById('tabler').style.visibility='hidden';

    }

    Thus we created nice palettes which appear and disappear on a single click and don't take much space on the screen.

    - Drop Shawdows

    The decals offered has the ability to have a drop shadow added so we had to add this option to the online builder. PHP however didn't offered a nice function for that. We created a procedure which draws the texts twice - once the original 100% saturated text and once the shadow with a percentage of the color and appropriate displacement. Of course the shadow was drawn on the image before the main text.

    @imagettftext($img, 20, $gr[$i], $x+$dx, $ys[$i]+$dy, $scolors[$shadowcolor], "fonts/".$_POST['fonts'],$word[$i]);

    - Arcs

    The main problem came when we had to 'rotate' the texts thru arcs. First we created perfect Bezie funtion which to draw the curves and adjust the letter above them. But what a surprise - the curves looked perfect alone, but when we adjusted the letters above them they seemed ro

    Your Business Plan Will Become Your Partner
    Are you planning to start a new business? Or are you considering expanding your current business and require a bank loan or investment from outsiders?If you are going to look for an investment of capital it is quite likely that you will be required to have a business plan. If you are starting a business, despite the work involved, a business plan can prepare you for the obstacles ahead and help ensure your success.A business plan is something that many small businesses fail to create, however, many business owners are adamant that having a written business plan is one of the keys to their present success. Creating a business plan forces you to contemplate possible obstacles to your business and prepares you to find solutions that will help you to overcome them.To find investors or get a bank loan, they will want to see that you have the experience or resources to run the business. They will want to see your projected income as well as your suggested repayment plan alre
    p>

    Methodology

    We were going to extensively use PHP GD library for the text effects. It provided easy changing of fonts and colors, adding drop shawdows and rotating the texts.

    We had also to create color palletes which to appear when user click and disappear when color is selected (You can personally try the decals creating here). Using hidden layers and javascript was supposed to do the work.

    The main problem in this site was to create 4 types of arcs so when the user selects one of them the text is created arround imaginary arc (like in the vector graphical softwares). We were going to study Bezie's formulas and create these arcs with its help.

    Implementation

    PIM Team Bulgaria had the task to build the full functional online decals builder with the following features:

    - Decal background

    Some users were supposed to have their decals placed on colored background. We had to allow the preview area to be painted in a selected background. First we created the image in temp folder:

    // the name of destination image

    $dest='decals/'.time().'.jpg';

    //the background

    imagefilledrectangle ( $im, 0, 0, 590, 60, $colors[$_POST['bcolors']]);

    $colors array contains the available color which are stored by the administrator in the database.

    Thus, when the visitor selects a background it is passed as parametter to imagefilledrectangle function.

    - Font selection

    Users should be able to select fonts for their future decals. Knowing that we can't consider all the fonts will be available on all visitor's computers we had to upload them on the web server directory.

    We allowed the admin to manage the fonts, adding their names and uploading files in admin area.

    The fonts in the select box came from the database. Selected font was passed in the call to imagettftext funtion which is drawing on the previously created image.

    - Color Selections

    The color selections had to be a palettes which appear when user clicks and disappear when color is selected. The palette had to look as a table with colors and these colors are also defined in the

    admin area so they had to come dynamicly. We had to seed a static javascript function with dynamic content.

    We created a PHP cycle which was taking the colors from the database and then creating a string for HTML table. This table is then passed to a javascript function which creates the palletes with the help of hidden layers:

    function showTable(table)

    {

    mouseX = window.event.x + document.body.scrollLeft+25;

    if(table=='background')

    {

    var content="";

    var y=460;

    }

    if(table=='fonts')

    {

    var content="";

    var y=690;

    }

    if(table=='shadows')

    {

    var content="";

    var y=810;

    }

    document.getElementById('tabler').style.pixelLeft=mouseX;

    document.getElementById('tabler').style.pixelTop=y;

    document.getElementById('tabler').style.visibility='visible';

    document.getElementById('tabler').innerHTML=content;

    }

    Of course, once the user select the desired color we had to hide the pallette:

    function setColor(elid,color,fromid,shc)

    {

    document.getElementById(elid).value=color;

    document.getElementById('tabler').style.visibility='hidden';

    }

    Thus we created nice palettes which appear and disappear on a single click and don't take much space on the screen.

    - Drop Shawdows

    The decals offered has the ability to have a drop shadow added so we had to add this option to the online builder. PHP however didn't offered a nice function for that. We created a procedure which draws the texts twice - once the original 100% saturated text and once the shadow with a percentage of the color and appropriate displacement. Of course the shadow was drawn on the image before the main text.

    @imagettftext($img, 20, $gr[$i], $x+$dx, $ys[$i]+$dy, $scolors[$shadowcolor], "fonts/".$_POST['fonts'],$word[$i]);

    - Arcs

    The main problem came when we had to 'rotate' the texts thru arcs. First we created perfect Bezie funtion which to draw the curves and adjust the letter above them. But what a surprise - the curves looked perfect alone, but when we adjusted the letters above them they seemed r

    Lifetime Customer Value - You Look Familiar!
    The balance of power has shifted. In the bad old days, suppliers were the purveyors of knowledge and customers were at their mercy when making purchase decisions. Nowadays, thanks to product review websites, supplier forums, blogs and social networking sites, customers are much more knowledgeable about products and services. Their expectations have also increased because if you can’t satisfy them, with a few clicks, they can find someone who will.Knowing this, we spend a ton of money on our websites. We get everything on there that the customer could possibly want and then some! To further drive traffic and sales to our sites, we might even do some online advertising. However, in our dogged pursuit to acquire more customers, we often forget that we have existing customers who already know us, who have bought from us and who might be willing to buy again.A Bird In The Hand Is Worth Two In The BushIn fact, the cost to keep an existing customer is far lo
    me().'.jpg';

    //the background

    imagefilledrectangle ( $im, 0, 0, 590, 60, $colors[$_POST['bcolors']]);

    $colors array contains the available color which are stored by the administrator in the database.

    Thus, when the visitor selects a background it is passed as parametter to imagefilledrectangle function.

    - Font selection

    Users should be able to select fonts for their future decals. Knowing that we can't consider all the fonts will be available on all visitor's computers we had to upload them on the web server directory.

    We allowed the admin to manage the fonts, adding their names and uploading files in admin area.

    The fonts in the select box came from the database. Selected font was passed in the call to imagettftext funtion which is drawing on the previously created image.

    - Color Selections

    The color selections had to be a palettes which appear when user clicks and disappear when color is selected. The palette had to look as a table with colors and these colors are also defined in the

    admin area so they had to come dynamicly. We had to seed a static javascript function with dynamic content.

    We created a PHP cycle which was taking the colors from the database and then creating a string for HTML table. This table is then passed to a javascript function which creates the palletes with the help of hidden layers:

    function showTable(table)

    {

    mouseX = window.event.x + document.body.scrollLeft+25;

    if(table=='background')

    {

    var content="";

    var y=460;

    }

    if(table=='fonts')

    {

    var content="";

    var y=690;

    }

    if(table=='shadows')

    {

    var content="";

    var y=810;

    }

    document.getElementById('tabler').style.pixelLeft=mouseX;

    document.getElementById('tabler').style.pixelTop=y;

    document.getElementById('tabler').style.visibility='visible';

    document.getElementById('tabler').innerHTML=content;

    }

    Of course, once the user select the desired color we had to hide the pallette:

    function setColor(elid,color,fromid,shc)

    {

    document.getElementById(elid).value=color;

    document.getElementById('tabler').style.visibility='hidden';

    }

    Thus we created nice palettes which appear and disappear on a single click and don't take much space on the screen.

    - Drop Shawdows

    The decals offered has the ability to have a drop shadow added so we had to add this option to the online builder. PHP however didn't offered a nice function for that. We created a procedure which draws the texts twice - once the original 100% saturated text and once the shadow with a percentage of the color and appropriate displacement. Of course the shadow was drawn on the image before the main text.

    @imagettftext($img, 20, $gr[$i], $x+$dx, $ys[$i]+$dy, $scolors[$shadowcolor], "fonts/".$_POST['fonts'],$word[$i]);

    - Arcs

    The main problem came when we had to 'rotate' the texts thru arcs. First we created perfect Bezie funtion which to draw the curves and adjust the letter above them. But what a surprise - the curves looked perfect alone, but when we adjusted the letters above them they seemed r

    Why Did I Ever Get Into Business For Myself? Dealing With The Why Factor!
    Have you ever stopped and thought about why you got into business? What was the driving force behind your decision to lose the security blanket of having a regular paycheck, benefits and regular vacations? Do you lay awake at night, worried about how you are going to feed your family, the unresolved client issues, or just the stress of an employee upsetting one of your best clients? These are some of the questions entrepreneurs ask themselves on a regular basis when trying to figure out why they ever got into business for themselves.When I decided it was time for me to take the plunge, and start my own IT consulting business, it was after many years of procrastination. My best clients encouraged and told me I had what it took. I knew I was ready when I experienced several nights of upset stomachs from worry. I was lacking the challenges that sparked my excitement in the position I held, so I invited a couple of other highly qualified technical experts, whom I trusted, to assist
    dynamicly. We had to seed a static javascript function with dynamic content.

    We created a PHP cycle which was taking the colors from the database and then creating a string for HTML table. This table is then passed to a javascript function which creates the palletes with the help of hidden layers:

    function showTable(table)

    {

    mouseX = window.event.x + document.body.scrollLeft+25;

    if(table=='background')

    {

    var content="";

    var y=460;

    }

    if(table=='fonts')

    {

    var content="";

    var y=690;

    }

    if(table=='shadows')

    {

    var content="";

    var y=810;

    }

    document.getElementById('tabler').style.pixelLeft=mouseX;

    document.getElementById('tabler').style.pixelTop=y;

    document.getElementById('tabler').style.visibility='visible';

    document.getElementById('tabler').innerHTML=content;

    }

    Of course, once the user select the desired color we had to hide the pallette:

    function setColor(elid,color,fromid,shc)

    {

    document.getElementById(elid).value=color;

    document.getElementById('tabler').style.visibility='hidden';

    }

    Thus we created nice palettes which appear and disappear on a single click and don't take much space on the screen.

    - Drop Shawdows

    The decals offered has the ability to have a drop shadow added so we had to add this option to the online builder. PHP however didn't offered a nice function for that. We created a procedure which draws the texts twice - once the original 100% saturated text and once the shadow with a percentage of the color and appropriate displacement. Of course the shadow was drawn on the image before the main text.

    @imagettftext($img, 20, $gr[$i], $x+$dx, $ys[$i]+$dy, $scolors[$shadowcolor], "fonts/".$_POST['fonts'],$word[$i]);

    - Arcs

    The main problem came when we had to 'rotate' the texts thru arcs. First we created perfect Bezie funtion which to draw the curves and adjust the letter above them. But what a surprise - the curves looked perfect alone, but when we adjusted the letters above them they seemed r

    Web Site Traffic For Free
    A lot of people do not realize that some of the best ways that they can increase web site traffic will not cost them a dime. In fact, all you need is a little time and effort. Here are some of the easy things that you can do to increase web site traffic for free.Article SubmissionArticle writing is an effective tool that can attract people to your web site. Once you already have articles published on your web site, you should submit them to popular directories and ezine publishers. You should not let these articles sit on your web site because they have lots of potential to increase web site traffic. Just make sure that when you submit articles, you have to include a good resource box.Online ForumsParticipating in online forums is one of the easiest ways to increase web site traffic for free. You do not have to manifestly advertise in these forums, all you have to do is to actually participate in the discussions and become a respected member. You can include you
    ById(elid).value=color;

    document.getElementById('tabler').style.visibility='hidden';

    }

    Thus we created nice palettes which appear and disappear on a single click and don't take much space on the screen.

    - Drop Shawdows

    The decals offered has the ability to have a drop shadow added so we had to add this option to the online builder. PHP however didn't offered a nice function for that. We created a procedure which draws the texts twice - once the original 100% saturated text and once the shadow with a percentage of the color and appropriate displacement. Of course the shadow was drawn on the image before the main text.

    @imagettftext($img, 20, $gr[$i], $x+$dx, $ys[$i]+$dy, $scolors[$shadowcolor], "fonts/".$_POST['fonts'],$word[$i]);

    - Arcs

    The main problem came when we had to 'rotate' the texts thru arcs. First we created perfect Bezie funtion which to draw the curves and adjust the letter above them. But what a surprise - the curves looked perfect alone, but when we adjusted the letters above them they seemed rough.

    After studying this problem we realised that the rough screen resolution and the disability to antialise the images wouldn't allow us to create nice arcs. We were standing against insoluble problem.

    We decided to create few arcs with a graphical software (CorelDraw) and to see what could be wrong.

    We noticed that Corel's curves were looking great after they are manually adjusted. However you can't just leave the program to create perfect curves automaticly. A human eye was needed to judge when a curve looks right and when not.

    We got a totally different direction. There wasn't an universal function to help us. The solution we found was to 'manually' adjust each letter. We created a procedure with cases which were adjusting each letter on the appropriate place and with appropriate rotation depending on how long was the text. It worked!

    We created 2 arrays for each arc type - one array with the positions and one array with the rotations.

    The rest was simple:

    if($arctype)

    {

    $start=(35-$l)/2;

    if($start%2) $start+=1;

    $gr=array_slice($gr,$start,$l);

    $ys=array_slice($ys,$start,$l);

    }

    if(!$arctype)

    {

    $ys=array();

    $gr=array();

    //making the arrays

    for($i=0;$i

    You can go on the atec's site and try the arcs we achieved (http://atecsigns.com/decal/step_1.php).

    Results

    Now A-tec Sings's web builder creates perfect decals with graphs, calculates the price and allows you to add the decals to your shopping cart and chgeckout (the shopping cart software is also created by PIM Team Bulgaria).

    The builder allows the visitor to create the desired decals with any color, dropped shadow, background and shape, to preview it and to calculate the cost for different sizes and quantities.

    The website and builder were promoted with massive radio advertising company. At that time it was the only decal builder which allowed creating texts arround arcs.

    Conclusions

    • Use GD to create text effects

    • Do not forget that you can create you own functions for what GD does not offer

    • Do not always search for math perfect formulas. The graphical effects are intended to the human eye

    • Load fonts in the server

    • Use javascript and hidden layers to achieve great flexibility

    HTTP = HTML link (for blogs, profiles,phorums):
    <a href="http://www.actual4u.com/article/87617/actual4u-PIM-Team-Case-Study-Creating-Text-Effects-With-PHP-and-GD.html">PIM Team Case Study: Creating Text Effects With PHP and GD</a>

    BB link (for phorums):
    [url=http://www.actual4u.com/article/87617/actual4u-PIM-Team-Case-Study-Creating-Text-Effects-With-PHP-and-GD.html]PIM Team Case Study: Creating Text Effects With PHP and GD[/url]

    Related Articles:

    It May Be Time To Rethink Your Positioning

    To Blog or Not to Blog: Are Blogs Becoming More Popular than Forums, Newsletters and E-zines?

    Nine Free Ways To Increase Traffic To Your Website Or Blog

    Bookmark it: del.icio.us digg.com reddit.com netvouz.com google.com yahoo.com technorati.com furl.net bloglines.com socialdust.com ma.gnolia.com newsvine.com slashdot.org simpy.com shadows.com blinklist.com