LocalHero
07-01-2005, 01:46 PM
Here is my idea...
I want to have a bunch of fonts (500) in a file. Then I want to make a page where the user can select the font, what text they want, font size, and font color. When they submit their selection it opens a page with their font selections.
The page would read:
<head>
<?php
$font=$_POST['font'];
?>
<head>
<body>
<FONT FACE="<?php echo($font);?>">Text goes here.</FONT>
My problem is that I tried to use Microsoft WETF to do this, but it wants to see each font called out before it creates the .otf file. Does anyone have a better way to make 500 .otf files? Or a better way to do what I'm looking for?
I want to have a bunch of fonts (500) in a file. Then I want to make a page where the user can select the font, what text they want, font size, and font color. When they submit their selection it opens a page with their font selections.
The page would read:
<head>
<?php
$font=$_POST['font'];
?>
<head>
<body>
<FONT FACE="<?php echo($font);?>">Text goes here.</FONT>
My problem is that I tried to use Microsoft WETF to do this, but it wants to see each font called out before it creates the .otf file. Does anyone have a better way to make 500 .otf files? Or a better way to do what I'm looking for?