android:从web加载svg文件并在图像视图中显示它

时间:2015-01-29 13:11:32

标签: android svg imageview picasso svg-android

我想从web加载svg文件并在imageView上显示此文件,对于普通的png或其他图像文件,我使用Picasso库 是否可以将此库用于svg文件?有没有办法从网上加载svg文件并在图像视图上显示?我使用svg-android库来显示svg文件,但我不知道如何从网上获取svg图像所有示例都使用本地文件。

8 个答案:

答案 0 :(得分:37)

更新:如需更新版本,请查看Glide Samples (https://github.com/bumptech/glide/tree/master/samples/svg

-

您可以使用Glide(https://github.com/bumptech/glide/tree/v3.6.0)和AndroidSVG(https://bitbucket.org/paullebeau/androidsvg)。

还有来自Glide的样本:https://github.com/bumptech/glide/tree/v3.6.0/samples/svg/src/main/java/com/bumptech/svgsample/app

设置GenericRequestBuilder

requestBuilder = Glide.with(mActivity)
    .using(Glide.buildStreamModelLoader(Uri.class, mActivity), InputStream.class)
            .from(Uri.class)
            .as(SVG.class)
            .transcode(new SvgDrawableTranscoder(), PictureDrawable.class)
            .sourceEncoder(new StreamEncoder())
            .cacheDecoder(new FileToStreamDecoder<SVG>(new SvgDecoder()))
            .decoder(new SvgDecoder())
                    .placeholder(R.drawable.ic_facebook)
                    .error(R.drawable.ic_web)
            .animate(android.R.anim.fade_in)
            .listener(new SvgSoftwareLayerSetter<Uri>());

将RequestBuilder与uri一起使用

Uri uri = Uri.parse("https://de.wikipedia.org/wiki/Scalable_Vector_Graphics#/media/File:SVG_logo.svg");
            requestBuilder
                    .diskCacheStrategy(DiskCacheStrategy.SOURCE)
                            // SVG cannot be serialized so it's not worth to cache it
                    .load(uri)
                    .into(mImageView);

答案 1 :(得分:9)

请参阅Having issue on Real Device using vector image in android. SVG-android

在用户帖子中,他提出了类似的问题并建议他使用:

在布局文件中为ImageView创建成员变量;

private ImageView mImageView;

// intialize in onCreate(Bundle savedInstanceState)
mImageView = (ImageView) findViewById(R.id.image_view);

下载图片

private class HttpImageRequestTask extends AsyncTask<Void, Void, Drawable> {
    @Override
    protected Drawable doInBackground(Void... params) {
        try {


            final URL url = new URL("http://upload.wikimedia.org/wikipedia/commons/e/e8/Svg_example3.svg");
            HttpURLConnection urlConnection = (HttpURLConnection) url.openConnection();
            InputStream inputStream = urlConnection.getInputStream();
            SVG svg = SVGParser. getSVGFromInputStream(inputStream);
            Drawable drawable = svg.createPictureDrawable();
            return drawable;
        } catch (Exception e) {
            Log.e("MainActivity", e.getMessage(), e);
        }

        return null;
    }

    @Override
    protected void onPostExecute(Drawable drawable) {
        // Update the view
        updateImageView(drawable);
    }
}

然后将drawable应用于Imageview

@SuppressLint("NewApi")
private void updateImageView(Drawable drawable){
    if(drawable != null){

        // Try using your library and adding this layer type before switching your SVG parsing
        mImageView.setLayerType(View.LAYER_TYPE_SOFTWARE, null);
        mImageView.setImageDrawable(drawable);
    }
}

SVGParser位于https://github.com/pents90/svg-android

答案 2 :(得分:9)

使用此Glide based library loading xml

添加依赖

  compile 'com.github.ar-android:AndroidSvgLoader:1.0.0'

用于最新的Android依赖项Gradle使用此代替

implementation 'com.github.ar-android:AndroidSvgLoader:1.0.0'

main.xml中

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">

    <ImageView
        android:id="@+id/ivimage"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />
</LinearLayout>

MainActivity.java

public class MainActivity extends AppCompatActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.list_item);            

        ImageView image = (ImageView) findViewById(R.id.ivimage);

        SvgLoader.pluck()
                .with(this)
                .setPlaceHolder(R.mipmap.ic_launcher, R.mipmap.ic_launcher)
                .load("http://www.clker.com/cliparts/u/Z/2/b/a/6/android-toy-h.svg", image);

    }

    @Override protected void onDestroy() {
        super.onDestroy();
        SvgLoader.pluck().close();
    }
}

答案 3 :(得分:4)

Kotlin and Coil Library从URL加载SVG:

  1. 将Kotlin图像加载库添加到build.gradle(模块:app)(它还支持其他图像):

    implementation("io.coil-kt:coil:0.11.0")
    implementation("io.coil-kt:coil-svg:0.11.0")
    
  2. 将以下扩展功能添加到您项目的任何Kotlin文件中, (在班级之外而不是班级内部):

如果仅使用ImageView,请在下面的函数中使用AppView替换为AppCompatImageView。

fun AppCompatImageView.loadSvgOrOthers(myUrl: String?) {
    myUrl?.let {
        if (it.toLowerCase(Locale.ENGLISH).endsWith("svg")) {
            val imageLoader = ImageLoader.Builder(this.context)
                .componentRegistry {
                    add(SvgDecoder(this@loadSvgOrOthers.context))
                }
                .build()
            val request = LoadRequest.Builder(this.context)
                .data(it)
                .target(this)
                .build()
            imageLoader.execute(request)
        } else {
            this.load(myUrl)
        }
    }
}
  1. 现在按如下所示使用:

    myAppCompatImageView.loadSvgOrOthers("https[:]//example[.]com/image.svg")
    

希望这对希望使用Kotlin加载任何图像的人有所帮助。

答案 4 :(得分:2)

希望下面的代码对您有用。

  1. build.gradle

    中添加此依赖项

    implementation 'com.github.corouteam:GlideToVectorYou:v2.0.0'

  2. 现在开始在 MainActivity.java

    中工作

    ImageView image = (ImageView) findViewById(R.id.ivimage);

    String url= https://your_url/banking.svg GlideToVectorYou.init().with(this).load(Uri.parse(url),image);

答案 5 :(得分:1)

您可以使用该库

https://github.com/2coffees1team/GlideToVectorYou

他说:“该库基于Glide并提供相同的功能+ svg支持。”

答案 6 :(得分:1)

使用Glide V4或更高版本加载SVG

在app.gradle中添加依赖项>依赖项

implementation 'com.github.qoqa:glide-svg:2.0.4'
implementation 'com.github.bumptech.glide:glide:4.11.0'
annotationProcessor 'com.github.bumptech.glide:compiler:4.11.0'

创建新类SampleAppGlideModule.java并转到Build> Make Project(ctrl + f9)

import android.content.Context;
import android.util.Log;

import androidx.annotation.NonNull;

import com.bumptech.glide.GlideBuilder;
import com.bumptech.glide.annotation.GlideModule;
import com.bumptech.glide.module.AppGlideModule;

@GlideModule
public class SampleAppGlideModule extends AppGlideModule {



    @Override
    public boolean isManifestParsingEnabled() {
        return super.isManifestParsingEnabled();
    }

    @Override
    public void applyOptions(@NonNull Context context, @NonNull GlideBuilder builder) {
        super.applyOptions(context, builder);
        builder.setLogLevel(Log.DEBUG);
    }
}

使用Glide V4或更高版本加载SVG

GlideApp.with(this)                      
.load(contentLangModels.get(i).getContentImage()).into(contentLangBinding.ivExtra);

答案 7 :(得分:0)

可以使用Coil Image加载库,

将以下依赖项添加到您的应用级 build.gradle 文件中,

def coilVersion = '1.2.2'
implementation "io.coil-kt:coil:$coilVersion"
implementation "io.coil-kt:coil-svg:$coilVersion"

现在创建这个方法,

fun ImageView.loadImageFromUrl(imageUrl: String) {
val imageLoader = ImageLoader.Builder(this.context)
    .componentRegistry { add(SvgDecoder(this@loadImageFromUrl.context)) 
}
    .build()

val imageRequest = ImageRequest.Builder(this.context)
    .crossfade(true)
    .crossfade(300)
    .data(imageUrl)
    .target(
        onStart = {
            //set up an image loader or whatever you need
        },
        onSuccess = { result ->
            val bitmap = (result as BitmapDrawable).bitmap
            this.setImageBitmap(bitmap)
            //dismiss the loader if any
        },
        onError = {
            /**
             * TODO: set an error drawable
             */
        }
    )
    .build()

imageLoader.enqueue(imageRequest)

}

现在你可以从你的 ImageView 调用这个扩展函数了,

imgView.loadImage(imageUrl)

这适用于 svgs、pngs。我还没有用 jpg 尝试过,但也应该和它们一起工作。