MainUnit.dfm 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. object FormImage32Example: TFormImage32Example
  2. Left = 224
  3. Top = 159
  4. HorzScrollBar.Visible = False
  5. VertScrollBar.Visible = False
  6. Caption = 'TImage32 Example'
  7. ClientHeight = 418
  8. ClientWidth = 542
  9. Color = clBtnFace
  10. Font.Charset = DEFAULT_CHARSET
  11. Font.Color = clWindowText
  12. Font.Height = -11
  13. Font.Name = 'Tahoma'
  14. Font.Style = []
  15. Position = poScreenCenter
  16. OnCreate = FormCreate
  17. DesignSize = (
  18. 542
  19. 418)
  20. TextHeight = 13
  21. object PnlImage: TPanel
  22. Left = 8
  23. Top = 8
  24. Width = 385
  25. Height = 402
  26. Anchors = [akLeft, akTop, akRight, akBottom]
  27. BevelOuter = bvLowered
  28. BorderWidth = 1
  29. TabOrder = 0
  30. object Image: TImage32
  31. Left = 2
  32. Top = 2
  33. Width = 381
  34. Height = 398
  35. Align = alClient
  36. Bitmap.ResamplerClassName = 'TNearestResampler'
  37. BitmapAlign = baTopLeft
  38. Scale = 1.000000000000000000
  39. ScaleMode = smNormal
  40. TabOrder = 0
  41. end
  42. end
  43. object PnlControl: TPanel
  44. Left = 400
  45. Top = 0
  46. Width = 142
  47. Height = 418
  48. Align = alRight
  49. BevelOuter = bvNone
  50. TabOrder = 1
  51. object RgpScaleMode: TRadioGroup
  52. Left = 8
  53. Top = 104
  54. Width = 129
  55. Height = 129
  56. Caption = 'ScaleMode'
  57. ItemIndex = 0
  58. Items.Strings = (
  59. 'smNormal'
  60. 'smStretch'
  61. 'smScale'
  62. 'smResize'
  63. 'smOptimal'
  64. 'smOptimalScaled')
  65. TabOrder = 0
  66. OnClick = RgpScaleModeClick
  67. end
  68. object RgpKernel: TRadioGroup
  69. Left = 8
  70. Top = 288
  71. Width = 129
  72. Height = 121
  73. Caption = 'Kernels'
  74. ItemIndex = 0
  75. Items.Strings = (
  76. 'TBoxKernel'
  77. 'TLinearKernel'
  78. 'TSplineKernel'
  79. 'TLanczosKernel'
  80. 'TMitchellKernel')
  81. TabOrder = 1
  82. OnClick = RgpKernelClick
  83. end
  84. object RgpBitmapAlign: TRadioGroup
  85. Left = 8
  86. Top = 8
  87. Width = 129
  88. Height = 89
  89. Caption = 'BitmapAlign'
  90. ItemIndex = 0
  91. Items.Strings = (
  92. 'baTopLeft'
  93. 'baCenter'
  94. 'baTile')
  95. TabOrder = 2
  96. OnClick = RgpBitmapAlignClick
  97. end
  98. object LblScale: TStaticText
  99. Left = 8
  100. Top = 242
  101. Width = 33
  102. Height = 17
  103. Caption = 'Scale:'
  104. TabOrder = 3
  105. end
  106. object SbrScale: TGaugeBar
  107. Left = 8
  108. Top = 260
  109. Width = 129
  110. Height = 16
  111. Backgnd = bgPattern
  112. BorderStyle = bsNone
  113. Enabled = False
  114. Max = 1000
  115. Min = 25
  116. ShowHandleGrip = True
  117. Position = 100
  118. OnChange = SbrScaleChange
  119. end
  120. end
  121. end