Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

16
votes
3answers
3k views

How did this person code “Hello World” with Microsoft Paint?

I have just seen this within the past few days and cannot figure out how it works. The video I talk about is here: It's the top rated answer from this Stack Overflow question: Why was this program ...
9
votes
2answers
625 views

Drawing 1-pixel thick, aliased lines in real-time

A brief background: I'm working on a web-based drawing application and one of the tools I'm implementing is a 1-pixel thick pencil. The tool allows the user to draw 1px aliased lines on the canvas. ...
9
votes
5answers
844 views

Undo for a paint program

I am looking into how to write a paint program that supports undo and seeing that, most likely, a command pattern is what I want. Something still escapes me, though, and I'm hoping someone can ...
9
votes
2answers
538 views

Reverse Engineering old paint programs

I've got a couple of really old MSDos based paint programs. They work on palette indexed image buffers. They have a number of spectacular shape drawing tools, brushes and effects that simply do not ...
8
votes
3answers
2k views

Android Edit Bitmap Channels

It's possible to access the alpha channel of a given bitmap with extractAlpha(), but I haven't been able to find any way to actually set the alpha channel of a bitmap. How can multiple greyscale ...
7
votes
3answers
752 views

Porting Autodesk Animator Pro to be cross platform

a previous relevant question from me is here Reverse Engineering old paint programs. I have set up my base of operations here: http://animatorpro.org wiki coming soon. Okay, so now I have a 300,000 ...
6
votes
4answers
284 views

Taking Screenshot

I'm developing an application for taking screenshots in the device. In this application, we can draw anything on the screen. For this I am using Canvas, Paint and Path to do this. I'm using this code ...
6
votes
3answers
166 views

Is there something special about using BeginPaint/EndPain and not GetDC/ReleaseDC in responce to WM_PAINT message?

One can use GetDC/ReleaseDC to draw in client area of window. But in responce to WM_PAINT message one have to use BeginPaint/EndPaint. Is there something special about this?
6
votes
2answers
1k views

Drawing a line with a certain pixel width

I would like to display X/Y data on a canvas using lines with a certain width (in pixels, or "dp" ideally). I have tried the setStrokeWidth(..) method of Paint, and that indeed does change the line ...
5
votes
2answers
180 views

Reduce Padding Around Text in WinForms Button

I have an application that is going to be used on a touch screen system, and it contains a number of buttons that are fairly large (~100px square). Each button will have between 1 and 4 lines of text ...
5
votes
3answers
763 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 ...
5
votes
2answers
3k views

How to prevent Android's drawBitmap from only drawing black images?

As per the original question, The end result is a rounded-rect png in an ImageView with a natural looking drop shadow. I have the shadow working, but when it draws, it makes the entire image black. ...
5
votes
5answers
1k views

Simulating brush strokes for painting application

I'm trying to write an application that can be used to create pictures that look like paintings using simulated brush strokes. Are there any good sources for simple ways of simulating brush strokes? ...
5
votes
5answers
488 views

Saving a picture from a browser canvas

I'm currently developing a website in ASP .NET MVC and I require functionality for a user to be able to draw a picture on a canvas which can be saved in a database. What is the best method for doing ...
4
votes
2answers
129 views

how to fill color in image in particular area?

I want to fill the color in white area for Paint based application so please give me suggestion for how to do this work..
4
votes
1answer
79 views

Getting all polygon coordinates of specific area of image?

I have an image were I put links and text with html image map. That works fine. I would like to have some hoover effect on specific areas of the image. For examaple take a world map and when you ...
4
votes
1answer
176 views

How do I paint the background of TStringGrid

I do custom drawing of a Delphi TStringGrid using the OnDrawCell event. There is no problem with the area covered by cells, but how do I paint the background right of the rightmost column and below ...
4
votes
1answer
84 views

Java 1.5 JOptionPane paint bug when using panel message/workaround?

I have a JOptionPane with a custom message panel in it, in an application targeted for Java 1.5. The panel contains, among other things, a JTextField. Every 20 invocations or so, nothing in the dialog ...
4
votes
2answers
99 views

Curious why my image isn't showing up

Just using the paint method and my image won't show up initially. Once I minimize the java window and resize it, the image shows up. Is there any code I'm missing? public class Lil extends JFrame { ...
4
votes
1answer
1k views

android set custom font to a paint

I want to draw a text to a paint. How to draw it with a custom font (ex Helvetica ) and bold also? I would preffer to use a system font and not create it from assets. Thanks.
4
votes
1answer
95 views

Is there any way to paint that circle gradient

I am trying to make something similar to LED diode in Java ( I extend JPanel and override paint method ). I draw cicrle in center of panel with radius =20px ( green on, red off). Is there any way to ...
4
votes
2answers
329 views

Drawing an overlay on top of an application's window

I want to be able to paint on top of my application's window so that I can annotate all the widgets with some extra diagnostic information, similar to the CSS developer tools in Firefox (eg add widget ...
4
votes
2answers
892 views

Java Paint component into bitmap

I need to draw the content of a component and all its subcomponents in a bitmap. The following code works perfectly if i want to draw the entire component : public void printComponent(Component c, ...
4
votes
3answers
449 views

Java Window paint problem

My application does not paint itself on startup. When resizing it or minimizing/maximizing it, the window of the application is painted. This problem only appears on Windows machines (I tested XP, ...
4
votes
4answers
1k views

DataGridView White Space After Last Column Header

I'm trying to mimic what every other tabular view does with the DataGridView control, but I can't seem to get the headers correct. I want a blank header to the right of all headers, that does not ...
4
votes
3answers
2k views

Java repaint not working correctly

i use the java repaint method , it repaints, but the update is only seen when I either click on the canvas or resize the panel. How can I fix this ? What causes it?
4
votes
2answers
1k views

Getting drawable area of an AWT frame in Mac OS X?

I have subclassed java.awt.Frame and have overridden the paint() method as I wish to draw the entire contents of the window manually. However, on the graphics object, (0,0) corresponds to the upper ...
4
votes
4answers
4k views

How do I get the image paint/paintComponent generates?

I have a quick question. How do I get the image generated by a JComponent.paint or paintComponent? I have a JComponent which I use as a 'workspace' and where I have overwritten the paintComponent ...
3
votes
2answers
60 views

Paint method in a class, on a Jpanel, design mode at Netbeans

I've been trying to program an applet with Netbeans able to draw some graphics into a jPanel, as you can see: ![enter image description here][1] Applet form: package Experimento2; import ...
3
votes
4answers
97 views

Update form while it is hidden while Desktop Composition is enabled

I'm trying to change my form appearance when it is hidden. And then make it visible. private void HideLabelAndShowForm() { label1.Hide(); Invalidate(true); Update(); // thinking we ...
3
votes
1answer
123 views

Paint app, using framebuffer to render texture in OpenGL ES

I'm trying to make simple paint application, based on Apple's GLPaint. To draw a line, GLPaint draws an array of points with brush texture. With blending in OpenGL turned on, every point of that line ...
3
votes
3answers
86 views

How to have a “Camera” only show a portion of a loaded area

I'm having a little problem with figuring something out (Obviously). I'm creating a 2D Top-down mmorpg, and in this game I wish the player to move around a tiled map similar to the way the game ...
3
votes
2answers
128 views

Painting in Swing, blinking issue

I have the following problem in swing. I'm implementing basic drawing operations (lines, shapes). When I'm moving mouse with pressed left button, I need to repaint current shape. So I clear the screen ...
3
votes
2answers
98 views

Java Painting a Triangle and Trying to use other Swing Objects

I am having a bit of an issue using Netbeans to design a GUI (Yeah im lazy :\ ) and manually trying to paint a triangle onto the JFrame. The Swing Components are 'covered up' until I press tab and put ...
3
votes
4answers
171 views

C# bitmap drawing doesn't render to the screen

I am trying to write a drawing program for use with a tablet. For this I need fall-off and transparency for use with pressures. So I am using the bitmap system in C# for image construction. I cannot ...
3
votes
4answers
140 views

Draw Lines perodically

i am in situation where i want to draw lines one by one with some time period. I tried to do it by using thread.but it didnt work for me. The objective is i've 5 lines. the lines should be drawn one ...
3
votes
2answers
276 views

Detecting start and end position of a 'drag' in Android, and drawing a line between them

I want to make a simple doodle application, for android, but I don't know how to get some data from android! I need: The position of the mouse before and after the drag or if it is a simple touch how ...
3
votes
2answers
1k views

C# Only refresh PictureBox/Panel when tell them to refresh?

I'm making a bomberman game in a C# windows form application. It has over 300 pictureboxes (walls) that are placed on a panel. The picturebox of bomberman himself is also on that panel. When the ...
3
votes
1answer
320 views

Meaning of some Paint constants in Android

There are a few Paint constant in Android about which I couldn't find much info. Could anyone help me with a bit of explanation about those flags: LINEAR_TEXT_FLAG SUBPIXEL_TEXT_FLAG ...
3
votes
1answer
586 views

overriding paint method in JApplet

I am working on a project to make a JApplet's contents automatically scale to the size specified in the html. I realize this is the kind of thing that layout managers were made for, however as I am ...
3
votes
3answers
532 views

Java: How to dynamically fit painted text into window

im trying to paint a big "hello world" on my frame/component. But i want to dynamically fit it to the window size. So everytime i resize the window the text should perfectly fit into the window. I ...
3
votes
1answer
1k views

How to get height of text with fixed width and get text length which fits in a frame?

well, I've managed to fit all my questions in the title. I need to break a long text in to columns/frames and layout them in to view. I've been digging for solutions for a couple of days now, but I ...
3
votes
2answers
1k views

C++ MFC How to Draw Alpha transparent Rectangle

in a C++ MFC application. using the dc of ( CPaintDC dc(this); ) How do i draw a rectangle ( LPRECT ) with an alpha transparency that i can adjust.? Following is an example c# code which i need to ...
3
votes
1answer
187 views

Implementing free form drawing in a paint app

I'd like to pick your brains on how to implement freeform drawing in a paint app. Given that the command object would encompass the click down, the arbitrarily dragging around, and the release, how ...
3
votes
1answer
241 views

Disable OnPaintBackground without subclassing Panel?

Is there any way to disable the erasing of a panel without subclassing Panel and overriding OnPaintBackground? I am trying to achieve a double buffering effect without subclassing Panel. I understand ...
3
votes
6answers
827 views

Why is my c# paint method running out of memory?

I'm new to c#, and trying to learn by writing some simple apps to get familiar with the syntax and .NET library. The most recent miniproject I took on is a polar clock like the one found here. One ...
3
votes
4answers
638 views

Writing a paint program à la MS Paint - how to interpolate between mouse move events?

I want to write a paint program in the style of MS Paint. For painting things on screen when the user moves the mouse, I have to wait for mouse move events and draw on the screen whenever I receive ...
3
votes
2answers
294 views

Painting component inside another component

I've got a task to display painted 'eyes' with menu buttons to change their colors, and background color. Next animate them. But currently I'm stuck at painting, sinc in my JFrame I've Created JPanel ...
3
votes
1answer
658 views

Creating collaborative whiteboard drawing application

I have my own drawing program in place, with a variety of "drawing tools" such as Pen, Eraser, Rectangle, Circle, Select, Text etc. It's made with Python and wxPython. Each tool mentioned above is a ...
3
votes
1answer
190 views

How do I paint the treeview node +/- buttons outside a treeview?

Similar to the ButtonRenderer class, I want to be able to paint the +/- buttons used in TreeViewNodes completely separately to any instance of a TreeView. There doesn't seem to be a ControlPaint ...

1 2 3 4 5 9