Audio plugin host https://kx.studio/carla
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

juce_GlowEffect.cpp 1.8KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. /*
  2. ==============================================================================
  3. This file is part of the JUCE library.
  4. Copyright (c) 2013 - Raw Material Software Ltd.
  5. Permission is granted to use this software under the terms of either:
  6. a) the GPL v2 (or any later version)
  7. b) the Affero GPL v3
  8. Details of these licenses can be found at: www.gnu.org/licenses
  9. JUCE is distributed in the hope that it will be useful, but WITHOUT ANY
  10. WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
  11. A PARTICULAR PURPOSE. See the GNU General Public License for more details.
  12. ------------------------------------------------------------------------------
  13. To release a closed-source product which uses JUCE, commercial licenses are
  14. available: visit www.juce.com for more information.
  15. ==============================================================================
  16. */
  17. GlowEffect::GlowEffect()
  18. : radius (2.0f),
  19. colour (Colours::white)
  20. {
  21. }
  22. GlowEffect::~GlowEffect()
  23. {
  24. }
  25. void GlowEffect::setGlowProperties (const float newRadius,
  26. Colour newColour)
  27. {
  28. radius = newRadius;
  29. colour = newColour;
  30. }
  31. void GlowEffect::applyEffect (Image& image, Graphics& g, float scaleFactor, float alpha)
  32. {
  33. Image temp (image.getFormat(), image.getWidth(), image.getHeight(), true);
  34. ImageConvolutionKernel blurKernel (roundToInt (radius * scaleFactor * 2.0f));
  35. blurKernel.createGaussianBlur (radius);
  36. blurKernel.rescaleAllValues (radius);
  37. blurKernel.applyToImage (temp, image, image.getBounds());
  38. g.setColour (colour.withMultipliedAlpha (alpha));
  39. g.drawImageAt (temp, 0, 0, true);
  40. g.setOpacity (alpha);
  41. g.drawImageAt (image, 0, 0, false);
  42. }