Giter VIP home page Giter VIP logo

cropview's People

Contributors

oginotihiro avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar

cropview's Issues

Rotation Function

How can I create a rotate function?

I have added two methods to the CropView class, RotateRight and RotateLeft:

public boolean rotateRight()
{
    var fromRotation = mBitmapDisplayed.getRotation();
    if (fromRotation == 270)
    {
        mBitmapDisplayed.setRotation(0);
        fromRotation = -90;
    }
    else
    {
        mBitmapDisplayed.setRotation(fromRotation + 90);
    }

    var rotateBitmap = new RotateBitmap(mBitmapDisplayed.getBitmap(), mBitmapDisplayed.getRotation());
    if (rotateBitmap != null)
    {
        mBitmapDisplayed = rotateBitmap;
        Animation an = new RotateAnimation(fromRotation, rotateBitmap.getRotation(), Animation.RELATIVE_TO_SELF, 0.5f, Animation.RELATIVE_TO_SELF, 0.5f);
        an.setDuration(333);
        an.setRepeatCount(0);
        an.setRepeatMode(RepeatMode.Reverse),
        an.setFillAfter(true);

        clearAnimation();
        startAnimation(an);

        //After animation, something needs to happen, redraw, place the cropview correctly. Or reset the view somehow.

        return true;
    }

    return false;
}

The problem is, the crop square in the middle, rotates away with the image until the image is upright again (starting point).
How can we make the crop part stay where it is with the image rotating behind it with animation?

The above code works for animate rotating the imageview.

App crash

CropUtil.java line 297
Fatal Exception: android.app.RecoverableSecurityException
com.myapp.live has no access to content://media/external/images/media/52557

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.