Loading...
Logo
Processing Forum
sillyexample's Profile
16 Posts
21 Responses
0 Followers

Activity Trend

Last 30 days
Show:
Private Message
    Hi,

    I am looking to create an android application in eclipse using the processing library.
    I want to use the wywiwyg editor for creating a menu while using processing's draw() function to display graphics based on user input.
    my problem is that if I use ...

    public void onCreate(Bundle savedInstanceState) {

    .. to create the menu, draw() and setup seem to be ignored.

    Is it possible to achieve what I am trying?

     

    Hi,

    I am getting a Nullpointer exception from the following. Any idea why?
    As you can see I have an if statement to make sure that the image is not null and it happens on first entry to the loop...

    1.   int r=0,g=0,b=0;
    2.   if(img!=null && img.width>-1){
    3.    for(int px=0;px<img.width;px++){
    4.      for(int py=0;py<img.height;py++){
    5.            int loc = px + py*img.width;
    6.            r+=red(img.pixels[loc]);
    7.           g+=green(img.pixels[loc]);
    8.           b+=blue(img.pixels[loc]);
    9.       }
    10.   }
    11.   }
    The error message is as follows:

    1. FATAL EXCEPTION: Animation Thread
    2. java.lang.NullPointerException
    3. at processing.test.sketchname.sketchname.function_name(sketchname.java:328)
    4. at processing.test.sketchname.sketchname.setup(sketchname.java:85)
    5. at processing.core.PApplet.handleDraw(Unknown Source)
    6. at processing.core.PGraphicsAndroid2D.requestDraw(Unknown Source)
    7. at processing.core.PApplet.run(Unknown Source)
    8. at java.lang.Thread.run(Thread.java:1019)


    Thanks

    Anybody got some good image filtering functions they want to share?
    Like the ones in photoshop under "Filters" (i.e. blur, sharpen, charcoal etc).
    I'm not a big fan of the ones in the processing library.


    Thanks
    First off, I jus wanna say thanks to everybody on these forums for their help with the issues I have posted up in the past few weeks.

    Secondly, I have another issue..

    ( sample code in first reply)

    I am currently working on a drawing application that uses a png image as its "ink".
    The image is loaded into a PImage variable called "pen1" at the begining of the program.
    When the user pressed down on the mouse the image is drawn to a JAVA2D PGRAPHICS  at mousex,mousey.
    The image itself is only 20*20 pixels.

    Also, if i replace:
    1. image(pen1,mouseX,mouseY,20,20);
    with:
    1. rect(mouseX,mouseY,20,20);
    ..it works fine..


    It works fine for about 50-100 draws and then it crashes with the following error:

    1. An OutOfMemoryError means that your code is either using up too much memory
    2. because of a bug (e.g. creating an array that's too large, or unintentionally
    3. loading thousands of images), or that your sketch may need more memory to run.
    4. If your sketch uses a lot of memory (for instance if it loads a lot of data files)
    5. you can increase the memory available to your sketch using the Preferences window.
    6. Exception in thread "Animation Thread" java.lang.OutOfMemoryError: Java heap space
    Is there any way to this in processing without looping through pixel by pixel?

    say i have an image that keeps changing and I want to save an array of "snapshots"
    using pimage,get causes me problems because it only returns rgb and imgs[0] = pimage causes problems because it only references the image..


    any ideas?
    Thanks
    Hi,
    I am trying to create transparent layers,
    I can do it by drawing each graphic individually but this takes too long.

    To over come this problem I am trying to add all the graphics to PImages as soon as they are created.
    This has led me to start using PGraphics to draw the graphics onto and then copy those graphics into a PImage.
    The problem I am having is that I cannot get a transparent background on the PGraphics object from which I am copying the graphics.

    Below is some code that should highlight the issue:


    1.  
    2.  PGraphics pg;
    3.  PGraphics frame;
    4.  PApplet papp=this;
    5.  
    6.  public void setup(){
    7.  
    8.  size(800,800);
    9.  pg = createGraphics(papp.width, papp.height, JAVA2D);
    10.  pg.background(255);
    11.  }
    12.  
    13.  public void draw(){
    14.  pg.beginDraw();
    15.  pg.endDraw();
    16.  }
    17.  
    18.  public void mousePressed(){
    19.  
    20.  rect(0,0,200,200);
    21.  pg.beginDraw();
    22.  pg.stroke(34);
    23.  pg.fill(57);
    24.  pg.rect(mouseX,mouseY,50,50);
    25.  pg.line(25,25,67,89);
    26.  pg.endDraw();
    27.  PImage img=new PImage(papp.width,papp.height);
    28.  img=pg.get(0,0,300,300);
    29.  papp.image(img,20,20,0300,300);
    30.  
    31.  }
    32.  






    As you can see from running the above, it is setting a blue background for some unknown (to me) reason
    Hi,

    I'm currently working on an application using processing. I have built a custom UI but it has just one major flaw.
    As there can be a lot of graphics on screen at any one time, it doesn't make much sense to continuously redraw the complete screen for every frame when the mouse is pressed on the resize button for a form panel.

    My next step was to take a snap shot of any graphic heavy sections of the screen on every mouseReleased event and then display these instead while resizing a panel. This causes further issues as it may take up to a second to process the screenshot and can cause lags in other areas of the application. 


    Anybody have any experience in doing something like this or can think of any elegant solutions?


    Thanks
    I want to be able to open my sketch automatically for a certain file-type (say ".ttt") in the same way that if you double click a ".doc" file you will (probably) open Word.

    Is there any way I can set my sketch to take in a filename as an argument when it loads?


    Thanks
    Hi,

    I just have a few questions on Processing and thought it would be best to to just throw them all in one post:

    1: Is it possible to reference methods as variables like is done in JavaScript 
    i.e if(button.type=="close"){ button.action() = hide_parent(); }

    2. Is there any way to read in pasted images (like is done in photoshop and similar programs?

    3. is it possible to save a screenshot as an image file?



    Thanks
    I'm aware that there are some work arounds to this but nothing that I can come up with can really work the way I would like it to.

    Lets say i want to store both of the below classes (A and B) in the same array, how would I do it?

    1. class ALL{
    2. String type = "Basic";
    3. my_id=current_id;
    4. ALL(){ array[my_id]=this; current_id++;}
    5. }
    6. class A extends ALL{
    7. String type = "A type";
    8. my_id=current_id;
    9. A(){ array[my_id]=this; current_id++;}
    10. }

    11. class B extends ALL{
    12. String type = "B type";
    13. my_id=current_id;
    14. A(){ array[my_id]=this; current_id++;}
    15. }
    The above code is pretty much how I am going about doing it at the moment but it is giving me all sorts of problems.

    Any ideas??

    Thanks