All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.larvalabs.svgandroid.package-info Maven / Gradle / Ivy

Go to download

Brings SVG parsing and drawing functionality to Android devices. Forked from the original project at http://code.google.com/p/svg-android/.

The newest version!
/**
 * Provides a mechanism to parse a limited version of SVG Basic 1.1 files in to android.graphics.Picture
 * objects. This allows vector graphics files to be saved out of illustration software (such as Adobe Illustrator) as
 * SVG Basic and then used directly in an Android app. The android.graphics.Picture is a very optimized and
 * convenient vector graphics class. Performance is very good on a wide array of Android devices.
 * 

* Note that only SVG features that can be directly converted in to Android graphics calls are supported. The following * SVG Basic 1.1 features are not supported and will be ignored by the parser: *

    *
  • All text and font features. *
  • Styles. *
  • Symbols, conditional processing. *
  • Patterns. *
  • Masks, filters and views. *
  • Interactivity, linking, scripting and animation. *
* Even with the above features missing, users will find that most Illustrator drawings will render perfectly well on * Android with this library. See the {@link com.larvalabs.svgandroid.SVGParser SVGParser} class for instructions on how * to use the parser. * * @see com.larvalabs.svgandroid.SVGParser */ package com.larvalabs.svgandroid;




© 2015 - 2024 Weber Informatics LLC | Privacy Policy