0
votes
1answer
21 views

Scaling graphics causes game to stop rendering

I'm making a (currently rather simple) top-down 2D game in Java, and am having trouble implementing zooming. It seems the only way I can scale is by reducing my width and height, and feeding a ...
-1
votes
0answers
38 views

How to zoom a Composite?

I have a ScrolledComposite and on top of this I have a simple Composite and on top of this simple Composite I have 10 ChartComposites. Each ChartComposite contains a JFreeChart (Bar Chart). I want ...
0
votes
1answer
35 views

Zooming in and out a panel using jscrollbar in java

Input :- ArrayList of point2d of a geometrical shape and transformin it as: private void SetScale1(Graphics2D gr, int gr_width , int gr_height, double left_x , double right_x , double top_y , double ...
0
votes
0answers
53 views

Image pixelated while pinch to zoom during implementation

I have some strange behaviour in my android application. I have to implement pinch to zoom and pan/drag in a bitmap loaded in a imageview. When I pinched over the image, It gets pixelated instead the ...
0
votes
0answers
50 views

jpanel zoom view,resize and relocate components

Is it possible to zoom the panel and manually re-size the buttons inside the panel and somehow relocate its point in regards to the zoom scale or zoomed view? Maybe with this code: for(int ...
1
vote
1answer
81 views

JFreeChart select an area without zooming

I recently started using JFreeChart and there is something i would like to do but i'm not sure if it's possible. My program is supposed to draw a spectrogram (a sound graph) from a wav file. So i ...
1
vote
1answer
69 views

JScrollPane Zoom view with components inside

Are there any methods which i want to zoom the view of the viewport but the location of the components inside does not change. The setting is that i have a big jpanel inside a jscrollpane in which i ...
0
votes
0answers
63 views

Zoom in and out panel with drag and drop components inside

I have been working on the zoom in and out function using the Graphics2D scale. Here is my code in paintcomponent: g2.translate(zoomX, zoomY); g2.scale(zoom, zoom); g2.translate(-zoomX, ...
1
vote
1answer
114 views

SWT Browser advanced functionality with WEBKIT [closed]

I am currently building an SWT application that must be easily portable and have a simple, fully functional web browser. I chose to use webkit mostly because it is already installed on osx, major ...
4
votes
1answer
87 views

Graphics2D: How to create consistent padding around an irregular shape?

I'm using Java Graphics2D to generate this map with some sort of tinted red overlay over it. As you can see, the overlay gets cut off along the image boundary on the left side:- After demo'ing this ...
0
votes
0answers
35 views

How to use multitouch for pictures

I'm making an app in which I would like to implement an offline map service for the city Rome, I thought the simplest way to do this was to implement an high-resolution map-picture of the city, but ...
13
votes
2answers
596 views

Zoom JPanel in Java Swing

I have an existing Java Swing application. In the middle of the application is a single JPanel which I want to be able to zoom in and out of. The JPanel has a number of JComponents on it (mostly ...
0
votes
1answer
163 views

How do I zoom on Swing components using AffineTransform?

I am trying to create a panel where I will have the possibility to zoom on custom made JComponent objects. I have tried to call the scale() method in the AffineTransform class with different values, ...
5
votes
2answers
400 views

Zooming in on Mandelbrot set fractal in Java

I am beginning to make a mandelbrot set fractal viewer. I am having a lot of issues when it comes to zooming in on the fractal. If you try to zoom, the viewer will just close in on the center. I have ...
1
vote
3answers
346 views

Android Webview initial zoom out

I'm using a webview in my android app, at the moment when the app is started the website is zoomed in quite a lot, i want it to be zoomed out to fit the width of the screen. I currently have this in ...
2
votes
0answers
156 views

Webview image fit on screen

This looks like a duplicate, but I got a weird problem. I use this code: public void showPicture(){ System.out.println("comicTeller = "+comicTeller); WebView mWebView = (WebView) ...
3
votes
1answer
274 views

Set maximum and minimum zooming levels for image [duplicate]

Possible Duplicate: Imageview issue with zoom in and out,drag with maximum and minimum levels I have image zooming and dragging in my application. My requirement is the image sets maximum ...
0
votes
4answers
282 views

Java android ImageView with zoom

I have been searching for a view that can handle this. What i want is to allow the users to zoom in/out of an image. Right now i can not find any pre-built solutions for this except the WebView. One ...
1
vote
2answers
400 views

JScrollPane - Zoom relative to mouse position

I need to calculate the new position of the viewport when zooming in to an image. The UI is built up as follows: ImagePanel draws the image ImagePanelWrapper is a JPanel wrapping around the ...
2
votes
1answer
297 views

Zoom in with affinetransform swing

I'm working on my personal project using JAVA swing. The project is about drawing a map on a window. The map is zoomable using affinetransform. The problem I'm having here is whenever I zoom in or ...
1
vote
0answers
74 views

Java Canvas Zooming in Flickering

I'm working on a project that requires me to be able to zoom in and out on a Canvas. I'm using the method: setSize(new Dimension(WIDTH * scale, HEIGHT * scale)); and from there just modifying the ...
4
votes
2answers
891 views

How to zoom in to JPanel without moving the center: math or Swing?

I am trying to make a zoomable map with Swing. The map is a JPanel in a JScrollPane. When zoomed in, the map changes size and paint() paints the elements in a different position. This all works great. ...
3
votes
4answers
809 views

Android ViewGroup.setScaleX() cause the view to be clipped

I use NineOldAndroids library to scale my custom layout. public class MyLayout extends FrameLayout { // LayoutParams.MATCH_PARENT and all. ... @Override public boolean ...
1
vote
0answers
62 views

android jumps around?

zoom jumps around when I remove my finger and put it again ! anybody knows the problem ? boolean surfaceTouchEvent(MotionEvent event) { pointNum=event.getPointerCount(); switch (event.getAction() ...
2
votes
1answer
585 views

JFreeChart: data disappears after zooming and panning

I have a JFreeChart time series chart, which displays a TimePeriodValuesCollection. The dataset contains two intervals. The data is appearing correctly and I am able to pan (with Ctrl-drag) the view. ...
1
vote
1answer
327 views

Zooming a JLabel by overriding paintComponent ()

Consider this small runnable example: import java.awt.Color; import java.awt.Graphics; import java.awt.Graphics2D; import java.awt.event.MouseWheelEvent; import java.awt.event.MouseWheelListener; ...
0
votes
1answer
59 views

Set a zoom for my drawn canvas

I have an application which draws a maze using lines from 2 boolean arrays onto a canvas. I have got this all working as it should, however I need a way to set the zoom so it only ever shows 5x5 ...
0
votes
1answer
141 views

Multitouch zoom reacting even on single-touch interaction

I wrote this code for zoom in/out . it works but even with one finger it zoom in/out while it supposed to work only with 2 fingers (multitouch). any knows why ? boolean ...
1
vote
0answers
228 views

Zooming In On a Java Graphic

I am making a graph of a sound speed profile with java graphics. I have the static graph drawn (the one that pops up when you run the program), but I am trying to implement it such that if the user ...
0
votes
0answers
181 views

Display, scale and zoom huge custom painting

I have to draw some points and a polygon to link them together. The custom painting will be done on a JPanel with a JScrollPane and supports some scaling/zooming via AffineTransformation. After ...
1
vote
1answer
314 views

Android/ Java - Zooming in on my drawn canvas

I have created a 2D maze which consists of 2 sets of boolean array, refering to the verticle and horizontal walls for my maze. This maze is currently 12 x 12, however I only ever want to show 5 x 5. ...
17
votes
2answers
2k views

Android Gallery with pinch zoom

I found a sample project of gallery with pinch zoom and made some bug fix. You can download my code at here It supports full screen only. It always center the image to screen height. But I want to ...
0
votes
2answers
660 views

Java Tile Game Zooming

I am building a 2D top-down tile based game in Java. Naturally you can pan around and zoom in on the game, currently zooming in on 10 different levels, where each tile ranges 10x10 pixels to 100x100 ...
0
votes
2answers
263 views

Google Maps API Java Default Zoom

Im just wondering how to set a default zoom on my google maps application in java. I know in Javascript the call is to get the bounds and set the zoom to that, but is there any method of setting a ...
1
vote
1answer
345 views

Zooming in on a particular part of a BufferedImage

I am trying to get a subImage of a BufferedImage and then use this subImage to replace the original BufferedImage, to implement a zooming feature based on a user specified selection. However, when I ...
2
votes
1answer
154 views

Animated zooming out from the right-bottom-corner from JComponent causes stuttering

I'm currently implementing a swing JComponent as an image viewer with the ability to zoom, rotate and display the image centered and all of this animated. I have implemented all those features, but ...
0
votes
1answer
365 views

How to manually set the zoom on a Jung visualisation?

I have a jung tree displayed in a JPanel. The constructor of my tree looks like this: Forest<String, Integer> graph = new DelegateForest<String, Integer>(); static GraphZoomScrollPane ...
0
votes
1answer
574 views

Java image zoom

I need help in my code. int width = img.getXDim(); int height = img.getYDim(); int n = 3; Image newImg = new ByteImage(width * n, height * n, 1); for(int x = 0; x < width; x++){ ...
0
votes
1answer
694 views

Jpanel Zooming like in a paint program

I've got a problem over a zoom feature on a program. Here's the deal, I got a canvas which extends a jpanel and has a grid drawn on it. My problem is how to implement a zoom function. By zooming on ...
0
votes
3answers
3k views

Zoom in and out of images in Java

I think the question is quite self-explainitory, I want to implement a simple zoom function using a JSlider like in Windows Live Photo Gallery for instance. I've had a quick look online but all the ...
1
vote
1answer
1k views

mapView deprecated method getZoomControls?

I'm trying to get the default zoom controls to show on a google mapView. I was looking at this code. But getZoomControls() is deprecated. I'm trying to use setBuiltInZoomControls instead, but am ...
1
vote
1answer
613 views

Listening for zoom reset event in JFreeChart

How can I listen to JFreeChart's zoom reset event?
0
votes
2answers
599 views

Zoom functionality on Jframe?

Here is the scenario , I have an swing application used to show bookings ,we're using J Frame to show the information(some sort of images , booked ,unbooked) ..i have an requirement that when the ...
2
votes
1answer
1k views

Add zoom to an imageview in Android

I want to add zoom in my Android app. I have tried this code, but it just zooms in and out in the middle of the image and I want to apply the zoom on the whole image. In the same image, can I put a ...
1
vote
1answer
455 views

how to set maximum zoom level for offline maps?

Basically I have an offline maps from Google Maps. I downloaded it from MOBAC and successfully display the offline map but the maximum level is limited to 18, and the offline map is capable of 19 ...
0
votes
2answers
522 views

zoomable picture - android

How do I make a photo finger-zoomable on a android device? Is there a simple way, or is it complicated? But I dont want zoom buttons. I want it like a phonebrowser, when you take your fingers and drag ...
2
votes
2answers
2k views

Zooming in android - keep image in view

I know there are tons of threads on actually getting pinch zoom implemented - but I got this far already. I'm using SimpleScaleGestureListener to handle the pinching. I've managed to make sure you ...
1
vote
1answer
219 views

Android Development - Using a PNG as a map, marker for current location

I have a large PNG (around 1500 x 2000) that cut into slices and put back together using HTML because otherwise the image quality is horrible. I want to be able to have a marker of the user's current ...
1
vote
3answers
1k views

what is arg0 of setDefaultZoom(WebSettings.ZoomDensity.valueOf(arg0))?

I want to zoom the webview to any percentage with the function of setDefaultZoom(WebSettings.ZoomDensity.valueOf(arg0) But I do not know how to set the value of arg0 correctly. I tried to use ...
1
vote
2answers
1k views

Always show zoom controls in WebView

Is there any way to always show zoom controls in webview? I found this: Always show zoom controls on a MapView but that's for the mapview. I want them to always be visible. ...

1 2