/* ============================================================================== This file is part of the JUCE framework. Copyright (c) Raw Material Software Limited JUCE is an open source framework subject to commercial or open source licensing. By downloading, installing, or using the JUCE framework, or combining the JUCE framework with any other source code, object code, content or any other copyrightable work, you agree to the terms of the JUCE End User Licence Agreement, and all incorporated terms including the JUCE Privacy Policy and the JUCE Website Terms of Service, as applicable, which will bind you. If you do not agree to the terms of these agreements, we will not license the JUCE framework to you, and you must discontinue the installation or download process and cease use of the JUCE framework. JUCE End User Licence Agreement: https://juce.com/legal/juce-8-licence/ JUCE Privacy Policy: https://juce.com/juce-privacy-policy JUCE Website Terms of Service: https://juce.com/juce-website-terms-of-service/ Or: You may also use this code under the terms of the AGPLv3: https://www.gnu.org/licenses/agpl-3.0.en.html THE JUCE FRAMEWORK IS PROVIDED "AS IS" WITHOUT ANY WARRANTY, AND ALL WARRANTIES, WHETHER EXPRESSED OR IMPLIED, INCLUDING WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, ARE DISCLAIMED. ============================================================================== */ namespace juce { static auto operator< (const Font& a, const Font& b) { return GraphicsFontHelpers::compareFont (a, b); } template static auto operator< (const Rectangle& a, const Rectangle& b) { const auto tie = [] (auto& t) { return std::make_tuple (t.getX(), t.getY(), t.getWidth(), t.getHeight()); }; return tie (a) < tie (b); } static auto operator< (const Justification& a, const Justification& b) { return a.getFlags() < b.getFlags(); } //============================================================================== namespace { template class GlyphArrangementCache final : public DeletedAtShutdown { public: GlyphArrangementCache() = default; ~GlyphArrangementCache() override { clearSingletonInstance(); } template [[nodiscard]] auto get (ArrangementArgs&& args, ConfigureArrangement&& configureArrangement) { const ScopedTryLock stl (lock); return stl.isLocked() ? cache.get (std::forward (args), std::forward (configureArrangement)) : configureArrangement (args); } JUCE_DECLARE_SINGLETON_INLINE (GlyphArrangementCache, false) private: LruCache cache; CriticalSection lock; }; //============================================================================== template Rectangle coordsToRectangle (Type x, Type y, Type w, Type h) noexcept { #if JUCE_DEBUG constexpr int maxVal = 0x3fffffff; jassertquiet ((int) x >= -maxVal && (int) x <= maxVal && (int) y >= -maxVal && (int) y <= maxVal && (int) w >= 0 && (int) w <= maxVal && (int) h >= 0 && (int) h <= maxVal); #endif return { x, y, w, h }; } } //============================================================================== Graphics::Graphics (const Image& imageToDrawOnto) : contextHolder (imageToDrawOnto.createLowLevelContext()), context (*contextHolder) { jassert (imageToDrawOnto.isValid()); // Can't draw into a null image! } Graphics::Graphics (LowLevelGraphicsContext& internalContext) noexcept : context (internalContext) { } //============================================================================== void Graphics::resetToDefaultState() { JUCE_SCOPED_TRACE_EVENT_FRAME (etw::resetToDefaultState, etw::graphicsKeyword, context.getFrameId()); saveStateIfPending(); context.setFill (FillType()); context.setFont (FontOptions{}.withMetricsKind (TypefaceMetricsKind::legacy)); context.setInterpolationQuality (Graphics::mediumResamplingQuality); } bool Graphics::isVectorDevice() const { return context.isVectorDevice(); } bool Graphics::reduceClipRegion (Rectangle area) { JUCE_SCOPED_TRACE_EVENT_FRAME_RECT_I32 (etw::reduceClipRegionRectangle, etw::graphicsKeyword, context.getFrameId(), area) saveStateIfPending(); return context.clipToRectangle (area); } bool Graphics::reduceClipRegion (int x, int y, int w, int h) { return reduceClipRegion (coordsToRectangle (x, y, w, h)); } bool Graphics::reduceClipRegion (const RectangleList& clipRegion) { JUCE_SCOPED_TRACE_EVENT_FRAME_RECT_I32 (etw::reduceClipRegionRectangleList, etw::graphicsKeyword, context.getFrameId(), clipRegion) saveStateIfPending(); return context.clipToRectangleList (clipRegion); } bool Graphics::reduceClipRegion (const Path& path, const AffineTransform& transform) { JUCE_SCOPED_TRACE_EVENT_FRAME (etw::reduceClipRegionPath, etw::graphicsKeyword, context.getFrameId()); saveStateIfPending(); context.clipToPath (path, transform); return ! context.isClipEmpty(); } bool Graphics::reduceClipRegion (const Image& image, const AffineTransform& transform) { JUCE_SCOPED_TRACE_EVENT_FRAME (etw::reduceClipRegionImage, etw::graphicsKeyword, context.getFrameId()); saveStateIfPending(); context.clipToImageAlpha (image, transform); return ! context.isClipEmpty(); } void Graphics::excludeClipRegion (Rectangle rectangleToExclude) { JUCE_SCOPED_TRACE_EVENT_FRAME_RECT_I32 (etw::excludeClipRegion, etw::graphicsKeyword, context.getFrameId(), rectangleToExclude); saveStateIfPending(); context.excludeClipRectangle (rectangleToExclude); } bool Graphics::isClipEmpty() const { return context.isClipEmpty(); } Rectangle Graphics::getClipBounds() const { return context.getClipBounds(); } void Graphics::saveState() { JUCE_SCOPED_TRACE_EVENT_FRAME (etw::saveState, etw::graphicsKeyword, context.getFrameId()); saveStateIfPending(); saveStatePending = true; } void Graphics::restoreState() { JUCE_SCOPED_TRACE_EVENT_FRAME (etw::restoreState, etw::graphicsKeyword, context.getFrameId()); if (saveStatePending) saveStatePending = false; else context.restoreState(); } void Graphics::saveStateIfPending() { if (saveStatePending) { JUCE_SCOPED_TRACE_EVENT_FRAME (etw::saveState, etw::graphicsKeyword, context.getFrameId()); saveStatePending = false; context.saveState(); } } void Graphics::setOrigin (Point newOrigin) { saveStateIfPending(); context.setOrigin (newOrigin); } void Graphics::setOrigin (int x, int y) { setOrigin ({ x, y }); } void Graphics::addTransform (const AffineTransform& transform) { JUCE_SCOPED_TRACE_EVENT_FRAME (etw::addTransform, etw::graphicsKeyword, context.getFrameId()); saveStateIfPending(); context.addTransform (transform); } bool Graphics::clipRegionIntersects (Rectangle area) const { return context.clipRegionIntersects (area); } void Graphics::beginTransparencyLayer (float layerOpacity) { JUCE_SCOPED_TRACE_EVENT_FRAME (etw::beginTransparencyLayer, etw::graphicsKeyword, context.getFrameId()); saveStateIfPending(); context.beginTransparencyLayer (layerOpacity); } void Graphics::endTransparencyLayer() { JUCE_SCOPED_TRACE_EVENT_FRAME (etw::endTransparencyLayer, etw::graphicsKeyword, context.getFrameId()); context.endTransparencyLayer(); } //============================================================================== void Graphics::setColour (Colour newColour) { saveStateIfPending(); context.setFill (newColour); } void Graphics::setOpacity (float newOpacity) { saveStateIfPending(); context.setOpacity (newOpacity); } void Graphics::setGradientFill (const ColourGradient& gradient) { setFillType (gradient); } void Graphics::setGradientFill (ColourGradient&& gradient) { setFillType (std::move (gradient)); } void Graphics::setTiledImageFill (const Image& imageToUse, const int anchorX, const int anchorY, const float opacity) { saveStateIfPending(); context.setFill (FillType (imageToUse, AffineTransform::translation ((float) anchorX, (float) anchorY))); context.setOpacity (opacity); } void Graphics::setFillType (const FillType& newFill) { saveStateIfPending(); context.setFill (newFill); } //============================================================================== void Graphics::setFont (const Font& newFont) { saveStateIfPending(); context.setFont (newFont); } void Graphics::setFont (const float newFontHeight) { setFont (context.getFont().withHeight (newFontHeight)); } Font Graphics::getCurrentFont() const { return context.getFont(); } //============================================================================== void Graphics::drawSingleLineText (const String& text, const int startX, const int baselineY, Justification justification) const { if (text.isEmpty()) return; // Don't pass any vertical placement flags to this method - they'll be ignored. jassert (justification.getOnlyVerticalFlags() == 0); auto flags = justification.getOnlyHorizontalFlags(); if (flags == Justification::right && startX < context.getClipBounds().getX()) return; if (flags == Justification::left && startX > context.getClipBounds().getRight()) return; struct ArrangementArgs { auto tie() const noexcept { return std::tie (font, text); } bool operator< (const ArrangementArgs& other) const { return tie() < other.tie(); } const Font font; const String text; }; auto configureArrangement = [] (const ArrangementArgs& args) { GlyphArrangement arrangement; arrangement.addLineOfText (args.font, args.text, 0.0f, 0.0f); return arrangement; }; using Cache = GlyphArrangementCache; ArrangementArgs args { context.getFont(), text }; const auto arrangement = Cache::getInstance()->get (std::move (args), std::move (configureArrangement)); const auto transform = std::invoke ([&] { const auto t = AffineTransform::translation ((float) startX, (float) baselineY); if (flags == Justification::left) return t; auto w = arrangement.getBoundingBox (0, -1, true).getWidth(); if ((flags & (Justification::horizontallyCentred | Justification::horizontallyJustified)) != 0) w /= 2.0f; return t.followedBy (AffineTransform::translation (-w, 0)); }); arrangement.draw (*this, transform); } void Graphics::drawMultiLineText (const String& text, const int startX, const int baselineY, const int maximumLineWidth, Justification justification, const float leading) const { if (text.isEmpty() || startX >= context.getClipBounds().getRight()) return; struct ArrangementArgs { auto tie() const noexcept { return std::tie (font, text, maximumLineWidth, justification, leading); } bool operator< (const ArrangementArgs& other) const { return tie() < other.tie(); } const Font font; const String text; const int maximumLineWidth; const Justification justification; const float leading; }; auto configureArrangement = [] (const ArrangementArgs& args) { GlyphArrangement arrangement; arrangement.addJustifiedText (args.font, args.text, 0.0f, 0.0f, (float) args.maximumLineWidth, args.justification, args.leading); return arrangement; }; ArrangementArgs args { context.getFont(), text, maximumLineWidth, justification, leading }; using Cache = GlyphArrangementCache; Cache::getInstance()->get (std::move (args), std::move (configureArrangement)) .draw (*this, AffineTransform::translation ((float) startX, (float) baselineY)); } void Graphics::drawText (const String& text, Rectangle area, Justification justificationType, bool useEllipsesIfTooBig) const { if (text.isEmpty() || ! context.clipRegionIntersects (area.getSmallestIntegerContainer())) return; struct ArrangementArgs { auto tie() const noexcept { return std::tie (font, text, width, height, justificationType, useEllipsesIfTooBig); } bool operator< (const ArrangementArgs& other) const { return tie() < other.tie(); } const Font font; const String text; const float width; const float height; const Justification justificationType; const bool useEllipsesIfTooBig; }; auto configureArrangement = [] (const ArrangementArgs& args) { GlyphArrangement arrangement; arrangement.addCurtailedLineOfText (args.font, args.text, 0.0f, 0.0f, args.width, args.useEllipsesIfTooBig); arrangement.justifyGlyphs (0, arrangement.getNumGlyphs(), 0.0f, 0.0f, args.width, args.height, args.justificationType); return arrangement; }; ArrangementArgs args { context.getFont(), text, area.getWidth(), area.getHeight(), justificationType, useEllipsesIfTooBig }; using Cache = GlyphArrangementCache; Cache::getInstance()->get (std::move (args), std::move (configureArrangement)) .draw (*this, AffineTransform::translation (area.getX(), area.getY())); } void Graphics::drawText (const String& text, Rectangle area, Justification justificationType, bool useEllipsesIfTooBig) const { drawText (text, area.toFloat(), justificationType, useEllipsesIfTooBig); } void Graphics::drawText (const String& text, int x, int y, int width, int height, Justification justificationType, const bool useEllipsesIfTooBig) const { drawText (text, coordsToRectangle (x, y, width, height), justificationType, useEllipsesIfTooBig); } void Graphics::drawFittedText (const String& text, Rectangle area, Justification justification, const int maximumNumberOfLines, const float minimumHorizontalScale, GlyphArrangementOptions options) const { if (text.isEmpty() || area.isEmpty() || ! context.clipRegionIntersects (area)) return; struct ArrangementArgs { auto tie() const noexcept { return std::tie (font, text, width, height, justification, maximumNumberOfLines, minimumHorizontalScale, options); } bool operator< (const ArrangementArgs& other) const noexcept { return tie() < other.tie(); } const Font font; const String text; const float width; const float height; const Justification justification; const int maximumNumberOfLines; const float minimumHorizontalScale; GlyphArrangementOptions options; }; auto configureArrangement = [] (const ArrangementArgs& args) { GlyphArrangement arrangement; arrangement.addFittedText (args.font, args.text, 0.0f, 0.0f, args.width, args.height, args.justification, args.maximumNumberOfLines, args.minimumHorizontalScale, args.options); return arrangement; }; ArrangementArgs args { context.getFont(), text, (float) area.getWidth(), (float) area.getHeight(), justification, maximumNumberOfLines, minimumHorizontalScale, options }; using Cache = GlyphArrangementCache; Cache::getInstance()->get (std::move (args), std::move (configureArrangement)) .draw (*this, AffineTransform::translation ((float) area.getX(), (float) area.getY())); } void Graphics::drawFittedText (const String& text, int x, int y, int width, int height, Justification justification, const int maximumNumberOfLines, const float minimumHorizontalScale, GlyphArrangementOptions options) const { drawFittedText (text, coordsToRectangle (x, y, width, height), justification, maximumNumberOfLines, minimumHorizontalScale, options); } //============================================================================== void Graphics::fillRect (Rectangle r) const { JUCE_SCOPED_TRACE_EVENT_FRAME_RECT_I32 (etw::fillRect, etw::graphicsKeyword, context.getFrameId(), r) context.fillRect (r, false); } void Graphics::fillRect (Rectangle r) const { JUCE_SCOPED_TRACE_EVENT_FRAME_RECT_F32 (etw::fillRect, etw::graphicsKeyword, context.getFrameId(), r) context.fillRect (r); } void Graphics::fillRect (int x, int y, int width, int height) const { JUCE_SCOPED_TRACE_EVENT_FRAME_RECT_I32 (etw::fillRect, etw::graphicsKeyword, context.getFrameId(), (Rectangle { x, y, width, height })) context.fillRect (coordsToRectangle (x, y, width, height), false); } void Graphics::fillRect (float x, float y, float width, float height) const { JUCE_SCOPED_TRACE_EVENT_FRAME_RECT_F32 (etw::fillRect, etw::graphicsKeyword, context.getFrameId(), (Rectangle { x, y, width, height })) fillRect (coordsToRectangle (x, y, width, height)); } void Graphics::fillRectList (const RectangleList& rectangles) const { JUCE_SCOPED_TRACE_EVENT_FRAME_RECT_F32 (etw::fillRectList, etw::graphicsKeyword, context.getFrameId(), rectangles) context.fillRectList (rectangles); } void Graphics::fillRectList (const RectangleList& rects) const { JUCE_SCOPED_TRACE_EVENT_FRAME_RECT_I32 (etw::fillRectList, etw::graphicsKeyword, context.getFrameId(), rects) RectangleList converted; for (const auto& r : rects) converted.add (r.toFloat()); context.fillRectList (converted); } void Graphics::fillAll() const { JUCE_SCOPED_TRACE_EVENT_FRAME (etw::fillAll, etw::graphicsKeyword, context.getFrameId()) context.fillAll(); } void Graphics::fillAll (Colour colourToUse) const { JUCE_SCOPED_TRACE_EVENT_FRAME (etw::fillAll, etw::graphicsKeyword, context.getFrameId()) if (! colourToUse.isTransparent()) { context.saveState(); context.setFill (colourToUse); context.fillAll(); context.restoreState(); } } //============================================================================== void Graphics::fillPath (const Path& path) const { JUCE_SCOPED_TRACE_EVENT_FRAME (etw::fillPath, etw::graphicsKeyword, context.getFrameId()); if (! (context.isClipEmpty() || path.isEmpty())) context.fillPath (path, AffineTransform()); } void Graphics::fillPath (const Path& path, const AffineTransform& transform) const { JUCE_SCOPED_TRACE_EVENT_FRAME (etw::fillPath, etw::graphicsKeyword, context.getFrameId()) if (! (context.isClipEmpty() || path.isEmpty())) context.fillPath (path, transform); } void Graphics::strokePath (const Path& path, const PathStrokeType& strokeType, const AffineTransform& transform) const { JUCE_SCOPED_TRACE_EVENT_FRAME (etw::strokePath, etw::graphicsKeyword, context.getFrameId()) if (! (context.isClipEmpty() || path.isEmpty())) context.strokePath (path, strokeType, transform); } //============================================================================== void Graphics::drawRect (float x, float y, float width, float height, float lineThickness) const { drawRect (coordsToRectangle (x, y, width, height), lineThickness); } void Graphics::drawRect (int x, int y, int width, int height, int lineThickness) const { drawRect (coordsToRectangle (x, y, width, height), lineThickness); } void Graphics::drawRect (Rectangle r, int lineThickness) const { drawRect (r.toFloat(), (float) lineThickness); } void Graphics::drawRect (Rectangle r, const float lineThickness) const { JUCE_SCOPED_TRACE_EVENT_FRAME_RECT_F32 (etw::drawRect, etw::graphicsKeyword, context.getFrameId(), r) jassert (r.getWidth() >= 0.0f && r.getHeight() >= 0.0f); context.drawRect (r, lineThickness); } //============================================================================== void Graphics::fillEllipse (Rectangle area) const { context.fillEllipse (area); } void Graphics::fillEllipse (float x, float y, float w, float h) const { fillEllipse (coordsToRectangle (x, y, w, h)); } void Graphics::drawEllipse (float x, float y, float width, float height, float lineThickness) const { drawEllipse (coordsToRectangle (x, y, width, height), lineThickness); } void Graphics::drawEllipse (Rectangle area, float lineThickness) const { context.drawEllipse (area, lineThickness); } void Graphics::fillRoundedRectangle (float x, float y, float width, float height, float cornerSize) const { fillRoundedRectangle (coordsToRectangle (x, y, width, height), cornerSize); } void Graphics::fillRoundedRectangle (Rectangle r, const float cornerSize) const { context.fillRoundedRectangle (r, cornerSize); } void Graphics::drawRoundedRectangle (float x, float y, float width, float height, float cornerSize, float lineThickness) const { drawRoundedRectangle (coordsToRectangle (x, y, width, height), cornerSize, lineThickness); } void Graphics::drawRoundedRectangle (Rectangle r, float cornerSize, float lineThickness) const { context.drawRoundedRectangle (r, cornerSize, lineThickness); } void Graphics::drawArrow (Line line, float lineThickness, float arrowheadWidth, float arrowheadLength) const { Path p; p.addArrow (line, lineThickness, arrowheadWidth, arrowheadLength); fillPath (p); } void Graphics::fillCheckerBoard (Rectangle area, float checkWidth, float checkHeight, Colour colour1, Colour colour2) const { jassert (checkWidth > 0 && checkHeight > 0); // can't be zero or less! if (checkWidth > 0 && checkHeight > 0) { context.saveState(); if (colour1 == colour2) { context.setFill (colour1); context.fillRect (area); } else { auto clipped = context.getClipBounds().getIntersection (area.getSmallestIntegerContainer()); if (! clipped.isEmpty()) { const int checkNumX = (int) (((float) clipped.getX() - area.getX()) / checkWidth); const int checkNumY = (int) (((float) clipped.getY() - area.getY()) / checkHeight); const float startX = area.getX() + (float) checkNumX * checkWidth; const float startY = area.getY() + (float) checkNumY * checkHeight; const float right = (float) clipped.getRight(); const float bottom = (float) clipped.getBottom(); for (int i = 0; i < 2; ++i) { int cy = i; RectangleList checks; for (float y = startY; y < bottom; y += checkHeight) for (float x = startX + (cy++ & 1) * checkWidth; x < right; x += checkWidth * 2.0f) checks.addWithoutMerging ({ x, y, checkWidth, checkHeight }); checks.clipTo (area); context.setFill (i == ((checkNumX ^ checkNumY) & 1) ? colour1 : colour2); context.fillRectList (checks); } } } context.restoreState(); } } //============================================================================== void Graphics::drawVerticalLine (const int x, float top, float bottom) const { if (top < bottom) context.fillRect (Rectangle ((float) x, top, 1.0f, bottom - top)); } void Graphics::drawHorizontalLine (const int y, float left, float right) const { if (left < right) context.fillRect (Rectangle (left, (float) y, right - left, 1.0f)); } void Graphics::drawLine (Line line) const { context.drawLine (line); } void Graphics::drawLine (float x1, float y1, float x2, float y2) const { context.drawLine (Line (x1, y1, x2, y2)); } void Graphics::drawLine (float x1, float y1, float x2, float y2, float lineThickness) const { drawLine (Line (x1, y1, x2, y2), lineThickness); } void Graphics::drawLine (Line line, const float lineThickness) const { context.drawLineWithThickness (line, lineThickness); } void Graphics::drawDashedLine (Line line, const float* dashLengths, int numDashLengths, float lineThickness, int n) const { jassert (n >= 0 && n < numDashLengths); // your start index must be valid! const Point delta ((line.getEnd() - line.getStart()).toDouble()); const double totalLen = delta.getDistanceFromOrigin(); if (totalLen >= 0.1) { const double onePixAlpha = 1.0 / totalLen; for (double alpha = 0.0; alpha < 1.0;) { jassert (dashLengths[n] > 0); // can't have zero-length dashes! const double lastAlpha = alpha; alpha += dashLengths [n] * onePixAlpha; n = (n + 1) % numDashLengths; if ((n & 1) != 0) { const Line segment (line.getStart() + (delta * lastAlpha).toFloat(), line.getStart() + (delta * jmin (1.0, alpha)).toFloat()); if (! approximatelyEqual (lineThickness, 1.0f)) drawLine (segment, lineThickness); else context.drawLine (segment); } } } } //============================================================================== void Graphics::setImageResamplingQuality (const Graphics::ResamplingQuality newQuality) { saveStateIfPending(); context.setInterpolationQuality (newQuality); } //============================================================================== void Graphics::drawImageAt (const Image& imageToDraw, int x, int y, bool fillAlphaChannel) const { drawImageTransformed (imageToDraw, AffineTransform::translation ((float) x, (float) y), fillAlphaChannel); } void Graphics::drawImage (const Image& imageToDraw, Rectangle targetArea, RectanglePlacement placementWithinTarget, bool fillAlphaChannelWithCurrentBrush) const { if (imageToDraw.isValid()) drawImageTransformed (imageToDraw, placementWithinTarget.getTransformToFit (imageToDraw.getBounds().toFloat(), targetArea), fillAlphaChannelWithCurrentBrush); } void Graphics::drawImageWithin (const Image& imageToDraw, int dx, int dy, int dw, int dh, RectanglePlacement placementWithinTarget, bool fillAlphaChannelWithCurrentBrush) const { drawImage (imageToDraw, coordsToRectangle (dx, dy, dw, dh).toFloat(), placementWithinTarget, fillAlphaChannelWithCurrentBrush); } void Graphics::drawImage (const Image& imageToDraw, int dx, int dy, int dw, int dh, int sx, int sy, int sw, int sh, const bool fillAlphaChannelWithCurrentBrush) const { if (imageToDraw.isValid() && context.clipRegionIntersects (coordsToRectangle (dx, dy, dw, dh))) drawImageTransformed (imageToDraw.getClippedImage (coordsToRectangle (sx, sy, sw, sh)), AffineTransform::scale ((float) dw / (float) sw, (float) dh / (float) sh) .translated ((float) dx, (float) dy), fillAlphaChannelWithCurrentBrush); } void Graphics::drawImageTransformed (const Image& imageToDraw, const AffineTransform& transform, const bool fillAlphaChannelWithCurrentBrush) const { if (imageToDraw.isValid() && ! context.isClipEmpty()) { if (fillAlphaChannelWithCurrentBrush) { context.saveState(); context.clipToImageAlpha (imageToDraw, transform); fillAll(); context.restoreState(); } else { context.drawImage (imageToDraw, transform); } } } //============================================================================== Graphics::ScopedSaveState::ScopedSaveState (Graphics& g) : context (g) { context.saveState(); } Graphics::ScopedSaveState::~ScopedSaveState() { context.restoreState(); } //============================================================================== //============================================================================== #if JUCE_UNIT_TESTS class GraphicsTests : public UnitTest { public: GraphicsTests() : UnitTest ("Graphics", UnitTestCategories::graphics) {} void runTest() override { beginTest ("Render image subsection"); { const SoftwareImageType softwareImageType; const NativeImageType nativeImageType; const ImageType* types[] { &softwareImageType, &nativeImageType }; for (auto* sourceType : types) for (auto* targetType : types) renderImageSubsection (*sourceType, *targetType); } } private: void renderImageSubsection (const ImageType& sourceType, const ImageType& targetType) { const auto sourceColour = Colours::cyan; const auto sourceOffset = 49; const Image source { Image::ARGB, 50, 50, true, sourceType }; const Image target { Image::ARGB, 50, 50, true, targetType }; const auto subsection = source.getClippedImage (Rectangle { sourceOffset, sourceOffset, 1, 1 }); Image::BitmapData { subsection, Image::BitmapData::writeOnly }.setPixelColour (0, 0, sourceColour); { // Render the subsection image so that it fills 'target' Graphics g { target }; // Use low resampling quality, because we want to avoid our pixel getting blurry when it's scaled up g.setImageResamplingQuality (Graphics::lowResamplingQuality); g.drawImage (subsection, 0, 0, target.getWidth(), target.getHeight(), 0, 0, 1, 1); } { // Check that all pixels in 'target' match the bottom right pixel of 'source' const Image::BitmapData bitmap { target, Image::BitmapData::readOnly }; int numFailures = 0; for (auto y = 0; y < bitmap.height; ++y) { for (auto x = 0; x < bitmap.width; ++x) { const auto targetColour = bitmap.getPixelColour (x, y); if (targetColour != sourceColour) ++numFailures; } } expect (numFailures == 0); } } }; static GraphicsTests graphicsTests; #endif } // namespace juce