Reply
Adding a Lettering Design Component to Website
Old 04-03-2008, 04:14 PM Adding a Lettering Design Component to Website
Junior Talker

Posts: 1
Name: Ashley
I have a customer that needs a component added to their existing website. They are a sign company and would like customers to be able to design their sign, preview their sign and then send it all to the cart. I have tried to figure this out but I am not that advanced in the programming of databases. Quite frankly I don't know where to start! Any help would be greatly appreciated. Whether you want to point me in the right direction or if you want to design this yourself. We can pay you if you design this.

We would really prefer not to copy everyone else's but use the same idea. If we have to do the same thing then that is fine.

Here are a few examples of sites out there with this concept:

http://www.speedysigns.com/lettering/lettering_tool.asp (most common)
http://www.signspecialist.com/lettering/lettering.html
http://www.uncleroys.com/design-sign...signtype=vinyl
http://www.greatlettering.com/designlettering.aspx
http://www.javasigns.com/tools/lt/4362

I understand that these examples are using different programming, I am just looking for the concept. I don't want to use the look of the site just the concept.
illusiveimagery is offline
Reply With Quote
View Public Profile
 
Sponsored Links (We share ad revenue):
 
Old 04-03-2008, 05:29 PM Re: Adding a Lettering Design Component to Website
chrishirst's Avatar
Super Moderator

Posts: 10,598
Location: Blackpool. UK
The database stuff is pretty much straightforward. The bulk of the work is in programming whatever image creation component is being used.
__________________
Chris. ->> Links are advertising NOT optimising!! <<-
Indifference will be the downfall of mankind, but who cares?
Code Samples | People Counting System
chrishirst is offline
Reply With Quote
View Public Profile Visit chrishirst's homepage!
 
Old 04-04-2008, 03:38 PM Re: Adding a Lettering Design Component to Website
Learning Newbie's Avatar
Moderator

Latest Blog Post:
My Favorite Isaac Asimov Story
Posts: 4,068
Name: John Alexander
Use GDI+ it's very easy.


Private Sub RenderText6(ByVal e As PaintEventArgs)
Dim flags As TextFormatFlags = TextFormatFlags.Bottom Or _
TextFormatFlags.EndEllipsis
TextRenderer.DrawText(e.Graphics, _
"This is some text that will be clipped at the end.", _
Me.Font, New Rectangle(10, 10, 100, 50), SystemColors.ControlText, flags)
End Sub


Dim fontFamily As New FontFamily("Arial")
Dim font As New Font( _
fontFamily, _
16, _
FontStyle.Regular, _
GraphicsUnit.Pixel)

Etc. All of these external components to do basic things are so last century.
__________________
HungarianNotation is the last resort of scoundrels. Why not the first resort? That's where it counts!
Learning Newbie is offline
Reply With Quote
View Public Profile
 
Sponsored Links (We share ad revenue):
 
Reply     « Reply to Adding a Lettering Design Component to Website
 

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off




   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML


Page generated in 0.14804 seconds with 14 queries