blob: 074df19c9f8d2c23a22fb2ec74d50dbd43e10521 [file] [log] [blame]
/*
* Copyright (C) 2004, 2005, 2006, 2007 Nikolas Zimmermann <zimmermann@kde.org>
* Copyright (C) 2004, 2005 Rob Buis <buis@kde.org>
* Copyright (C) 2005 Eric Seidel <eric@webkit.org>
* Copyright (C) 2010 Dirk Schulze <krit@webkit.org>
* Copyright (C) 2021 Apple Inc. All rights reserved.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public License
* along with this library; see the file COPYING.LIB. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#include "config.h"
#include "SVGFEImage.h"
#include "Filter.h"
#include "FilterEffectApplier.h"
#include "GraphicsContext.h"
#include <wtf/text/TextStream.h>
namespace WebCore {
Ref<FEImage> FEImage::create(Ref<Image>&& image, const SVGPreserveAspectRatioValue& preserveAspectRatio)
{
auto imageRect = FloatRect { { }, image->size() };
return create(WTFMove(image), imageRect, preserveAspectRatio);
}
Ref<FEImage> FEImage::create(SourceImage&& sourceImage, const FloatRect& sourceImageRect, const SVGPreserveAspectRatioValue& preserveAspectRatio)
{
return adoptRef(*new FEImage(WTFMove(sourceImage), sourceImageRect, preserveAspectRatio));
}
FEImage::FEImage(SourceImage&& sourceImage, const FloatRect& sourceImageRect, const SVGPreserveAspectRatioValue& preserveAspectRatio)
: FilterEffect(Type::FEImage)
, m_sourceImage(WTFMove(sourceImage))
, m_sourceImageRect(sourceImageRect)
, m_preserveAspectRatio(preserveAspectRatio)
{
}
void FEImage::determineAbsolutePaintRect(const Filter& filter)
{
auto primitiveSubregion = filterPrimitiveSubregion();
auto imageRect = WTF::switchOn(m_sourceImage,
[&] (const Ref<Image>&) {
auto imageRect = primitiveSubregion;
auto srcRect = m_sourceImageRect;
m_preserveAspectRatio.transformRect(imageRect, srcRect);
return imageRect;
},
[&] (const Ref<ImageBuffer>&) {
return primitiveSubregion;
}
);
imageRect.scale(filter.filterScale());
if (clipsToBounds())
imageRect.intersect(maxEffectRect());
else
imageRect.unite(maxEffectRect());
setAbsolutePaintRect(enclosingIntRect(imageRect));
}
// FIXME: Move the class FEImageSoftwareApplier to separate source and header files.
class FEImageSoftwareApplier : public FilterEffectConcreteApplier<FEImage> {
using Base = FilterEffectConcreteApplier<FEImage>;
public:
using Base::Base;
bool apply(const Filter&, const FilterImageVector& inputs, FilterImage& result) override;
};
bool FEImageSoftwareApplier::apply(const Filter& filter, const FilterImageVector&, FilterImage& result)
{
auto resultImage = result.imageBuffer();
if (!resultImage)
return false;
auto primitiveSubregion = result.primitiveSubregion();
auto& context = resultImage->context();
WTF::switchOn(m_effect.sourceImage(),
[&] (const Ref<Image>& image) {
auto imageRect = primitiveSubregion;
auto srcRect = m_effect.sourceImageRect();
m_effect.preserveAspectRatio().transformRect(imageRect, srcRect);
imageRect.scale(filter.filterScale());
imageRect = m_effect.drawingRegionOfInputImage(IntRect(imageRect));
context.drawImage(image, imageRect, srcRect);
},
[&] (const Ref<ImageBuffer>& imageBuffer) {
auto imageRect = primitiveSubregion;
imageRect.moveBy(m_effect.sourceImageRect().location());
imageRect.scale(filter.filterScale());
imageRect = m_effect.drawingRegionOfInputImage(IntRect(imageRect));
context.drawImageBuffer(imageBuffer, imageRect.location());
}
);
return true;
}
bool FEImage::platformApplySoftware(const Filter& filter)
{
return FEImageSoftwareApplier(*this).apply(filter, { }, *filterImage());
}
TextStream& FEImage::externalRepresentation(TextStream& ts, RepresentationType representation) const
{
ts << indent << "[feImage";
FilterEffect::externalRepresentation(ts, representation);
ts << " image-size=\"" << m_sourceImageRect.width() << "x" << m_sourceImageRect.height() << "\"]\n";
// FIXME: should this dump also object returned by SVGFEImage::image() ?
return ts;
}
} // namespace WebCore