127 lines
2.6 KiB
Plaintext
127 lines
2.6 KiB
Plaintext
object Form1: TForm1
|
|
Left = 225
|
|
Top = 88
|
|
Caption = 'Example of Capture from IP camera'
|
|
ClientHeight = 601
|
|
ClientWidth = 1027
|
|
Color = clBtnFace
|
|
Font.Charset = DEFAULT_CHARSET
|
|
Font.Color = clWindowText
|
|
Font.Height = -11
|
|
Font.Name = 'Tahoma'
|
|
Font.Style = []
|
|
OldCreateOrder = False
|
|
Position = poScreenCenter
|
|
PixelsPerInch = 96
|
|
TextHeight = 13
|
|
object Panel1: TPanel
|
|
Left = 0
|
|
Top = 0
|
|
Width = 1027
|
|
Height = 103
|
|
Align = alTop
|
|
BevelOuter = bvNone
|
|
TabOrder = 0
|
|
object Label1: TLabel
|
|
Left = 0
|
|
Top = 0
|
|
Width = 1027
|
|
Height = 40
|
|
Align = alTop
|
|
Alignment = taCenter
|
|
AutoSize = False
|
|
Caption =
|
|
'Example of capturing from an IP camera which sends a stream of J' +
|
|
'peg images (Tested with Grand IP Camera III)'
|
|
Font.Charset = DEFAULT_CHARSET
|
|
Font.Color = clBlue
|
|
Font.Height = -16
|
|
Font.Name = 'Tahoma'
|
|
Font.Style = []
|
|
ParentFont = False
|
|
Layout = tlCenter
|
|
WordWrap = True
|
|
end
|
|
object Label2: TLabel
|
|
Left = 8
|
|
Top = 48
|
|
Width = 96
|
|
Height = 13
|
|
Caption = 'Camera IP Address:'
|
|
end
|
|
object Label3: TLabel
|
|
Left = 144
|
|
Top = 48
|
|
Width = 80
|
|
Height = 13
|
|
Caption = 'Stream Address:'
|
|
end
|
|
object Label4: TLabel
|
|
Left = 466
|
|
Top = 48
|
|
Width = 52
|
|
Height = 13
|
|
Caption = 'Username:'
|
|
end
|
|
object Label5: TLabel
|
|
Left = 534
|
|
Top = 48
|
|
Width = 50
|
|
Height = 13
|
|
Caption = 'Password:'
|
|
end
|
|
object ButtonConnect: TSpeedButton
|
|
Left = 614
|
|
Top = 58
|
|
Width = 97
|
|
Height = 33
|
|
AllowAllUp = True
|
|
GroupIndex = 1
|
|
Caption = 'Connect'
|
|
OnClick = ButtonConnectClick
|
|
end
|
|
object EditIP: TEdit
|
|
Left = 8
|
|
Top = 64
|
|
Width = 89
|
|
Height = 21
|
|
TabOrder = 0
|
|
Text = '60.33.230.11'
|
|
end
|
|
object EditAddress: TEdit
|
|
Left = 144
|
|
Top = 64
|
|
Width = 305
|
|
Height = 21
|
|
TabOrder = 1
|
|
Text = '/nphMotionJpeg?Resolution=640x480&Quality=Standard'
|
|
end
|
|
object EditUser: TEdit
|
|
Left = 466
|
|
Top = 64
|
|
Width = 57
|
|
Height = 21
|
|
TabOrder = 2
|
|
end
|
|
object EditPassword: TEdit
|
|
Left = 534
|
|
Top = 64
|
|
Width = 57
|
|
Height = 21
|
|
TabOrder = 3
|
|
end
|
|
end
|
|
object ImageEnView1: TImageEnView
|
|
Left = 0
|
|
Top = 103
|
|
Width = 1027
|
|
Height = 498
|
|
Background = clBtnFace
|
|
Ctl3D = False
|
|
ParentCtl3D = False
|
|
EnableInteractionHints = True
|
|
Align = alClient
|
|
TabOrder = 1
|
|
end
|
|
end
|