Code Monkey home page Code Monkey logo

Comments (5)

panpf avatar panpf commented on August 15, 2024 1

Please note log "ImageZoomer. not working. rotateTo"

The rotateTo method works after the picture is displayed, so you must receive the onCompleted event after executing the rotateTo, as follows:

SketchImageView imagev = (SketchImageView) findViewById(R.id.image_rotate);
imagev.setZoomEnabled(true);
imagev.setDisplayListener(new DisplayListener() {
    ...

    @Override
    public void onCompleted(Drawable drawable, ImageFrom imageFrom, ImageAttrs imageAttrs) {	
        imagev.getImageZoomer().rotateTo(90);
    }
});

imagev.displayImage("http://t.cn/RShdS1f");

from sketch.

panpf avatar panpf commented on August 15, 2024

You need to turn on the zoom function first:

SketchImageView sketchImageView = ...;
sketchImageView.setZoomEnabled (true);

And then execute when the user triggers the rotation operation:

sketchImageView.getImageZoomer (). rotateTo (90)

Reference Documents https://github.com/panpf/sketch/blob/master/docs/wiki/zoom.md

from sketch.

arunramya avatar arunramya commented on August 15, 2024

My code is:

i compiled your library as follows.

compile 'me.xiaopan:sketch:2.4.0-beta1'
compile 'me.xiaopan:sketch-gif:2.4.0-beta1'

Activity code :

SketchImageView image = (SketchImageView) findViewById(R.id.image_rotate);
image.setSupportZoom(true);
//image.setRotation(90);
image.getImageZoomer().setReadMode(true);
image.getImageZoomer().rotateTo(90);

but image not rotated, please kindly check this once.

from sketch.

arunramya avatar arunramya commented on August 15, 2024

My code is:

i compiled your library as follows.

compile 'me.xiaopan:sketch:2.5.0-b2'
compile 'me.xiaopan:sketch-gif:2.5.0-b2'

Activity code :

SketchImageView imagev = (SketchImageView) findViewById(R.id.image_rotate);
imagev.setZoomEnabled(true);
image.getImageZoomer().rotateTo(90);

logs:

10-09 09:50:18.594 10361-10361/locker.gallery.imageorientation W/art: Before Android 4.1, method android.graphics.PorterDuffColorFilter android.support.graphics.drawable.VectorDrawableCompat.updateTintFilter(android.graphics.PorterDuffColorFilter, android.content.res.ColorStateList, android.graphics.PorterDuff$Mode) would have incorrectly overridden the package-private method in android.graphics.drawable.Drawable
10-09 09:50:18.748 10361-10361/locker.gallery.imageorientation W/Sketch: SLog. setLevel. UNKNOWN(0) -> INFO
10-09 09:50:18.749 10361-10361/locker.gallery.imageorientation W/Sketch: ImageZoomer. not working. rotateTo

but image not rotated, please kindly check this once.

from sketch.

arunramya avatar arunramya commented on August 15, 2024

Thank you. its working amazing.

from sketch.

Related Issues (20)

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.