Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

49
votes
9answers
35k views

Python - Best library for drawing [closed]

So I'm looking for a pretty basic library in python where i can create a window, and then draw lines and basic shapes too it. Nothing too complex, just nice and simple. I figure theres lots of ...
32
votes
8answers
11k views

Auto Scale TextView Text to Fit within Bounds

I'm looking for an optimal way to resize wrapping text in a TextView so that it will fit within its getHeight and getWidth bounds. I'm not simply looking for a way to wrap the text- I want to make ...
29
votes
3answers
17k views

How to draw a line between draggable and droppable?

I'm using the exelent JQuery UI to do a "mapping" so the user can "map" persons from one program to persons from other program. using this simple JQuery: $(document).ready(function() { $("div ...
23
votes
5answers
22k views

How do I draw lines using XNA?

I've read a bunch of tutorials involving XNA (and it's various versions) and I still am a little confused on drawing primitives. Everything seems to be really convoluted. Can someone show me, using ...
19
votes
10answers
2k views

How to fill a square with smaller squares/rectangles?

This is not a homework or interview question. In my office at work, we are not allowed to paint the walls, so I have decided to frame out squares and rectangles, attach some nice fabric to them, and ...
18
votes
4answers
807 views

4 points and Ellipse

I have 4 points.. i can draw a polygon usign this code var p = new Polygon(); p.Points.Add(new Point(0, 0)); p.Points.Add(new Point(70, 0)); p.Points.Add(new Point(90, 100)); p.Points.Add(new ...
18
votes
6answers
13k views

Shape recognition algorithm(s)

Can anyone point me to a shape recognition algorithm, preferably in C#/Java but other languages are fine too.
15
votes
2answers
253 views

How to draw the classic state diagram using Mathematica?

Is it possible and practical for Mathematica to draw something like this (being created by Graphviz): This is the best that I can get (but the shape and style are not satisfying): Code: ...
14
votes
2answers
1k views

Why is UIBezierPath faster than Core Graphics path?

I was playing around with drawing paths, and I noticed that in at least some cases, UIBezierPath outperforms what I thought would be a Core Graphics equivalent. The -drawRect: method below creates two ...
14
votes
8answers
15k views

How to render pdfs using C#

I want to load and draw pdf files graphically using C#. I don't need to edit them or anything, just render them at a given zoom level. The pdf libraries I have found seem to be focussed on ...
13
votes
5answers
591 views

What are some good algorithms for drawing lines between graph nodes?

What I'm specifically grappling with is not just the layout of a graph, but when a user selects a graph node and starts to drag it around the screen area, the line has to constantly be redrawn to ...
13
votes
6answers
5k views

Java GraphViz

Is there an Open Source java alternative to GraphViz? I'm aware of the existence of Grappa which basically wraps the Graph interface to GraphViz as an JavaAPI. However the layouting is still done by ...
12
votes
8answers
329 views

Algorithm to decrypt data with drawn strokes

Let's say I have an encrypted file on an iPhone and every time I want to decrypt it, I want to "draw" a decryption symbol instead of having to use a keyboard to type it in. If you request from the ...
11
votes
4answers
472 views

Is there a Java library for writing a drawing program?

I need to write a simple Java GUI application that, basically, allows the user to mark regions in a CT lung image. To make the marking process easier, it is important that the program provides some ...
11
votes
12answers
538 views

Some tips for more effective white-boarding?

I am occasionally called upon impromptu to white-board (non-virtually) data flows, architecture diagrams etc., for both a technical and non-technical audience. Unfortunately my drawing skills (and ...
11
votes
2answers
4k views

Curvilinear perspective: Convert 3D to 2D

I'm looking for the mathematical expression converting a 3D coordinate (x0,y0,z0) to a 2D (x1,y1) coordinate in a curvilinear perspective of radius R where the values of x1 and y1 are the angles of ...
11
votes
13answers
2k views

Application for sketching ideas on a computer [closed]

I've always wanted to sketch all ideas I come up with in the computer instead of on paper, but everyone knows that sketching with good 'ol fashioned pen and paper beats the crap out of trying to do it ...
10
votes
1answer
6k views

How to draw and scale a bitmap on a canvas using bicubic interpolation in Android?

I want to draw a bitmap on a canvas with bigger size than it is. I can use canvas.drawBitmap(bitmap, null, destRect, null); but that gives a poor quality, as the result is pixelated, if the source ...
10
votes
19answers
2k views

What is the ultimate program to make a drawing of a database model?

One of the first things I do when I'm on a new project is design a database model. To visualize the model I use a 7 year old version of Smartdraw. Maybe it's time for something new. What is the ...
9
votes
2answers
622 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
11answers
434 views

Fast sketching tools for drawing C/C++ structs, pointers, etc

I would like to know what do you use to sketch relations between different entities in C/C++. This can be a very broad issue, so I'll try to clarify a bit more my question and give an example. I'm ...
9
votes
18answers
1k views

What do you use to make programming flowcharts, diagrams, etc?

I've always just used OpenOffice Draw and it just occurred to me that there has to be something better out there. So what do you use? Do you like it? Bonus points for free things and for web apps. ...
9
votes
3answers
9k views

Convert bitmaps to one multipage TIFF image in .NET 2.0

How can i convert an array of bitmaps into a brand new image of TIFF format, adding all the bitmaps as frames in this new tiff image? using .NET 2.0.
8
votes
2answers
386 views

Delphi custom drawing - glowing glass

I have been experimenting a lot with some glassy images, such as the one below, and I got to thinking there's gotta be a way I can put this into code, so I can color it anything I want. It doesn't ...
8
votes
5answers
249 views

how to stop flickering C# winforms

I have a program that is essentially like a paint application. However, my program has some flickering issues. I have the following line in my code (which should get rid of flickering - but doesn't): ...
8
votes
0answers
632 views

How to have smooth sketch drawing on iPhone [closed]

Possible Duplicate: iPhone smooth sketch drawing algorithm I want to develop a iPhone app that support sketch drawing. I used some codes like this in touchesMoved: ...
8
votes
1answer
2k views

Android, google maps and drawing route

Few weeks ago I was searching form good example how to get points & draw the route on Google maps in Android OS. Here I post example... example URL you're going to parse is... ...
8
votes
5answers
8k views

android: quality of the images resized in runtime

I want to show images using drawBitmap() method. But before I want to resize it according screen dimensions. I have a problem with quality of result image. You can see screenshots and test code below. ...
8
votes
4answers
2k views

Library for drawing musical notes

I'm looking for a Windows library that can draw musical notes on the screen in some way. I'm going to use it to write an app in C#, but a pure Win32-based solution is good enough. Does anybody know of ...
7
votes
4answers
239 views

Drawing clock face in Mathematica (looking for a better solution)

I am trying to find a general solution for drawing clock face like graphical objects in Mathematica. I've already implemented a version of my own, but I think a much better solution must exist. A ...
7
votes
1answer
229 views

Incrementally adding to a UIView

In my iOS app, I've created a view that renders a path drawn with a finger using UIBezierPath in real time while drawing. Unfortunately, I'm having performance problems as the path gets long (several ...
7
votes
2answers
361 views

Iphone application performace is slowing down with out any memory leak?

I have a IPhone drawing application which is slowing down when I use the spray can tool. But when I check for leaks by running the application with leaks no leaks are shown. All other tools are ...
7
votes
2answers
912 views

Circle drawing with SVG's arc path

This SVG path can draw 99.99% of a circle: (try it on http://jsfiddle.net/DFhUF/46/ and see if you see 4 arcs or only 2, but note that if it is IE, it is rendered in VML, not SVG, but have the ...
7
votes
6answers
3k views

iPhone smooth sketch drawing algorithm

I am working on a sketching app on the iPhone. I got it working but not pretty as seen here And I am looking for any suggestion to smooth the drawing Basically, what I did is when user places a ...
7
votes
2answers
2k views

Drawing app on iPad using OpenGL

I'm creating a drawing app ( text ) for the iPad using OpenGL. I've already had a look at Apple's example GLPaint, and my app is now based on that code. My app should be just for drawing text, not for ...
7
votes
3answers
1k views

Drawing GOOD LOOKING (like in Flash) lines on canvas (HTML5) - possible?

Is there any way to draw a line using javascript and the canvas with "better" antialiasing, like Flash does? I know the Math.floor(coord)+0.5 trick to get an exactly 1 pixel line when you need it, ...
7
votes
5answers
3k views

How to effectively draw on desktop in C#?

I want to draw directly on the desktop in C#. From searching a bit, I ended up using a Graphics object from the Desktop HDC (null). Then, I painted normally using this Graphics object. The problem is ...
7
votes
2answers
3k views

C# Drawing Arc with 3 Points

I need to draw an arc using GraphicsPath and having initial, median and final points. The arc has to pass on them. I tried .DrawCurve and .DrawBezier but the result isn't exactly an arc. What can I ...
7
votes
3answers
277 views

How does Photoshop (Or drawing programs) blit?

I'm getting ready to make a drawing application in Windows. I'm just wondering, do drawing programs have a memory bitmap which they lock, then set each pixel, then blit? I don't understand how ...
7
votes
4answers
4k views

How to detect iPhone movement in space using accelerometer?

I am trying to make an application that would detect what kind of shape you made with your iPhone using accelerometer. As an example, if you draw a circle with your hand holding the iPhone, the app ...
7
votes
3answers
1k views

WPF drawing performance with large numbers of geometries

I have problems with WPF drawing performance. There are a lot of small EllipseGeometry objects (1024 ellipses, for example), which are added to three separate GeometryGroups with different foreground ...
7
votes
2answers
18k views

Android: How to overlay-a-bitmap/draw-over a bitmap?

I have two questions actually: Is it better to draw an image on a bitmap or create a bitmap as resource and then draw it over a bitmap? Performance wise... which one is better? If I want to draw ...
7
votes
4answers
4k views

Algorithm for drawing an anti-aliased circle?

What's a good algorithm for drawing anti-aliased circles? (Filled and not filled.)
6
votes
3answers
253 views

NSDrawNinePartImage gaps

I am working on drawing some custom buttons/textfields with NSDrawNinePartImage. I slice up an image into the nine parts in code and then draw it in a rectangle with NSDrawNinePartImage. ...
6
votes
7answers
1k views

Drawing a grid of images with WPF

I'm trying to draw a grid of images/icons with WPF. The grid dimensions will vary but will typically range from 10x10 to 200x200. The user should be able to click on cells, and some cells will need to ...
6
votes
4answers
372 views

C# GDI+/System.Drawing.Graphics - creating a buffer and manually blitting?

I'm creating a cad viewer which deals with very large image files and I am trying to optimise it for as high a framerate and low a memory footprint as possible. It uses GDI+ for rendering onto a ...
6
votes
2answers
1k views

Delphi - Drawing to the canvas of a selected cell in a string grid - possible?

I want to draw on the canvas of a cell in a string grid. This is going to be on top of an image preloaded into the string grid. What I've got Currently instead of drawing on top of the image, I am ...
6
votes
2answers
383 views

Capture mouse movement and export to image [code | app]

To get more in depth information about the usage of WinForm or Webapplications I want to capture mouse-movement and click information. It would be perfect if this could be rendered to an image. The ...
6
votes
2answers
410 views

Android drawBitmap Performance For Lots of Bitmaps?

I'm in the process of writing an Android game and I seem to be having performance issues with drawing to the Canvas. My game has multiple levels, and each has (obviously) a different number of objects ...
6
votes
1answer
418 views

Drawing a path with CAKeyFrameAnimation on iPhone

I want to draw a path gradually, i.e. I want the path to appear as if it is drawn by hand. I have managed to create the path I need. I have also managed to create a CAKeyFrameAnimation that uses this ...

1 2 3 4 5 33