Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am on implementing multipoint cropping and I examined it can be done with canvas, As shown in the figure, I want to drag each point independently to resize the image and also want to save resized image in a sd card, But I can't do resizing and saving the selected image, please give me a right solution.

What I had done ?

  • The points are image view and their positions are referenced with the window width & height it is in MainActivity and it referenced to the line path point of the canvas with the another class (see below).

What is my Question is?

I want to drag each point independently (Resize) to get my object in that image and want to save the resized image in my SD or local .

MyCode:

MainActivity :

/** Called when the activity is first created. */
@SuppressLint("NewApi")
@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    al = (AbsoluteLayout) findViewById(R.id.al_layout);
    Display display = getWindowManager().getDefaultDisplay();
    Point size = new Point();
    display.getSize(size);
    width = size.x;
    height = size.y - 50;
    System.out.println(width + " " + height);

    px1 = width / 2;
    py1 = height / 7;

    px2 = (float) (width / 1.5);
    py2 = height / 5;

    px3 = (float) (width / 1.35);
    py3 = height / 3;

    px4 = (float) (width / 1.30);
    py4 = (float) (height / 2.15);

    px5 = (float) (width / 1.35);
    py5 = (float) (height / 1.7);

    px6 = (float) (width / 1.5);
    py6 = (float) (height / 1.4);

    px7 = (float) (width / 2);
    py7 = (float) (height / 1.3);

    px8 = (float) (width / 3);
    py8 = (float) (height / 1.4);

    px9 = (float) (width / 4.35);
    py9 = (float) (height / 1.7);

    px10 = (float) (width / 5.65);
    py10 = (float) (height / 2.15);

    px11 = (float) (width / 5.40);
    py11 = (float) (height / 3);

    px12 = (float) (width / 3.5);
    py12 = (float) (height / 5);

    p1 = new ImageView(this);
    p1.setX(px1);
    p1.setY(py1);
    p1.setBackgroundResource(R.drawable.dot);
    p1.setVisibility(View.VISIBLE);
    al.addView(p1, 10, 10);

    p2 = new ImageView(this);
    p2.setX(px2);
    p2.setY(py2);
    p2.setBackgroundResource(R.drawable.dot);
    p2.setVisibility(View.VISIBLE);
    al.addView(p2, 10, 10);

    ImageView p3 = new ImageView(this);
    p3.setX(px3);
    p3.setY(py3);
    p3.setBackgroundResource(R.drawable.dot);
    p3.setVisibility(View.VISIBLE);
    al.addView(p3, 10, 10);

    ImageView p4 = new ImageView(this);
    p4.setX(px4);
    p4.setY(py4);
    p4.setBackgroundResource(R.drawable.dot);
    p4.setVisibility(View.VISIBLE);
    al.addView(p4, 10, 10);

    ImageView p5 = new ImageView(this);
    p5.setX(px5);
    p5.setY(py5);
    p5.setBackgroundResource(R.drawable.dot);
    p5.setVisibility(View.VISIBLE);
    al.addView(p5, 10, 10);

    ImageView p6 = new ImageView(this);
    p6.setX(px6);
    p6.setY(py6);
    p6.setBackgroundResource(R.drawable.dot);
    p6.setVisibility(View.VISIBLE);
    al.addView(p6, 10, 10);

    ImageView p7 = new ImageView(this);
    p7.setX(px7);
    p7.setY(py7);
    p7.setBackgroundResource(R.drawable.dot);
    p7.setVisibility(View.VISIBLE);
    al.addView(p7, 10, 10);

    ImageView p8 = new ImageView(this);
    p8.setX(px8);
    p8.setY(py8);
    p8.setBackgroundResource(R.drawable.dot);
    p8.setVisibility(View.VISIBLE);
    al.addView(p8, 10, 10);

    ImageView p9 = new ImageView(this);
    p9.setX(px9);
    p9.setY(py9);
    p9.setBackgroundResource(R.drawable.dot);
    p9.setVisibility(View.VISIBLE);
    al.addView(p9, 10, 10);

    ImageView p10 = new ImageView(this);
    p10.setX(px10);
    p10.setY(py10);
    p10.setBackgroundResource(R.drawable.dot);
    p10.setVisibility(View.VISIBLE);
    al.addView(p10, 10, 10);

    ImageView p11 = new ImageView(this);
    p11.setX(px11);
    p11.setY(py11);
    p11.setBackgroundResource(R.drawable.dot);
    p11.setVisibility(View.VISIBLE);
    al.addView(p11, 10, 10);

    ImageView p12 = new ImageView(this);
    p12.setX(px12);
    p12.setY(py12);
    p12.setBackgroundResource(R.drawable.dot);
    p12.setVisibility(View.VISIBLE);
    al.addView(p12, 10, 10);

        }
}

PointCrop.java :

public PointCrop(Context context, AttributeSet attrs) {
    super(context, attrs);
    this.setFocusable(true);

    strokePaint = new Paint();
    strokePaint.setDither(true);
    strokePaint.setColor(Color.BLACK);
    strokePaint.setStyle(Paint.Style.STROKE);
    strokePaint.setAntiAlias(true);
    strokePaint.setStrokeWidth(3);
    fillBMP = BitmapFactory.decodeResource(context.getResources(),
            R.drawable.splash);
    fillBMPshader = new BitmapShader(fillBMP, Shader.TileMode.REPEAT,
            Shader.TileMode.REPEAT);
    fillPaint = new Paint();
    fillPaint.setColor(0xFFFFFFFF);
    fillPaint.setStyle(Paint.Style.FILL);
    fillPaint.setShader(fillBMPshader);

}

@Override
public boolean onTouchEvent(MotionEvent event) {
    if (event.getAction() == MotionEvent.ACTION_MOVE) {
        posX = event.getX();
        posY = event.getY();

        invalidate();
    }
    return true;
}

@Override
protected void onDraw(Canvas canvas) {
    canvas.getMatrix().invert(m);
    fillBMPshader.setLocalMatrix(m);

    Path path = new Path();
    path.moveTo(MainActivity.px1, MainActivity.py1);
    path.lineTo(MainActivity.px2, MainActivity.py2);
    path.lineTo(MainActivity.px3, MainActivity.py3);
    path.lineTo(MainActivity.px4, MainActivity.py4);
    path.lineTo(MainActivity.px5, MainActivity.py5);
    path.lineTo(MainActivity.px6, MainActivity.py6);
    path.lineTo(MainActivity.px7, MainActivity.py7);
    path.lineTo(MainActivity.px8, MainActivity.py8);
    path.lineTo(MainActivity.px9, MainActivity.py9);
    path.lineTo(MainActivity.px10, MainActivity.py10);
    path.lineTo(MainActivity.px11, MainActivity.py11);
    path.lineTo(MainActivity.px12, MainActivity.py12);

    path.lineTo(posX, posY);
    // path.lineTo(150, 0);

    canvas.drawPath(path, fillPaint);
share|improve this question
Why "you can't"? Tell us what was your previous approach and what was wrong with it. – Mosquito Dec 14 '12 at 8:33

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.