Giter Club home page Giter Club logo

zoomcropimage's Introduction

ZoomCropImage

An Android library for zooming and cropping image.

Demo

Download

Gradle

compile 'com.github.crazyorr:zoom-crop-image:0.1.2'

Maven

<dependency>
    <groupId>com.github.crazyorr</groupId>
    <artifactId>zoom-crop-image</artifactId>
    <version>0.1.2</version>
</dependency>

Usage

Import library module and add it as dependency

// call up ZoomCropImageActivity
Intent intent = new Intent(this, ZoomCropImageActivity.class);
intent.putExtra(ZoomCropImageActivity.INTENT_EXTRA_URI, originImageUri);
intent.putExtra(ZoomCropImageActivity.INTENT_EXTRA_OUTPUT_WIDTH, PICTURE_WIDTH);
intent.putExtra(ZoomCropImageActivity.INTENT_EXTRA_OUTPUT_HEIGHT, PICTURE_HEIGHT);
intent.putExtra(ZoomCropImageActivity.INTENT_EXTRA_CROP_SHAPE, CropShape.SHAPE_OVAL);   //optional
intent.putExtra(ZoomCropImageActivity.INTENT_EXTRA_SAVE_DIR,
        Environment.getExternalStorageDirectory().getAbsolutePath() + File.separator + getPackageName());   //optional
intent.putExtra(ZoomCropImageActivity.INTENT_EXTRA_FILE_NAME, "cropped.png");   //optional
startActivityForResult(intent, REQUEST_CODE_CROP_PICTURE);

// get result in onActivityResult callback
@Override
public void onActivityResult(int requestCode, int resultCode, Intent data) {
    super.onActivityResult(requestCode, resultCode, data);
    switch (requestCode) {
    case REQUEST_CODE_CROP_PICTURE:
            switch(resultCode){
                case ZoomCropImageActivity.CROP_SUCCEEDED:
                    if (data != null) {
                        Uri croppedImageUri = data
                                .getParcelableExtra(ZoomCropImageActivity.INTENT_EXTRA_URI);
                        // use cropped image to do things ...
                      }
                    break;
                case ZoomCropImageActivity.CROP_CANCELLED:
                case ZoomCropImageActivity.CROP_FAILED:
                    break;
            }
            break;
    }
}

Credits

License

Copyright 2015 Lei Wang

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

Bitdeli Badge

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.