Loading...
Logo
Processing Forum
Hello!

I'm making an android app but having some bad problems.
I found that using 'get' crashes the application.
Since copying a part of the screen is the essential part of the app, I need to get it done but don't know how.
Is there any solution or workaround to do this?

Here is my code.
Original code is much much longer and contains a lot of functions that does not matter in this topic, so I quick-wrote an alternative code to demonstrate the failure caused by using 'get' and to show you the basic function of the drawer app.

Copy code
  1. int pX = 0;
  2. int pY = 0;
  3. boolean firstTouch = true;
  4. PImage a;

  5. void setup() {
  6.   orientation(PORTRAIT);
  7.   background(255);
  8.   a = new PImage(300, 400, ARGB);
  9. }

  10. void draw() {
  11.   a = get(0, 0, 300, 400);
  12.   image(a, 300, 0);
  13. }

  14. void mouseDragged() {
  15.   stroke(0);
  16.   strokeWeight(10);
  17.   line(pX, pY, mouseX, mouseY);
  18.   pX = mouseX;
  19.   pY = mouseY;
  20. }

  21. void mousePressed() {
  22.   if(firstTouch) {
  23.     pX = mouseX;
  24.     pY = mouseY;
  25.     firstTouch = false;
  26.   }
  27. }

  28. void mouseReleased() {
  29.   firstTouch = true;
  30. }

So the code is basically a drawer, but the function I need so bad is to copy certain part of the screen and make it to a PImage variable.
The code crashes immediately after launching, but if you delete the 'get' part, it works just fine.

Thank you for your replies in advance!
Please help me out :'(

Replies(7)

The Processing reference  http://processing.org/reference/PImage.html says:

To create a new image, use the  createImage()  function. Do not use the syntax  new PImage()
It isn't important, as the content of a is immediately overwritten by the get() anyway.

What version of Processing do you use?
You could try calling loadPixels() before the get() call.
not sure loadPixels() will help. Seems like error is thrown in this line:


UPDATE:
my bad. loadPixels() actually helps :)
@amnon.owed

do you think this can be considered to be a bug in Android processing implementation and should be filed as an issue?
I never use android mode, so I can't really tell. It seems like it though.
Hello guys and thanks for your replies.
The version of my Processing is not the latest, being 2b9.

Actually, I solved the problem right after writing this post.
What I've done is just loadPixels() the screen and a newly created PImage as well, and copy pixel to pixel using pixels[] array.
It worked great but I forgot to check this forum and to tell you that I've managed it because I was so in a hurry at that time!

Now the Android part of the project is done, and wow, what is this!
Simply calling loadPixels() before using get() can solve the problem?
I should've check the forum early indeed 

Thank you a ton and sorry that I've been late to response your replies.