本文整理汇总了Java中com.caverock.androidsvg.SVG.setDocumentWidth方法的典型用法代码示例。如果您正苦于以下问题:Java SVG.setDocumentWidth方法的具体用法?Java SVG.setDocumentWidth怎么用?Java SVG.setDocumentWidth使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.caverock.androidsvg.SVG
的用法示例。
在下文中一共展示了SVG.setDocumentWidth方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: loadSvg
import com.caverock.androidsvg.SVG; //导入方法依赖的package包/类
private Pair<Drawable, int[]> loadSvg(InputStream is) throws SVGParseException {
SVG svg = SVG.getFromInputStream(is);
int[] size = new int[2];
size[0] = (int) svg.getDocumentViewBox().width();
size[1] = (int) svg.getDocumentViewBox().height();
svg.setDocumentWidth(mSize);
svg.setDocumentHeight(mSize);
return new Pair<>(new PictureDrawable(svg.renderToPicture()), size);
}
示例2: decode
import com.caverock.androidsvg.SVG; //导入方法依赖的package包/类
@Override
public Resource<SVG> decode(InputStream source, int width, int height) throws IOException {
try {
SVG svg = SVG.getFromInputStream(source);
svg.setDocumentHeight(height);
svg.setDocumentWidth(width);
svg.setDocumentPreserveAspectRatio(PreserveAspectRatio.LETTERBOX);
return new SimpleResource<>(svg);
} catch (SVGParseException ex) {
throw new IOException("Cannot load SVG from stream", ex);
}
}