Coder Social home page Coder Social logo

imageutils's Introduction

DEPRECATED

ImageUtils

Usage:

  1. Add library to your project
  2. In AndroidManifest.xml write in your <application> next:
    <activity android:name="com.idap.imageutils.ImageUtilsActivity"/>
_```_

3. If you want take photo from camera:

```java
    ImageUtils.takePhoto(ACTIVITY_OR_FRAGMENT, YOUR_REQUEST_CODE);

from device:

    ImageUtils.getImageFromGallery(ACTIVITY_OR_FRAGMENT, YOUR_REQUEST_CODE);

If your targetSdkVersion is 23 or higher dont forget about Runtime Permissions.

  1. In onActivityResult do next
  if(requestCode == YOUR_REQUEST_CODE && resultCode == Activity.RESULT_OK){
       imagePath = data.getExtras().getString(ImageUtils.IMAGE_PATH_KEY);
       //or
       // imagePath = ImageUtils.getImagePath(data);
   }

Path to image: /storage/emulated/0/Android/data/{your_project}/files/tmp/

Publish:

  1. ./gradew assemble
  2. ./gradew install
  3. ./gradew bintrayUpload

imageutils's People

Contributors

idap-eugene-kotsogub avatar jeketos avatar

Stargazers

Artem Huminskyi avatar Volodymyr Kondratenko avatar  avatar

Watchers

James Cloos avatar Artem Huminskyi avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.