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

com.luck.picture.lib.compress.InputStreamProvider Maven / Gradle / Ivy

The newest version!
package com.luck.picture.lib.compress;

import com.luck.picture.lib.entity.LocalMedia;

import java.io.IOException;
import java.io.InputStream;

/**
 * 通过此接口获取输入流,以兼容文件、FileProvider方式获取到的图片
 * 

* Get the input stream through this interface, and obtain the picture using compatible files and FileProvider */ public interface InputStreamProvider { InputStream open() throws IOException; void close(); String getPath(); LocalMedia getMedia(); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy