Go Back   Velocity Reviews > Newsgroups > Computer Support
User Name
Password
Register FAQ Members List Calendar Search Today's Posts Mark Forums Read

Reply

Computer Support - Customizing a Graphic

 
Thread Tools Search this Thread
Old 07-25-2007, 05:09 AM   #1
Default Customizing a Graphic


I have web course on a website that I would like to generate a
certificate for when completed. I would like the certificate to be
presented to the user as a single graphic. This means getting the
persons name and date into the graphic. I don't want HTML text
overlaying a background image. I would also like the option for the
user to upload an image which could also be put into the certificate.
I want the user to be able to download this image, the big reason I
want it all in a single graphic. Can someone offer me some advice on
how to make these images automatically. I do want the quality to look
as professional as possible.



grantroelofs@gmail.com
  Reply With Quote
Old 07-25-2007, 06:02 AM   #2
thanatoid
 
Posts: n/a
Default Re: Customizing a Graphic
wrote in
news: ups.com:

> I have web course on a website that I would like to
> generate a certificate for when completed. I would like
> the certificate to be presented to the user as a single
> graphic. This means getting the persons name and date into
> the graphic. I don't want HTML text overlaying a
> background image. I would also like the option for the
> user to upload an image which could also be put into the
> certificate. I want the user to be able to download this
> image, the big reason I want it all in a single graphic.
> Can someone offer me some advice on how to make these
> images automatically. I do want the quality to look as
> professional as possible.


Forgive me if I misunderstood, but YOU are TEACHING a COURSE???
O N W H A T ???????


--
Any mental activity is easy if it need not be subjected to
reality.


thanatoid
  Reply With Quote
Old 07-25-2007, 06:12 AM   #3
Neredbojias
 
Posts: n/a
Default Re: Customizing a Graphic
Well bust mah britches and call me cheeky, on Wed, 25 Jul 2007 04:09:03 GMT
scribed:

> I have web course on a website that I would like to generate a
> certificate for when completed. I would like the certificate to be
> presented to the user as a single graphic. This means getting the
> persons name and date into the graphic. I don't want HTML text
> overlaying a background image. I would also like the option for the
> user to upload an image which could also be put into the certificate.
> I want the user to be able to download this image, the big reason I
> want it all in a single graphic. Can someone offer me some advice on
> how to make these images automatically. I do want the quality to look
> as professional as possible.


Don't think that can be done but I'd be happy to be proven wrong.

--
Neredbojias
Half lies are worth twice as much as whole lies.


Neredbojias
  Reply With Quote
Old 07-25-2007, 06:20 AM   #4
Chris F.A. Johnson
 
Posts: n/a
Default Re: Customizing a Graphic
On 2007-07-25, wrote:
> I have web course on a website that I would like to generate a
> certificate for when completed. I would like the certificate to be
> presented to the user as a single graphic. This means getting the
> persons name and date into the graphic. I don't want HTML text
> overlaying a background image. I would also like the option for the
> user to upload an image which could also be put into the certificate.
> I want the user to be able to download this image, the big reason I
> want it all in a single graphic. Can someone offer me some advice on
> how to make these images automatically. I do want the quality to look
> as professional as possible.


That can be done with ImageMagick.

--
Chris F.A. Johnson <http://cfaj.freeshell.org>
================================================== =================
Author:
Shell Scripting Recipes: A Problem-Solution Approach (2005, Apress)


Chris F.A. Johnson
  Reply With Quote
Old 07-25-2007, 07:11 AM   #5
Pennywise@DerryMaine.Gov
 
Posts: n/a
Default Re: Customizing a Graphic
"Chris F.A. Johnson" <> wrote:

>On 2007-07-25, wrote:
>> I have web course on a website that I would like to generate a
>> certificate for when completed. I would like the certificate to be
>> presented to the user as a single graphic. This means getting the
>> persons name and date into the graphic. I don't want HTML text
>> overlaying a background image. I would also like the option for the
>> user to upload an image which could also be put into the certificate.
>> I want the user to be able to download this image, the big reason I
>> want it all in a single graphic. Can someone offer me some advice on
>> how to make these images automatically. I do want the quality to look
>> as professional as possible.


> That can be done with ImageMagick.


instead it can modify an already existing image
http://en.wikipedia.org/wiki/ImageMagick

He would need something that could generate images (persons name and
such) as layers, then flatten the image.
--
Man changing flat tire on his RV surprised when airplane
bounces over his vehicle during emergency landing.
http://tinyurl.com/2gboar


Pennywise@DerryMaine.Gov
  Reply With Quote
Old 07-25-2007, 07:32 AM   #6
Sherm Pendley
 
Posts: n/a
Default Re: Customizing a Graphic
writes:

> I have web course on a website that I would like to generate a
> certificate for when completed.


A "web course?" I hope it's not about web development, because if so then
asking this question seems to disqualify you from teaching it.

> I would like the certificate to be
> presented to the user as a single graphic. This means getting the
> persons name and date into the graphic. I don't want HTML text
> overlaying a background image.


Options abound. You could use ImageMagick or GD, which are both accessible
from a wide variety of languages:

<http://www.imagemagick.org>
<http://www.libgd.org>

Regardless of the toolkit or language you use, the general approach will be
the same: You'd composite the image layers on the server, using the static
background, generated text, and uploaded image. The result would be a bitmap
that you would then compress to either GIF or JPEG to return to a browser.

None of that is at all relevant to HTML though - it's all done on the server,
which produces either image/gif or image/jpeg data in its response. You'd
refer to the server-side app that produces the image the same way you would
any other image, with an img element:

<img src="make_image.cgi?id=bar">

sherm--

--
Web Hosting by West Virginians, for West Virginians: http://wv-www.net
Cocoa programming in Perl: http://camelbones.sourceforge.net


Sherm Pendley
  Reply With Quote
Old 07-25-2007, 09:48 AM   #7
Chris F.A. Johnson
 
Posts: n/a
Default Re: Customizing a Graphic
On 2007-07-25, wrote:
> "Chris F.A. Johnson" <> wrote:
>
>>On 2007-07-25, wrote:
>>> I have web course on a website that I would like to generate a
>>> certificate for when completed. I would like the certificate to be
>>> presented to the user as a single graphic. This means getting the
>>> persons name and date into the graphic. I don't want HTML text
>>> overlaying a background image. I would also like the option for the
>>> user to upload an image which could also be put into the certificate.
>>> I want the user to be able to download this image, the big reason I
>>> want it all in a single graphic. Can someone offer me some advice on
>>> how to make these images automatically. I do want the quality to look
>>> as professional as possible.

>
>> That can be done with ImageMagick.

>
> instead it can modify an already existing image
> http://en.wikipedia.org/wiki/ImageMagick
>
> He would need something that could generate images (persons name and
> such) as layers, then flatten the image.


With ImageMagick, a command like this could be used to put the
text "John Doe" onto the image xx.png:

convert -font "-*-helvetica-bold-r-normal--*-240-*-*-*-*-*-*" \
-fill black -draw "text 160,100 'John Doe'" \
xx.png xxx.png

Unfortunately, convert requires an X server, so it cannot be used
in a CGI (or is there a way?).

Another possibility is to write a PostScript file (see
<http://woodbine-gerrard.com/testing/xx.cgi>); ideally it should be
converted to PDF, but that, too, requires X.

--
Chris F.A. Johnson <http://cfaj.freeshell.org>
================================================== =================
Author:
Shell Scripting Recipes: A Problem-Solution Approach (2005, Apress)


Chris F.A. Johnson
  Reply With Quote
Old 07-25-2007, 11:00 AM   #8
Travis Newbury
 
Posts: n/a
Default Re: Customizing a Graphic
grantroel...@gmail.com wrote:
> I have web course on a website that I would like to generate a
> certificate for when completed...


This is a simple process with Flash. All of the training we create
have printable certificates when the courses are over. I believe you
can find something at www.flashkit.com that will meet your needs.



Travis Newbury
  Reply With Quote
Old 07-25-2007, 11:01 AM   #9
Travis Newbury
 
Posts: n/a
Default Re: Customizing a Graphic
On Jul 25, 1:12 am, Neredbojias <monstersquas...@yahoo.com> wrote:
> > I have web course on a website that I would like to generate a
> > certificate for when completed....

> Don't think that can be done but I'd be happy to be proven wrong.


Flash can do it...




Travis Newbury
  Reply With Quote
Old 07-25-2007, 12:10 PM   #10
Neredbojias
 
Posts: n/a
Default Re: Customizing a Graphic
Well bust mah britches and call me cheeky, on Wed, 25 Jul 2007 10:01:15 GMT
Travis Newbury scribed:

> On Jul 25, 1:12 am, Neredbojias <monstersquas...@yahoo.com> wrote:
>> > I have web course on a website that I would like to generate a
>> > certificate for when completed....

>> Don't think that can be done but I'd be happy to be proven wrong.

>
> Flash can do it...


The methods I've read about in this thread so far seem kind of hard. I
want something easy, man, like a no-brainer.

--
Neredbojias
Half lies are worth twice as much as whole lies.


Neredbojias
  Reply With Quote
Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

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

Similar Threads
Thread Thread Starter Forum Replies Last Post
Graphic Novel/Comic Book Good Read! Maxmytime08 Media 2 06-22-2009 02:40 AM
Looking to trade DVD HBO america undercover documentaries Michelangelo098@aol.com DVD Video 7 01-09-2009 11:39 PM
minimum graphic memory requirements to run aero indic MCTS 2 05-12-2008 04:13 AM
RARE DOCUMENTARIES - OLD HBO UNDERCOVER & MORE, SELL OR TRADE Michelangelo098@aol.com DVD Video 0 10-03-2006 10:58 PM
Program For Making Graphic Menus For Your DVDs? Rob Riemensnyder DVD Video 4 06-05-2004 01:46 AM




SEO by vBSEO 3.3.2 ©2009, Crawlability, Inc.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46