|
|
il y a 7 ans | |
|---|---|---|
| Example | il y a 7 ans | |
| android | il y a 7 ans | |
| ios | il y a 8 ans | |
| .gitattributes | il y a 8 ans | |
| .gitignore | il y a 8 ans | |
| .npmignore | il y a 8 ans | |
| LICENSE | il y a 7 ans | |
| README.md | il y a 7 ans | |
| index.js | il y a 8 ans | |
| package.json | il y a 7 ans | |
| yarn.lock | il y a 8 ans |
Get thumbnail from local media. Currently, it only supports for video.
$ npm install react-native-thumbnail --save
$ react-native link react-native-thumbnail
Libraries ➜ Add Files to [your project's name]node_modules ➜ react-native-thumbnail and add RNThumbnail.xcodeprojlibRNThumbnail.a to your project’s Build Phases ➜ Link Binary With LibrariesCmd+R)<android/app/src/main/java/[...]/MainActivity.java
import com.reactlibrary.RNThumbnailPackage; to the imports at the top of the filenew RNThumbnailPackage() to the list returned by the getPackages() methodandroid/settings.gradle:
include ':react-native-thumbnail'
project(':react-native-thumbnail').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-thumbnail/android')
android/app/build.gradle:
compile project(':react-native-thumbnail')
import RNThumbnail from 'react-native-thumbnail';
RNThumbnail.get(filepath).then((result) => {
console.log(result.path); // thumbnail path
})