📄 alpha.aspx
字号:
<%@ Page ContentType="image/gif" %>
<%@ Import Namespace="System.Drawing" %>
<%@ Import Namespace="System.Drawing.Imaging" %>
<Script Runat="Server">
Sub Page_Load
Dim objBitmap As Bitmap
Dim objGraphics As Graphics
Dim objBrush, objBrush2 As Brush
' Create Bitmap
objBitmap = New Bitmap( 400, 400 )
objGraphics = Graphics.FromImage( objBitmap )
' Create Different Colored Brushes
objBrush = New SolidBrush( Color.Blue )
objBrush2 = New SolidBrush( Color.FromArgb( 100, Color.Orange ) )
' Create Rectangles
objGraphics.FillRectangle( objBrush, 10, 10, 100, 100 )
objGraphics.FillRectangle( objBrush2, 50, 50, 100, 100 )
' Display the Bitmap
objBitmap.Save( Response.OutputStream, ImageFormat.Gif )
End Sub
</Script>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -