Loading...
Logo
Processing Forum
Hey Everyone,

I'm having a problem scaling Pgraphics on event.  For example, when you press the 'a' key I want the Pgraphic to zoom in; simple enough but I am unable to get the Pgraphic to scale.  I am using Matt Patey's example.  I think it might be how I order the image and Pgraphic.  

See below. 

Thanks for any help....

j
Copy code
  1. /**
  2.  * Pan Demo
  3.  *
  4.  * Processing sketch illustrates how an off-screen buffer can be
  5.  * used to create a panning tool to view an image larger than the
  6.  * base canvas. Use the arrow keys to scroll to the limits of
  7.  * the displayed image.
  8.  *
  9.  * @author Matt Patey
  10.  */
  11.  
  12. PImage bufSlice;
  13. PGraphics buf;
  14. int copyOffsetX;
  15. int copyOffsetY;
  16. int copyWidth;
  17. int copyHeight;

  18. float scaler = 1.0;
  19.  
  20. void setup() {
  21.   size(400, 400, P3D);
  22.  
  23.   // Create an off-screen buffer that will contain the entire image.
  24.   buf = createGraphics(800, 800, JAVA2D);
  25.   buf.beginDraw();
  26.   buf.smooth();
  27.   buf.scale(scaler);
  28.   buf.background(255);
  29.   for (int i = 0; i < buf.width; i+=10) {
  30.     buf.line(i, 0, i + 50, buf.height);
  31.     buf.line(0, i, buf.height, i + 30);
  32.   }
  33.   buf.endDraw();
  34.  
  35.   copyOffsetX = 0;
  36.   copyOffsetY = 0;
  37.   copyWidth = width;
  38.   copyHeight = height;
  39. }
  40.  
  41. void draw() {
  42.   background(0);
  43.   image(getBufSlice(), 0, 0);
  44. }
  45.  
  46. /**
  47.  * Updates the copied version of the off-screen buffer.
  48.  */
  49. PImage getBufSlice() {
  50.   buf.scale(scaler);
  51.   return buf.get(copyOffsetX, copyOffsetY, copyWidth, copyHeight);
  52. }
  53.  
  54. /**
  55.  * Handle key presses.
  56.  */
  57. void keyPressed() {
  58.   
  59.   if(key == 'a'){
  60.     scaler += 0.1;
  61.   }
  62.   
  63.   
  64.   switch(keyCode) {
  65.   case LEFT:
  66.     if(copyOffsetX < buf.width - width) {
  67.       copyOffsetX++;
  68.     }
  69.     break;
  70.  
  71.   case RIGHT:
  72.     if(copyOffsetX > 0) {
  73.       copyOffsetX--;
  74.     }
  75.     break;
  76.  
  77.   case UP:
  78.     if(copyOffsetY < buf.height - height) {
  79.       copyOffsetY++;
  80.     }
  81.     break;
  82.  
  83.   case DOWN:
  84.     if(copyOffsetY > 0) {
  85.       copyOffsetY--;
  86.     }
  87.     break;
  88.   }
  89. }

Replies(1)

Hey All,

I placed the following code into draw:

Copy code
  1.  buf = createGraphics(800, 800, JAVA2D);
  2.   buf.beginDraw();
  3.   buf.smooth();
  4.   buf.scale(scaler);
  5.   buf.background(255);
  6.   for (int i = 0; i < buf.width; i+=10) {
  7.     buf.line(i, 0, i + 50, buf.height);
  8.     buf.line(0, i, buf.height, i + 30);
  9.   }
  10.   buf.endDraw();
I'm not sure is this the best approach, I think it is probably not, but hey it works....for the moment.

j