Syntax
public void Draw3dShape(
Graphics g,
SpecialEffectsShape shape,
Rectangle destRect,
Color backColor,
Image backImage,
Rectangle backRect,
SpecialEffectsBackStyle backStyle,
Color fillColor,
SpecialEffectsFillStyle fillStyle,
Color borderColor,
SpecialEffectsBorderStyle borderStyle,
int borderWidth,
Color innerHiliteColor,
Color innerShadowColor,
SpecialEffectsInnerStyle innerStyle,
int innerWidth,
Color outerHiliteColor,
Color outerShadowColor,
SpecialEffectsOuterStyle outerStyle,
int outerWidth,
int shadowX,
int shadowY,
Color shadowColor,
Region shapeRegion
)
Public Sub Draw3dShape(
ByVal g As Graphics,
ByVal shape As SpecialEffectsShape,
ByVal destRect As Rectangle,
ByVal backColor As Color,
ByVal backImage As Image,
ByVal backRect As Rectangle,
ByVal backStyle As SpecialEffectsBackStyle,
ByVal fillColor As Color,
ByVal fillStyle As SpecialEffectsFillStyle,
ByVal borderColor As Color,
ByVal borderStyle As SpecialEffectsBorderStyle,
ByVal borderWidth As Integer,
ByVal innerHiliteColor As Color,
ByVal innerShadowColor As Color,
ByVal innerStyle As SpecialEffectsInnerStyle,
ByVal innerWidth As Integer,
ByVal outerHiliteColor As Color,
ByVal outerShadowColor As Color,
ByVal outerStyle As SpecialEffectsOuterStyle,
ByVal outerWidth As Integer,
ByVal shadowX As Integer,
ByVal shadowY As Integer,
ByVal shadowColor As Color,
ByVal shapeRegion As Region
)
public:
void Draw3dShape(
Graphics^ g,
SpecialEffectsShape^ shape,
Rectangle^ destRect,
Color^ backColor,
Image^ backImage,
Rectangle^ backRect,
SpecialEffectsBackStyle^ backStyle,
Color^ fillColor,
SpecialEffectsFillStyle^ fillStyle,
Color^ borderColor,
SpecialEffectsBorderStyle^ borderStyle,
Int32 borderWidth,
Color^ innerHiliteColor,
Color^ innerShadowColor,
SpecialEffectsInnerStyle^ innerStyle,
Int32 innerWidth,
Color^ outerHiliteColor,
Color^ outerShadowColor,
SpecialEffectsOuterStyle^ outerStyle,
Int32 outerWidth,
Int32 shadowX,
Int32 shadowY,
Color^ shadowColor,
Region^ shapeRegion
)
Parameters
g
The destination Graphics object.
destRect
Rectangle to be used as the display destination rectangle.
backColor
Value that specifies the background color.
backImage
The background image object. Use this parameter and prcBack to place an image from another device context onto the background of the shape. To use a background image, the fillStyle parameter must not be Solid.
backRect
Rectangle to be used as the display background rectangle.
fillColor
Value that specifies the foreground color.
fillStyle
Foreground style. For valid values, refer to fillStyle.
borderColor
Value that specifies the border color.
borderWidth
Border width.
innerHiliteColor
Value that specifies the inner band highlight color.
innerShadowColor
Value that specifies the inner band shadow color.
innerStyle
Inner band style. For valid values, refer to SpecialEffectsInnerStyle. The inner band is available only for squares and rectangles.
innerWidth
Inner band width.
outerHiliteColor
Value that specifies the highlight color for the outer band.
outerShadowColor
Value that specifies the shadow color for the inner band .
outerWidth
Outer band width.
shadowX
Horizontal position of the shadow.
shadowY
Vertical position of the shadow.
shadowColor
Value that specifies the shadow color.
shapeRegion
Region object that defines the shape. This parameter is used only if the value for the shape parameter is Region.
Example
This example shows the minimum requirements for using the Draw3dShape(Graphics,SpecialEffectsShape,Rectangle,Color,Image,Rectangle,SpecialEffectsBackStyle,Color,SpecialEffectsFillStyle,Color,SpecialEffectsBorderStyle,Int32,Color,Color,SpecialEffectsInnerStyle,Int32,Color,Color,SpecialEffectsOuterStyle,Int32,Int32,Int32,Color,Region) method.
using Leadtools;
using Leadtools.Codecs;
using Leadtools.SpecialEffects;
using Leadtools.Drawing;
public void Draw3dShape(Graphics g, Rectangle destRect)
{
SpecialEffectsProcessor processor = new SpecialEffectsProcessor();
Image image = Image.FromFile(Path.Combine(LEAD_VARS.ImagesDir, "Ulay1.bmp"));
Rectangle imageRect = new Rectangle(0, 0, image.Width, image.Height);
processor.Draw3dShape(g,
SpecialEffectsShape.Star4, /* star shape */
destRect, /* destination rectangle */
Color.Blue, /* background color, blue */
image, /* use this to place an image in the background */
imageRect, /* display background rectangle */
SpecialEffectsBackStyle.TranslucentTiledImage, /* style flags for 3D shape */
Color.Red, /* foreground color, red */
SpecialEffectsFillStyle.Transparent, /* foreground style */
Color.Red, /* border color, red */
SpecialEffectsBorderStyle.Solid, /* border style */
5, /* border width */
Color.White, /* inner band highlight color, white */
Color.Gray, /* inner band shadow color */
SpecialEffectsInnerStyle.Inset, /* inner band style */
3, /* inner band width */
Color.Red, /* outer band highlight color, RED */
Color.Gray, /* outer band shadow color */
SpecialEffectsOuterStyle.Inset,/* outer band style */
3, /* outer band width */
2, /* horizontal shadow position */
2, /* vertical shadow position */
Color.Black, /* shadow color, black */
null); /* no region handle */
image.Dispose();
}
static class LEAD_VARS
{
public const string ImagesDir = @"C:\Users\Public\Documents\LEADTOOLS Images";
}
Imports Leadtools
Imports Leadtools.Codecs
Imports Leadtools.SpecialEffects
Imports Leadtools.Drawing
Public Sub Draw3dShape(ByVal g As Graphics, ByVal destRect As Rectangle)
Dim processor As SpecialEffectsProcessor = New SpecialEffectsProcessor()
Dim img As Image = Image.FromFile(Path.Combine(LEAD_VARS.ImagesDir, "Ulay1.bmp"))
Dim imageRect As Rectangle = New Rectangle(0, 0, img.Width, img.Height)
processor.Draw3dShape(g, SpecialEffectsShape.Star4, destRect, Color.Blue, img, imageRect, SpecialEffectsBackStyle.TranslucentTiledImage, Color.Red,
SpecialEffectsFillStyle.Transparent, Color.Red, SpecialEffectsBorderStyle.Solid, 5, Color.White, Color.Gray,
SpecialEffectsInnerStyle.Inset, 3, Color.Red, Color.Gray, SpecialEffectsOuterStyle.Inset, 3, 2, 2, Color.Black,
Nothing) ' no region handle
img.Dispose()
End Sub
Public NotInheritable Class LEAD_VARS
Public Const ImagesDir As String = "C:\Users\Public\Documents\LEADTOOLS Images"
End Class