Tagged Questions
0
votes
1answer
91 views
Drawing multiple images using paintComponent()
I would like to display more than one image on the screen in the same JPanel.
A for loop iterates over each element in the array and displays their corresponding image, but only seems to keep the ...
1
vote
2answers
87 views
Any java package to draw simple geometric shape?
Does anyone have any suggestion about any lib/package to draw simple geometric, such as triangle, square? It can be saved into a png format.
1
vote
1answer
67 views
Unable to paint on background setted images on my view android
Here is my code I am able to draw on view but when I set background to my view, I am unable to paint on background imgae please help me out. Thanks in advance
public class FingerPaint extends ...
-3
votes
1answer
76 views
How to set background image to MyView class which i using for drawing android [closed]
I want set background image which I have edited using paint I am using the following code thanks in advance
How to save draw paint with custom view android?
0
votes
0answers
79 views
OpenGL: plot pixels at indices with a color line, on top of grayscale image
I have an array of indices that I want to plot over a grayscale image with a red line, or to even make the pixels at those indices 'red' or some color.
I want to do this openGL. Currently my display ...
0
votes
1answer
122 views
KineticJS draw Image inside a circle
I am trying to place an image inside a circle using:
var gArrow2 = new Image();
gArrow2.src = '../../Content/images/green_s.png';
var circle2 = new Kinetic.Circle({
...
-1
votes
1answer
527 views
Windows Phone 8 C# Load and Draw PNGs
I'm making a music theory game with C# and XAML, where a note appears on the stave and you press the corresponding button, and then it spawns a new note in a new position and gameplay 'loops' from ...
0
votes
0answers
54 views
Android - How to draw on a certain transparent image using gestureOverlay
i'm new to android development. my idea is while using normal gestureOverlay function (that able to draw on the whole of area that defined) but i put image on it which having transparent area, and i ...
1
vote
4answers
279 views
100x100 image with random pixel colour
I'm trying to make a 100x100 image with each pixel being a different random colour, like this example:
I've tried to use matplotlib but I'm not having much luck. Should I maybe be using PIL?
0
votes
1answer
251 views
Resize .GIF image
I have an animated .GIF image that I want to resize in java, but when trying to use the traditional methods, it does not seem to work:
ImageIcon esclamativoMid = null;
//... search my file...
...
1
vote
1answer
93 views
Drawing into a loaded UIImage in iOS
I have a couple of questions.
I have a loaded UIImage and i would like to:
1st - draw another image onto my loaded UIImage
2nd - draw a line (with color and thickness) onto my loaded UIImage
I ...
1
vote
1answer
129 views
(Java) How can I import and display sprites?
I'm sorry if this is a noobish question, but I really need help with this.
How can I import an image, and draw it on the screen?
I suppose I need to use a BufferedImage, but how?
package ...
0
votes
1answer
66 views
I cannot draw the image in chrome correctly
Here simple code1 which work fine Demo jsFiddle ,I want the same result in code2
Here the code2 Demo jsfiddle which have two problems.
The scale is not correct to 1400x700 pix
I can only successes ...
0
votes
2answers
105 views
Java image draws only second time
I'm trying to draw an Image with Java, I've the next code:
public void draw(Graphics g) {
Image strike_mid;
strike_mid = ...
0
votes
0answers
51 views
how to draw line between similar points in Matlab
I have an image and I want to know which points in the image are similar to each other, I have write a code to find which points are similar but I don't know how I can write something to draw line ...
1
vote
1answer
87 views
Java Line drawn disappeared in some points
I'm developing an applet in which the user can put some markers and draw lines over an image using the mouse.
The space where I put lines and markers is a JPanel. I created the markers as JComponents ...
0
votes
1answer
43 views
Drawing two overlayed images
I'm trying to draw 2 images, one on top of the other. The 1'st image is an arrow (that should appear like a header in the final image). The 1'st image (arrow) is 32x32 px while the 2'nd is 24x24.
...
0
votes
0answers
67 views
How to draw a line chart with the Google Image Chart Api having specific x-values?
A line chart is required to be sent via email therefore I need an image api.
Using the Google Image Chart Api https://developers.google.com/chart/image/docs/chart_wizard
I noticed that the given ...
2
votes
1answer
45 views
Can't draw .jpeg on a JPanel
I'm working on a Game where I need to draw a board and pawns actively when I move them. I've searched for a few hours now, but I can't find a solution.
They're located in the same folder as the ...
-1
votes
1answer
62 views
Draw an image from URL?
it's the first time I'm doing this in Java and am not sure how it works. Is the url supposed to be a String or a file?
It doesn't work. It gives "change type of ghost to ImageIcon" and i dont want ...
0
votes
1answer
446 views
How to draw a line on image using appcelerator titanium mobile
I'm want to make an application for Galaxy Tab, that allows me to draw pictures... Something similar to MS Paint (don't ask my why :)) so the first steps are:
win = Ti.UI.createWindow({
...
1
vote
2answers
41 views
Drawing cumulatively to an image - really?
I'm drawing beziers and rather than memorize every bezier ever and re-draw it every frame, I'm occasionally taking a picture of the image with:
+ (UIImage *) imageWithView:(UIView *)view: ...
1
vote
1answer
277 views
Drawing images with float coordinates
I want to draw an image that moves slowly with fractional coordinates so the movement is smoother. The image is very small (5x7 pixels). I thought that Graphics2D might have a way to draw an image at ...
1
vote
1answer
69 views
show an image1 behind another image2 in the white part of the image2 xcode ,objective c
I have an image that contain a form (cercle withe bordure ) and I want to draw a camembert progressing under the image and show the camembert progression in the white part of the image
I succeed to ...
4
votes
3answers
1k views
How to draw images in tkinter window
How do I draw an image in a tkinter window (I'm using python 3.3)? I'm looking for a statement which would draw an image at a given position on a tkinter window.
yeah...
Any answers would be ...
0
votes
1answer
284 views
Draw on Image in Java/Spring/JSP
i have an image implemented with <img src=""/> on a JSP Site.
Now I want to give the user the possibility to draw on that image (just one color and just a pencil) and upload this changed image ...
0
votes
0answers
206 views
C#, huge performance issues drawing objects in picturebox
I wondered if someone could helped me out. I am having huge performance issues with my program that eats up 20%-40$ of my core2duo CPU. The program is very simple and does this:
private void ...
0
votes
1answer
130 views
JFrame printing very weirdly?
I'm trying to make a java RAT but atm I only have screen displaying. When I run it it displays the screen on the JFrame fine, but it keeps dragging the same image a little lower with each draw like ...
1
vote
0answers
111 views
Pattern recognition to draw and match shaped
Can anyone kindly point me to any open source program that can draw and match images like the one in here see 1:10 to 4:20. Any clue will be much appreciated. thank you in advance.
0
votes
1answer
263 views
draw dynamically positioned image on top of a RelativeLayout - android
I am trying to draw a image at dynamic positions on top of a RelativeLayout that has other elements. I tried creating a class that extends View and add this view to the RelativeLayout but the image is ...
-1
votes
2answers
226 views
How can i draw just an external image in Java OpenGL? [closed]
How can i draw just an externel image to screen in Java Open GL?
So, i have an image.jpg and i "just" draw it to screen?
1
vote
1answer
2k views
drawing your own buffered image on frame
I have a buffered image with the sizes of my frame:
public BufferedImage img;
public static int WIDTH = 800;
public static int HEIGHT = 600;
img=new BufferedImage(WIDTH, ...
1
vote
1answer
380 views
How do I use Ruby to display an image?
I am making a simple image program. I installed the chunky_png gem to handle png images, but I have no idea how to draw in the window:
require 'chunky_png'
require 'tk'
town = ...
1
vote
1answer
305 views
Blit transparent images with Allegro
I'm wondering if there is any possibility to draw png with transparent colors, so I can make something half-transparent. I've read this but I cant get anything to work. I also heard about alpng ...
2
votes
2answers
1k views
Write text on image in WP7
I am new to WP7 development and I would like to know how can I write text to image?
First is it possible to do so?
As in GDI we can write text to image as shown below:
Dim pth As New GraphicsPath()
...
2
votes
3answers
884 views
HTML5 drawing pictures on a canvas with a for loop?
So, I want to create a minecraft website theme using HTML5. I am a bit shaky in HTML5/Javascript(haven't used it in a while), and I need some help. I am trying to calculate a number of 16x16px tiles ...
-1
votes
2answers
479 views
How can I draw an image on a canvas element through jquery? Or do I have to use javascript?
I need to know how I can draw an image on a canvas element, through JQuery. I really wanted to use JQuery because it's much simpler and I know more about it that pure javascript, although I will use ...
0
votes
2answers
1k views
How to draw on a image using finger on Android?
I would like to develop a function so that i can edit and draw some lines on the existing image. Can anyone give me some idea how to implement it? thanks!
0
votes
1answer
1k views
draw image in user control
I try to make a Connect Four game, and I have problem. I want that the Washers animated of fall. This is my code:
public class BoardA : UserControl
{
private static int xSize = 7, ySize = 6;
...
0
votes
1answer
431 views
Best way to draw an image dynamically
I'm creating an android app that has to draw a map of an ambient that i have explored with laserscans.
I have e text file with all my data like:
index x y
path 0 0 0
path 1 1 0
path 2 2 0
...
2
votes
3answers
3k views
Draw circle (using pixels applied in an image with for loop)
I want to draw a circle (with 1 or 2 for loops) using pixels position (starts from top left and ends at bottom right)
I successfully drew a rectangle with this method:
private void drawrect(int ...
2
votes
2answers
232 views
Canvas globalAlpha doesn't affect images?
I'm trying to put series of images on the canvas with putImageData(), but the globalAlpha property of the context doesn't seem to have an effect. However, it's working with drawImage(). Is that how ...
0
votes
1answer
2k views
Android: Draw image on canvas where the user touches
so I have a canvas, and I would like a certain image (Lets say image.png) to appear where the user touches. What would I use? OnTouch?
Can someone help me out? Here is my canvas class below. Right ...
0
votes
1answer
377 views
How can i use colorWithPatternImage in Xcode?
I've this code:
brushColor = [UIColor greenColor];
Instead to insert a "greenColor" i'd like to insert a patternImage like:
brushColor = [UIColor colorWithPatternImage(UIImage *)];
in "(UIImage ...
2
votes
2answers
304 views
How to wrap an existing memory buffer as a DC in native win32?
I have an image in memory defined of an array 32bit ARGB values. I'ld like to get a DC of that to draw on it and afterwards have the result in the same array. The image never gets displayed on the ...
2
votes
4answers
4k views
android fast pixel access and manipulation
I'm trying to port an emulator that i have written in java to android. Things have been going nicely, I was able to port most of my codes with minor changes however due to how emulation works, I need ...
1
vote
2answers
495 views
Android App How to draw multiple instances of a image
I've done some messing around with Android apps, but so far only made apps with the built in views, like buttons textfields, etc. I'm now trying to convert a game I made in java for the computer to ...
0
votes
1answer
2k views
how to load a PNG image on sdcard to a Canvas to draw in Android?
My app is a basic drawing app. User can draw on a Canvas and save the image as a PNG. He can load the earlier drawn images and edit them.
I was able to do the first part. that is, the user can draw ...
0
votes
1answer
195 views
Get part of canvas
How can i get only the drawn part of a canvas. I want the user to draw on the screen , but display only the drawn part of the view.Is there any way to do this?
0
votes
2answers
90 views
How to create a javascript in HTML that generates/returns an image from an existing image?
I am developing a webpage that uses a google map. I customized the icon/marker of the google map if it points to a certain specific location. The icon/marker was customized successfully and pointed to ...



