1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86
|
object ImagesExampleForm: TImagesExampleForm
Left = 516
Height = 416
Top = 160
Width = 425
HorzScrollBar.Page = 426
VertScrollBar.Page = 417
Caption = 'Example for package "Images For Lazarus"'
ClientHeight = 416
ClientWidth = 425
LCLVersion = '1.1'
object ImageGroupBox: TGroupBox
Left = 0
Height = 336
Top = 0
Width = 425
Align = alTop
Anchors = [akTop, akLeft, akBottom]
Caption = '...'
ClientHeight = 317
ClientWidth = 421
TabOrder = 0
object Image1: TImage
Left = 0
Height = 317
Top = 0
Width = 421
Align = alClient
AutoSize = True
Center = True
Transparent = True
end
end
object LoadJPEGButton: TButton
Left = 229
Height = 25
Top = 346
Width = 173
Anchors = [akLeft, akBottom]
Caption = 'Load JPEG from file'
OnClick = LoadJPEGButtonClick
TabOrder = 1
end
object SaveJPEGButton: TButton
Left = 229
Height = 25
Top = 380
Width = 173
Anchors = [akLeft, akBottom]
Caption = 'Save as JPEG to file'
OnClick = SaveJPEGButtonClick
TabOrder = 2
end
object LoadImageButton: TButton
Left = 24
Height = 25
Top = 346
Width = 163
Anchors = [akLeft, akBottom]
Caption = 'Load Image'
OnClick = LoadImageButtonClick
TabOrder = 3
end
object SaveImageButton: TButton
Left = 24
Height = 25
Top = 380
Width = 163
Anchors = [akLeft, akBottom]
Caption = 'Save Image'
OnClick = SaveImageButtonClick
TabOrder = 4
end
object OpenPictureDialog1: TOpenPictureDialog
Filter = 'All files (*)|*|Graphic (*.png;*.xpm;*.bmp)|*.png;*.xpm;*.bmp|Portable Network Graphic (*.png)|*.png|Pixmap (*.xpm)|*.xpm|Bitmaps (*.bmp)|*.bmp'
FilterIndex = 0
left = 88
top = 64
end
object SavePictureDialog1: TSavePictureDialog
Filter = 'All files (*)|*|Graphic (*.png;*.xpm;*.bmp)|*.png;*.xpm;*.bmp|Portable Network Graphic (*.png)|*.png|Pixmap (*.xpm)|*.xpm|Bitmaps (*.bmp)|*.bmp'
FilterIndex = 0
left = 88
top = 112
end
end
|