aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--dm/DMSrcSink.cpp57
-rw-r--r--dm/DMSrcSink.h12
2 files changed, 53 insertions, 16 deletions
diff --git a/dm/DMSrcSink.cpp b/dm/DMSrcSink.cpp
index ae21a5becb..3c2ee324ff 100644
--- a/dm/DMSrcSink.cpp
+++ b/dm/DMSrcSink.cpp
@@ -1056,30 +1056,57 @@ Name SKPSrc::name() const { return SkOSPath::Basename(fPath.c_str()); }
/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
#if defined(SK_XML)
-// Should we try to use the SVG intrinsic size instead?
-static const SkSize kSVGSize = SkSize::Make(1000, 1000);
+// Used when the image doesn't have an intrinsic size.
+static const SkSize kDefaultSVGSize = SkSize::Make(1000, 1000);
-SVGSrc::SVGSrc(Path path) : fPath(path) {}
+// Used to force-scale tiny fixed-size images.
+static const SkSize kMinimumSVGSize = SkSize::Make(128, 128);
-Error SVGSrc::draw(SkCanvas* canvas) const {
- SkFILEStream stream(fPath.c_str());
- if (!stream.isValid()) {
- return SkStringPrintf("Unable to open file: %s", fPath.c_str());
- }
+SVGSrc::SVGSrc(Path path) : fPath(path), fScale(1) {}
- sk_sp<SkSVGDOM> dom = SkSVGDOM::MakeFromStream(stream);
- if (!dom) {
- return SkStringPrintf("Unable to parse file: %s", fPath.c_str());
- }
+Error SVGSrc::ensureDom() const {
+ if (!fDom) {
+ SkFILEStream stream(fPath.c_str());
+ if (!stream.isValid()) {
+ return SkStringPrintf("Unable to open file: %s", fPath.c_str());
+ }
+ fDom = SkSVGDOM::MakeFromStream(stream);
+ if (!fDom) {
+ return SkStringPrintf("Unable to parse file: %s", fPath.c_str());
+ }
- dom->setContainerSize(kSVGSize);
- dom->render(canvas);
+ const SkSize& sz = fDom->containerSize();
+ if (sz.isEmpty()) {
+ // no intrinsic size
+ fDom->setContainerSize(kDefaultSVGSize);
+ } else {
+ fScale = SkTMax(1.f, SkTMax(kMinimumSVGSize.width() / sz.width(),
+ kMinimumSVGSize.height() / sz.height()));
+ }
+ }
return "";
}
+Error SVGSrc::draw(SkCanvas* canvas) const {
+ Error err = this->ensureDom();
+ if (err.isEmpty()) {
+ SkAutoCanvasRestore acr(canvas, true);
+ canvas->scale(fScale, fScale);
+ fDom->render(canvas);
+ }
+
+ return err;
+}
+
SkISize SVGSrc::size() const {
- return kSVGSize.toRound();
+ Error err = this->ensureDom();
+ if (!err.isEmpty()) {
+ return SkISize::Make(0, 0);
+ }
+
+ return SkSize::Make(fDom->containerSize().width() * fScale,
+ fDom->containerSize().height() * fScale).toRound();
}
Name SVGSrc::name() const { return SkOSPath::Basename(fPath.c_str()); }
diff --git a/dm/DMSrcSink.h b/dm/DMSrcSink.h
index dfc4955b5a..e8466aa50d 100644
--- a/dm/DMSrcSink.h
+++ b/dm/DMSrcSink.h
@@ -249,6 +249,12 @@ private:
};
#if defined(SK_XML)
+} // namespace DM
+
+class SkSVGDOM;
+
+namespace DM {
+
class SVGSrc : public Src {
public:
explicit SVGSrc(Path path);
@@ -259,7 +265,11 @@ public:
bool veto(SinkFlags) const override;
private:
- Path fPath;
+ Error ensureDom() const;
+
+ Path fPath;
+ mutable sk_sp<SkSVGDOM> fDom;
+ mutable SkScalar fScale;
typedef Src INHERITED;
};