![]() |
|
|
|
#1 |
|
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 |
|
|
|
|
#2 |
|
Posts: n/a
|
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 |
|
|
|
#3 |
|
Posts: n/a
|
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 |
|
|
|
#4 |
|
Posts: n/a
|
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 |
|
|
|
#5 |
|
Posts: n/a
|
"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 |
|
|
|
#6 |
|
Posts: n/a
|
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 |
|
|
|
#7 |
|
Posts: n/a
|
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 |
|
|
|
#8 |
|
Posts: n/a
|
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 |
|
|
|
#9 |
|
Posts: n/a
|
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 |
|
|
|
#10 |
|
Posts: n/a
|
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 |
|
![]() |
| Thread Tools | Search this Thread |
|
|
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 |