-5
votes
1answer
53 views

C++ equivalent of Java's paintcomponent? [closed]

After a good year on java, I've come to use the paint component so I can "visually" see my programs work. I want to learn c++, but I simply cant visualize my programs by the console. Is there any ...
0
votes
1answer
35 views

How to draw a dot that leaves a trail

I'm still learning Android, and I decided to download an example paint application to fiddle with that and learn a bit about how Android handles graphics/drawables/painting. The code I have shows a ...
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
74 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
57 views

SWT styledText custom painting - scrolling

Upon scrolling, with a vertical scrollbar, my styledtext with many controls, the buttons sometimes appear to be drawn one on top of each other, they are active and they are destroyed on the ...
-4
votes
1answer
84 views

Move up a line by clicking on it in c# [closed]

i want to move up the hand when i click on it and turn right or left the head when i click on head. please help me and change my source code. i'm beginner in C#. download application - C# ...
0
votes
0answers
37 views

OOP: Create an Object to Draw Image

I am going to build a drawing program (something like MS Paint) using Java. I have been able to draw basic shapes on a JFrame using Swing lib, but they are static, I cannot do anything with them. ...
0
votes
1answer
191 views

Paint : How to draw arc using gradient image or Bitmap image

i am able to draw arc using Paint and passing some gradient color to it, my problem is that i need draw the arc using a gradient image.Is it possible to draw arc using an image? If so how to do it? ...
1
vote
1answer
58 views

paint unicode java

I got stuck in java at the paint method. Printing out special letters with System.out will work but not if I'm trying to paint it with g.drawString(). This will work: System.out.println("\u2197"); ...
1
vote
1answer
157 views

How to create Paint-like app with XNA?

The issue of programmatically drawing lines using XNA has been covered here. However, I want to allow a user to draw on a canvas as one would with a drawing app such as MS Paint. This of course ...
0
votes
0answers
44 views

Save and Load a Drawing

I have this class to draw a Signature: public class SingleTouchEventView extends View { private Paint paint = new Paint(); private Path path = new Path(); public ...
0
votes
1answer
145 views

android draw paint on map not visible in ICS but works in GB

I`m using some code found on google (or perhaps here, not sure), to fetch two points and place them on map, together with route between them. This code is based on JSON parsing and it works pefrectly ...
-1
votes
1answer
134 views

Set video as canvas background in paint activity

I need to put a video as the background of my canvas. And when I pause it, to be able to paint on that frame. Is this possible? I was thinking first of playing a video, and attaching a pause and ...
2
votes
4answers
1k views

Drawing Graphics Disappear in VB.net

I have a simple program that you can draw on the screen with FillEllipse and FillRectangle. My problem is that when you drag another window over even a small portion of the screen, that part will be ...
0
votes
2answers
268 views

Signatures in Android

I want to make a class wich captures a human signature for my Android app. I have this code so far: public class DrawView extends View implements OnTouchListener { private static final String ...
0
votes
2answers
22 views

To send edited Image to next activity

I have Written the code to draw the text on the image and to send it to next activity. In same activity it is showing the image but in next activity it is not showing the image. Canvas canvas = new ...
0
votes
0answers
206 views

how to filling a circle in corona

i am trying to fill a circle with corona sdk. i already know how to drawing in the screen but i want to draw inside the circle exactly only without any things go outside it and if the circle filled ...
1
vote
1answer
203 views

Trying to mimic MS Paint in C#, can't get rubber banding to work

I'm attempting mimic the effect in MS Paint where when drawing a shape, it is "previewed" on screen while the mouse is down. Very simply: private Bitmap lastCanvas; private ...
1
vote
1answer
135 views

PIL and Tkinter for drawing software

I am trying to write a code that would place a point/line/whatever at the mouse coordinates, aka Paint. I am using PIL and Tkinter. The problem is I can't understand how to realise canvas update. ...
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: ...
-2
votes
1answer
93 views

Why can't my Win32 program draw more than once?

I am trying to make a program that detects a key press and draws the corresponding letter on the window. Everything works fine but it only draws once... when I press another key nothing happens. ...
0
votes
0answers
84 views

Draw on Frame in MFC

I'm drawing a Graph on a dialog But have a problem. When I use scroll, it draw as the same location, dont move with scrollbar That's the reason why I need to draw on a Frame in MFC. When use scroll, ...
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 ...
2
votes
1answer
664 views

Regarding Android Paint drawing color

DrawView.java public class DrawView extends View implements OnTouchListener { private Canvas mCanvas; private Path mPath; public Paint mPaint; ArrayList<Path> paths = new ...
1
vote
0answers
96 views

DrawLine doesn't work in android2.2, why?

When the following code is executing on emulator with android 2.3 it worked, but when running it on android 2.2 nothing appear ... why ? public class BubbleView extends View { Paint ...
0
votes
1answer
294 views

Android: change the color of a bitmap

let's say i have this bitmap, which is a random shape painted all black, and say i want to be bale to change it color, does my bitmap have to be all painted white first or is there something else to ...
1
vote
2answers
230 views

Android: drawing same size line or circle on different screen densitys

When i set a paint stroke size to say 15, it fits one screen while in another it is too large or small, how can i know the screen density to let it set the stroke width to fit the screen density? i ...
0
votes
0answers
221 views

Drawing .png image like a path

So I have a PNG file which I am using as a custom brush in my app. As a motion event takes place, I keep redrawing it to give a brush effect. But if I drag too fast I miss pixels and some brushes look ...
0
votes
0answers
186 views

CGContextSetAlpha is acting like multiply

I have a painting app, and if i paint a red dot, then try to paint over it with a yellow dot but at a low alpha value it acts like a multiply blend mode, even if i keep going over the red dot with the ...
0
votes
0answers
151 views

Android Smudge Tool

I've been trying to get the Smudge effect for my app on android , i found a piece of java code that does, but cant implement it in android. If anyone can tell me how to use the smudge on HEX colour ...
0
votes
2answers
306 views

Paint/Draw on top of docked widgets in QDodckWidget

I have a class in Qt that inherits QDockWidget. And that class contains another widget. Is there any possibility to define a function in my QDockWidget inherited class that draws stuff on top of the ...
0
votes
0answers
117 views

draw StringGrid entirely

I am working in C++ Builder which is the c++ version of Delphi. I am using a StringGrid to paint some events. In the DrawCell event i have this code: GridEvent->Canvas->Draw(Rect.Left, ...
1
vote
1answer
259 views

How to draw a half oval on a canvas

I'm trying to draw a smiley on a canvas. The mouth needs to look happy or not happy depending of a integer between 0-100. the following code draws the smiley: paint.setStyle(Paint.Style.FILL); ...
0
votes
2answers
316 views

Android: Custom masking 2 bitmaps layered one above the other

easy now. What I want eventually: I want to have 2 bitmaps overlayed on a view. Same bitmaps with the one above have higher brightness than the below one. Now when the user strokes(with touch ...
2
votes
3answers
780 views

XNA Basic Paint program

I started a very basic XNA 4.0 program where i load a small Red dot image in through the Content loader. The red dot is 10x10 and is rounded at the edges to make it look rounded. I am drawing it ...
0
votes
1answer
106 views

drawCircle painting bitmaps?

Is it possible to paint a drawCircle with an image instead of just a colour? If so, how? If not, is there a way I could make it look like there is? Thanks.
2
votes
3answers
2k views

Android: How to fill color to the specific part of the Image only?

I have Image Like this: Now, i want to fill the color to the Specific part of that image. as like If i select color blue and if i touch on Cap then the cap should be fill with the color Blue. Same ...
0
votes
0answers
531 views

How to make simple paint app using opengl/glut using c++ on xcode

So fare i am able to register mouse events. the only problem i am having is how to get the drawing to the screen. I have posted bellow the code that i am using currently. all it does is draw a window ...
4
votes
4answers
464 views

Layered painting on java?

I am basically trying to do something like classic "Paint" (Microsoft's program). But i want to work with layers when painting. I thought i can use JPanel component as layer. I was testing the code ...
2
votes
1answer
169 views

Why are the controlpaint draw methods paint outside of its client paint area?

I have a winform on which I want to draw dashed frame as you click the left mouse button and drag. When the left mouse button is released, the frame should disappear. I am able to do that with ...
0
votes
3answers
387 views

How to draw a stairs line using a drawline in java?

I want to make a simple stairway line having an interval distance of 200 meters in every line. As you can see in the code, it has a screen height(y1_world) of 2000 meters and a screen width(x1_world) ...
0
votes
3answers
379 views

Android - canvas drawing doubts

I am looking at one of the sample applications from Google, which deals with touch drawing using canvas: ...
3
votes
1answer
345 views

Java BasicStroke “Fuzzy”

I'm trying to write a simple paint applet with Java, but I'm having trouble with BasicStroke. Initially, my plan was to try to somehow draw a line with a width, but the API apparently doesn't support ...
1
vote
1answer
1k views

How do i draw a semitransparent white line?

I have the hexcode as #70ffffff for the color and all i do is canvas.drawline() and paint has the color set to that hex. p = new Paint(); p.setColor(R.color.transparentwhite); p.setStrokeWidth(15); ...
2
votes
0answers
2k views

iOS drawing to screen

I am working on drawing to the iOS screen using core graphics, and I managed to be able to draw on the screen, but from the tutorial I followed, the drawing screen covers everything else in my nib ...
2
votes
5answers
384 views

Drawing problem in java

I am a new in java, and I need to implement a paint application, and I'm kinda stuck at the beggining, I managed to draw lines to a JPanel which I added to a JFrame, but each line drawn resets the ...
6
votes
3answers
2k views

Draw on webcam using OpenCV

I want to draw/paint on a webcam screen using OpenCV. Since I'm reading from a cam, the frames are constantly changing, so I'm trying to figure out a way to keep or save the drawing on the current ...
0
votes
2answers
474 views

How do I create an object and paint it while it moves?

I want to create a circle object, put it on the screen with a velocity, and have it bounce around within the borders. I can setup the circle class just fine, but how do I paint the object (and ...
-1
votes
1answer
350 views

How to draw text at runtime

Basically, Im making a paint application very similar to MSPaint. The idea is that, that the the user clicks anywhere on the form and should be able to write text in a control. And then following ...
3
votes
2answers
1k views

Draw / Paint Outside Form

Can we paint images and draw text... outside a form.. i mean literally outside... i know its stupid question to ask but CAN we...

1 2