| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "config.h" | 5 #include "config.h" |
| 6 #include "core/paint/SVGImagePainter.h" | 6 #include "core/paint/SVGImagePainter.h" |
| 7 | 7 |
| 8 #include "core/layout/ImageQualityController.h" | 8 #include "core/layout/ImageQualityController.h" |
| 9 #include "core/layout/LayoutImageResource.h" | 9 #include "core/layout/LayoutImageResource.h" |
| 10 #include "core/layout/svg/LayoutSVGImage.h" | 10 #include "core/layout/svg/LayoutSVGImage.h" |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 || m_layoutSVGImage.style()->visibility() == HIDDEN | 26 || m_layoutSVGImage.style()->visibility() == HIDDEN |
| 27 || !m_layoutSVGImage.imageResource()->hasImage()) | 27 || !m_layoutSVGImage.imageResource()->hasImage()) |
| 28 return; | 28 return; |
| 29 | 29 |
| 30 FloatRect boundingBox = m_layoutSVGImage.paintInvalidationRectInLocalCoordin
ates(); | 30 FloatRect boundingBox = m_layoutSVGImage.paintInvalidationRectInLocalCoordin
ates(); |
| 31 if (!paintInfo.cullRect().intersectsCullRect(m_layoutSVGImage.localToParentT
ransform(), boundingBox)) | 31 if (!paintInfo.cullRect().intersectsCullRect(m_layoutSVGImage.localToParentT
ransform(), boundingBox)) |
| 32 return; | 32 return; |
| 33 | 33 |
| 34 PaintInfo paintInfoBeforeFiltering(paintInfo); | 34 PaintInfo paintInfoBeforeFiltering(paintInfo); |
| 35 // Images cannot have children so do not call updateCullRect. | 35 // Images cannot have children so do not call updateCullRect. |
| 36 TransformRecorder transformRecorder(*paintInfoBeforeFiltering.context, m_lay
outSVGImage, m_layoutSVGImage.localToParentTransform()); | 36 TransformRecorder transformRecorder(paintInfoBeforeFiltering.context, m_layo
utSVGImage, m_layoutSVGImage.localToParentTransform()); |
| 37 { | 37 { |
| 38 SVGPaintContext paintContext(m_layoutSVGImage, paintInfoBeforeFiltering)
; | 38 SVGPaintContext paintContext(m_layoutSVGImage, paintInfoBeforeFiltering)
; |
| 39 if (paintContext.applyClipMaskAndFilterIfNecessary() && !LayoutObjectDra
wingRecorder::useCachedDrawingIfPossible(*paintContext.paintInfo().context, m_la
youtSVGImage, paintContext.paintInfo().phase, LayoutPoint())) { | 39 if (paintContext.applyClipMaskAndFilterIfNecessary() && !LayoutObjectDra
wingRecorder::useCachedDrawingIfPossible(paintContext.paintInfo().context, m_lay
outSVGImage, paintContext.paintInfo().phase, LayoutPoint())) { |
| 40 LayoutObjectDrawingRecorder recorder(*paintContext.paintInfo().conte
xt, m_layoutSVGImage, paintContext.paintInfo().phase, boundingBox, LayoutPoint()
); | 40 LayoutObjectDrawingRecorder recorder(paintContext.paintInfo().contex
t, m_layoutSVGImage, paintContext.paintInfo().phase, boundingBox, LayoutPoint())
; |
| 41 paintForeground(paintContext.paintInfo()); | 41 paintForeground(paintContext.paintInfo()); |
| 42 } | 42 } |
| 43 } | 43 } |
| 44 | 44 |
| 45 if (m_layoutSVGImage.style()->outlineWidth()) { | 45 if (m_layoutSVGImage.style()->outlineWidth()) { |
| 46 PaintInfo outlinePaintInfo(paintInfoBeforeFiltering); | 46 PaintInfo outlinePaintInfo(paintInfoBeforeFiltering); |
| 47 outlinePaintInfo.phase = PaintPhaseSelfOutline; | 47 outlinePaintInfo.phase = PaintPhaseSelfOutline; |
| 48 ObjectPainter(m_layoutSVGImage).paintOutline(outlinePaintInfo, LayoutPoi
nt(boundingBox.location())); | 48 ObjectPainter(m_layoutSVGImage).paintOutline(outlinePaintInfo, LayoutPoi
nt(boundingBox.location())); |
| 49 } | 49 } |
| 50 } | 50 } |
| 51 | 51 |
| 52 void SVGImagePainter::paintForeground(const PaintInfo& paintInfo) | 52 void SVGImagePainter::paintForeground(const PaintInfo& paintInfo) |
| 53 { | 53 { |
| 54 const LayoutImageResource* imageResource = m_layoutSVGImage.imageResource(); | 54 const LayoutImageResource* imageResource = m_layoutSVGImage.imageResource(); |
| 55 IntSize imageViewportSize = expandedIntSize(computeImageViewportSize()); | 55 IntSize imageViewportSize = expandedIntSize(computeImageViewportSize()); |
| 56 if (imageViewportSize.isEmpty()) | 56 if (imageViewportSize.isEmpty()) |
| 57 return; | 57 return; |
| 58 | 58 |
| 59 RefPtr<Image> image = imageResource->image(imageViewportSize, m_layoutSVGIma
ge.style()->effectiveZoom()); | 59 RefPtr<Image> image = imageResource->image(imageViewportSize, m_layoutSVGIma
ge.style()->effectiveZoom()); |
| 60 FloatRect destRect = m_layoutSVGImage.objectBoundingBox(); | 60 FloatRect destRect = m_layoutSVGImage.objectBoundingBox(); |
| 61 FloatRect srcRect(0, 0, image->width(), image->height()); | 61 FloatRect srcRect(0, 0, image->width(), image->height()); |
| 62 | 62 |
| 63 SVGImageElement* imageElement = toSVGImageElement(m_layoutSVGImage.element()
); | 63 SVGImageElement* imageElement = toSVGImageElement(m_layoutSVGImage.element()
); |
| 64 imageElement->preserveAspectRatio()->currentValue()->transformRect(destRect,
srcRect); | 64 imageElement->preserveAspectRatio()->currentValue()->transformRect(destRect,
srcRect); |
| 65 | 65 |
| 66 InterpolationQuality interpolationQuality = InterpolationDefault; | 66 InterpolationQuality interpolationQuality = InterpolationDefault; |
| 67 interpolationQuality = ImageQualityController::imageQualityController()->cho
oseInterpolationQuality(paintInfo.context, &m_layoutSVGImage, image.get(), image
.get(), LayoutSize(destRect.size())); | 67 interpolationQuality = ImageQualityController::imageQualityController()->cho
oseInterpolationQuality(m_layoutSVGImage, image.get(), image.get(), LayoutSize(d
estRect.size())); |
| 68 | 68 |
| 69 InterpolationQuality previousInterpolationQuality = paintInfo.context->image
InterpolationQuality(); | 69 InterpolationQuality previousInterpolationQuality = paintInfo.context.imageI
nterpolationQuality(); |
| 70 paintInfo.context->setImageInterpolationQuality(interpolationQuality); | 70 paintInfo.context.setImageInterpolationQuality(interpolationQuality); |
| 71 paintInfo.context->drawImage(image.get(), destRect, srcRect, SkXfermode::kSr
cOver_Mode); | 71 paintInfo.context.drawImage(image.get(), destRect, srcRect, SkXfermode::kSrc
Over_Mode); |
| 72 paintInfo.context->setImageInterpolationQuality(previousInterpolationQuality
); | 72 paintInfo.context.setImageInterpolationQuality(previousInterpolationQuality)
; |
| 73 } | 73 } |
| 74 | 74 |
| 75 FloatSize SVGImagePainter::computeImageViewportSize() const | 75 FloatSize SVGImagePainter::computeImageViewportSize() const |
| 76 { | 76 { |
| 77 ASSERT(m_layoutSVGImage.imageResource()->hasImage()); | 77 ASSERT(m_layoutSVGImage.imageResource()->hasImage()); |
| 78 | 78 |
| 79 if (toSVGImageElement(m_layoutSVGImage.element())->preserveAspectRatio()->cu
rrentValue()->align() != SVGPreserveAspectRatio::SVG_PRESERVEASPECTRATIO_NONE) | 79 if (toSVGImageElement(m_layoutSVGImage.element())->preserveAspectRatio()->cu
rrentValue()->align() != SVGPreserveAspectRatio::SVG_PRESERVEASPECTRATIO_NONE) |
| 80 return m_layoutSVGImage.objectBoundingBox().size(); | 80 return m_layoutSVGImage.objectBoundingBox().size(); |
| 81 | 81 |
| 82 ImageResource* cachedImage = m_layoutSVGImage.imageResource()->cachedImage()
; | 82 ImageResource* cachedImage = m_layoutSVGImage.imageResource()->cachedImage()
; |
| 83 | 83 |
| 84 // Images with preserveAspectRatio=none should force non-uniform | 84 // Images with preserveAspectRatio=none should force non-uniform |
| 85 // scaling. This can be achieved by setting the image's container size to | 85 // scaling. This can be achieved by setting the image's container size to |
| 86 // its viewport size (i.e. if a viewBox is available - use that - else use i
ntrinsic size.) | 86 // its viewport size (i.e. if a viewBox is available - use that - else use i
ntrinsic size.) |
| 87 // See: http://www.w3.org/TR/SVG/single-page.html, 7.8 The 'preserveAspectRa
tio' attribute. | 87 // See: http://www.w3.org/TR/SVG/single-page.html, 7.8 The 'preserveAspectRa
tio' attribute. |
| 88 Length intrinsicWidth; | 88 Length intrinsicWidth; |
| 89 Length intrinsicHeight; | 89 Length intrinsicHeight; |
| 90 FloatSize intrinsicRatio; | 90 FloatSize intrinsicRatio; |
| 91 cachedImage->computeIntrinsicDimensions(intrinsicWidth, intrinsicHeight, int
rinsicRatio); | 91 cachedImage->computeIntrinsicDimensions(intrinsicWidth, intrinsicHeight, int
rinsicRatio); |
| 92 return intrinsicRatio; | 92 return intrinsicRatio; |
| 93 } | 93 } |
| 94 | 94 |
| 95 } // namespace blink | 95 } // namespace blink |
| OLD | NEW |