Code: Select all
<%
Const AX_GIF = 2
Const AX_To8Colors = 8
Const AX_NoDither = 0
Const AX_ToColors = 0
BG = RGB(255,255,255)
FG = RGB(255,0,0)
Text = "This is a test"
Set Pic = Server.CreateObject("GflAx.GflAx")
Pic.EnableLZW = True
Pic.FontName = "Verdana"
Pic.FontSize = 36
W = Pic.GetTextWidth(Text)
H = Pic.GetTextHeight(Text)
Pic.NewBitmap W, H, BG
Pic.TextOut Text, 0, 0, FG
Pic.SaveFormat = AX_GIF
Pic.ChangeColorDepth AX_To8Colors, AX_NoDither, AX_ToColors
Pic.UseTransparency = True
Pic.MaskColor = Pic.GetColorAt(0,0)
Pic.SaveBitmap Server.MapPath("test.gif")
%>
<HTML>
<HEAD></HEAD>
<BODY><IMG SRC="test.gif"></BODY>
</HTML>