At the location specified by (x,y), display the fingerprint image in accordance with the size specified by (aWidth, aHeight).
HDC is the HDC for the window in which the fingerprint will be shown. Here the fingerprint image is surrounded by an ellipse.
/// <summary> /// Use after connect and Enroll /// </summary> private void PrintImageEllipseAt_ZkFinger() { Graphics g = pictureBox1.CreateGraphics(); axZKFPEngX1.PrintImageEllipseAt(g.GetHdc().ToInt32(), 0, 0, axZKFPEngX1.ImageWidth, axZKFPEngX1.ImageHeight, 55555); }
''' <summary> ''' Use after connect and Enroll ''' </summary> Private Sub PrintImageEllipseAt_ZkFinger() Dim g As Graphics = pictureBox1.CreateGraphics() axZKFPEngX1.PrintImageEllipseAt(g.GetHdc().ToInt32(), 0, 0, axZKFPEngX1.ImageWidth, axZKFPEngX1.ImageHeight, 55555) End Sub