MainUnit.dfm 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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. OldCreateOrder = False
  14. OnCreate = FormCreate
  15. DesignSize = (
  16. 564
  17. 346)
  18. PixelsPerInch = 96
  19. TextHeight = 13
  20. object ImgView: TImgView32
  21. Left = 16
  22. Top = 20
  23. Width = 393
  24. Height = 309
  25. Anchors = [akLeft, akTop, akRight, akBottom]
  26. Bitmap.ResamplerClassName = 'TNearestResampler'
  27. BitmapAlign = baCustom
  28. Color = clBtnShadow
  29. ParentColor = False
  30. Scale = 1.000000000000000000
  31. ScaleMode = smScale
  32. ScrollBars.ShowHandleGrip = True
  33. ScrollBars.Style = rbsDefault
  34. ScrollBars.Size = 16
  35. OverSize = 0
  36. TabOrder = 0
  37. end
  38. object RadioGroup: TRadioGroup
  39. Left = 415
  40. Top = 20
  41. Width = 141
  42. Height = 285
  43. Anchors = [akTop, akRight]
  44. Caption = 'Operation'
  45. ItemIndex = 0
  46. Items.Strings = (
  47. 'Opaque (none)'
  48. 'Add / Plus / Lighter'
  49. 'Sub'
  50. 'Modulate / Multiply'
  51. 'Min / Darken'
  52. 'Max / Lighten'
  53. 'Screen'
  54. 'Color-Dodge'
  55. 'Color-Burn'
  56. 'Difference'
  57. 'Exclusion'
  58. 'Pattern'
  59. 'Blend'
  60. 'Blend Add'
  61. 'Blend Modulate')
  62. TabOrder = 1
  63. OnClick = RadioGroupClick
  64. end
  65. end