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
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.getEle mentById('tabler').style.pixelTop=y;
document.getElementById('tabler').style.visibility='visib le';
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;
docum ent.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
About The Author
Bobby Handzhiev is a senior developer in PIM Team Bulgaria
http://atecsigns.com/decal/step_1.php
http://atecsigns.com/decal/step_1.php
personalized cleaning services Mundelein ..I've heard several prominent web marketers mention in their classes... Read More
You want to give your site's visitors a way to... Read More
Before you jump into spending coutnless hours on designing and... Read More
Launching a new small business website is often a long... Read More
Do you make your website just to entertain yourself or... Read More
My life's greatest passion is a safari hobby. And what... Read More
Often time I've browsed sites and seen the same thing... Read More
Simply ensuring your website is accessible to screen reader users... Read More
Even with the steady growth of the World Wide Web,... Read More
Does My Web Site Require A Web Database?If your web... Read More
That's right. Your method, behavior and strategy you are now... Read More
A system development process can follow a number of standard... Read More
If your company own one or more stores, you might... Read More
What is the most important part of your online business?Many... Read More
It amazes me how many people try to build serious... Read More
The internet has taken over our lives with a vengeance,... Read More
You have seen those web pages where they have the... Read More
Writing for the web is totally different to writing for... Read More
While it may seem like a "quick and easy" task,... Read More
Your content is what gets you in search engines, speaks... Read More
The big thing these days is your ability to capture... Read More
August 8 2005, Macromedia announced a release of Studio 8.... Read More
We are clearly well past the innocent "golden age" of... Read More
Making money with your web site is the dream and... Read More
The needs of screen magnifier users are overlooked when implementing... Read More
one time home cleaning Buffalo Grove ..Are you aware that 90% of the websites on the... Read More
Are bloated images slowing down your web site and causing... Read More
Thousands of people are now making a living online and... Read More
Making a web site is easy. Making a good web... Read More
Why do some sites succeed while the vast majority of... Read More
Everyone wants one.Everyone wishes they knew how to make one.SOME... Read More
You work hard to build traffic to your web page.... Read More
The definition of the phrase "Content Management" depends on what... Read More
Rosalind wants to share her inspirational poetry with a wider... Read More
In the time that I have been using the Internet,... Read More
Many small businesses have the misconception that their business can... Read More
When you purchase a new item from a Yahoo! Store,... Read More
It may come as some surprise to a traditionally off-line... Read More
1) A marketing necessityI still hear it said from time... Read More
SiteSpinnerSiteSpinner is a user-friendly web site development tool that includes... Read More
Most people know they need a website in order to... Read More
An accessible Web site is easily approached, easily understood, and... Read More
To the starting internet entrepreneur, there is nothing more discouraging... Read More
Like most average persons, I wanted some extra money to... Read More
Revenues are often lost because many business owners don't see... Read More
Web templates by nature are created to aid and ease... Read More
After planning the design and content of your website, it's... Read More
Recently I was reviewing the keyword specific conversion rate data... Read More
So your prospect, Mary, is sitting at the computer reading... Read More
It is an undeniable fact that not everybody is keen... Read More
Web Development |