MainUnit.dfm 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. object FormPixelCombine: TFormPixelCombine
  2. Left = 295
  3. Top = 110
  4. Caption = 'PixelCombine Example'
  5. ClientHeight = 346
  6. ClientWidth = 564
  7. Color = clBtnFace
  8. Font.Charset = DEFAULT_CHARSET
  9. Font.Color = clWindowText
  10. Font.Height = -11
  11. Font.Name = 'MS Sans Serif'
  12. Font.Style = []
  13. OnCreate = FormCreate
  14. DesignSize = (
  15. 564
  16. 346)
  17. TextHeight = 13
  18. object ImgView: TImgView32
  19. Left = 16
  20. Top = 20
  21. Width = 393
  22. Height = 309
  23. Anchors = [akLeft, akTop, akRight, akBottom]
  24. Bitmap.ResamplerClassName = 'TNearestResampler'
  25. BitmapAlign = baCustom
  26. Color = clBtnShadow
  27. ParentColor = False
  28. Scale = 1.000000000000000000
  29. ScaleMode = smScale
  30. ScrollBars.ShowHandleGrip = True
  31. ScrollBars.Style = rbsDefault
  32. ScrollBars.Size = 16
  33. OverSize = 0
  34. TabOrder = 0
  35. end
  36. object RadioGroup: TRadioGroup
  37. Left = 415
  38. Top = 20
  39. Width = 141
  40. Height = 285
  41. Anchors = [akTop, akRight]
  42. Caption = 'Operation'
  43. ItemIndex = 0
  44. Items.Strings = (
  45. 'Opaque (none)'
  46. 'Add / Plus / Lighter'
  47. 'Sub'
  48. 'Modulate / Multiply'
  49. 'Min / Darken'
  50. 'Max / Lighten'
  51. 'Screen'
  52. 'Color-Dodge'
  53. 'Color-Burn'
  54. 'Difference'
  55. 'Exclusion'
  56. 'Pattern'
  57. 'Blend'
  58. 'Blend Add'
  59. 'Blend Modulate')
  60. TabOrder = 1
  61. OnClick = RadioGroupClick
  62. end
  63. end