Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
7answers
203 views

Easy to use drawing library in c/c++?

I'd need a very easy to use drawing c/c++ library. This means that I don't need to put buttons, frames or anything else in there, but I need just to draw points, circles, lines on a graphic window. Is ...
4
votes
4answers
571 views

How to know if a line intersects a rectangle

I have checked out this question, but the answer is very large for me: How to know if a line intersects a plane in C#? - Basic 2D geometry Is there any .NET method to know if a line defined by two ...
4
votes
2answers
3k views

Android Draw 9-patch tool: What is the meaning of black lines outside the figure

I tried enough to find in google & android this question. Also did several trials & errors, but couldn't get this question. I was learning Android's "Draw Nine Patch" images. One basic I know ...
4
votes
4answers
742 views

What's a good 2D graphics drawing API for Windows/C++?

I've been working on a small little application, and I've been using DirectX/3D to draw textures to the screen (all 2-dimensional elements). The API, I find, is pretty easy to use and to incorporate ...
3
votes
1answer
116 views

Create Lines around a guiding line using Miterjoin

I am drawing graphs into a WinForms Picturebox. Now I am searching for a possibility to 'duplicate' a line (an array of points), so that the two resulting lines are positioned a fixed distance away ...
3
votes
2answers
1k views

How do I draw an annulus (doughnut) using GDI+?

I have been trying to draw an annulus (ring with thickness) with a transparent hole and a gradient rim in C# with very little success. Does anyone have any suggestions on how to do this? here's a ...
2
votes
1answer
59 views

c# / 2D Graphics / DrawRectangle size beheviour

private void Form1_Paint(object sender, PaintEventArgs e) { Pen p = new Pen(Brushes.Black, 1); e.Graphics.DrawRectangle(p, 3, 3, 89, 30); } Why does this code produce a 90px width / 31px ...
2
votes
2answers
252 views

C# GDI - How to Create a bitmap copy of a polygon (set of point)

I have a bitmap object (or even any other image) and I'm drawing some lines on this bitmap to create a polygon. after the drawing I need to clone/copy/cut the selection (based on the lines) area. I ...
2
votes
1answer
265 views

.NET - Border around resized imaged

I'm trying to resize an image in .NET, but get a faint black border around the resized image. I found a post - ...
2
votes
1answer
247 views

How do i draw anywhere in a graphics object after it is transformed

I'm trying to create a canvas for drawing different objects. I've created zoom and pan functions using graphics.scaleTransform and graphics.translateTransform, but i wan't the canvas background (a ...
2
votes
2answers
339 views

Primitive thickness - DX10

i recently stepped into primitive rendering in directX10. I need that because i want to convert my ingame chat from directx9 to 10 due my huge performance lag being forced by the games weak dx9 ...
2
votes
2answers
766 views

Pygtk graphics contexts and allocating colors

I've searched on this, but nothing has what I'm looking for. http://www.mail-archive.com/pygtk@daa.com.au/msg10529.html -- Nobody answered him. This is exactly what I'm experiencing. When I set the ...
1
vote
0answers
33 views

Improve resolution for resizing gif(animated) images using Drawing2D in c#

My image resizer will resize all images perfectly but gif(animated) images are somewhat grainy. Currently I am using the InterpolatioMode as HighQualityBicubic. Is there any other parameters which ...
1
vote
1answer
43 views

Arrow with closed head

I'm using an arrow control that I found on the net : http://blogs.microsoft.co.il/blogs/tomershamam/archive/2008/01/23/wpf-arrow-and-custom-shape.aspx I've tried to change it to closed arrow like in ...
1
vote
0answers
132 views

EmbossMaskFilter strange effect on other drawings

I've tried to use EmbossMaskFilter to create custom Drawable. However I've come across strange behaviour, that when I try to use Emboss it's causing black stripes on edges of other 2d-graphics objects ...
1
vote
0answers
117 views

How to drawing a path with a bitmap?

I have a little drawing app and want to use "complex" shapes as brushes, i.e. a star. Drawing with a simple brush already works with this code: remotePath.reset(); remotePath.moveTo(start_x, ...
1
vote
2answers
147 views

Where can I find a Javascript drawing canvas?

I want to build a drawing program in JS. (jQuery preferred but not mandatory). Anyway, my vision is a big, blank, white canvas with a simple grid. The user could drag "layers" to the grid (such as ...
1
vote
1answer
149 views

Is there a graphical overview of the HatchStyle enumeration?

A hatch pattern is made from two colors: one defined by the BackgroundColor, which fills the background and one for the lines that form the pattern over the background defined by the ForegroundColor ...
1
vote
2answers
407 views

How to change colors of a GDI+ LinearGradientBrush?

I have to write several small vertical gradients (on a loop) and so I think it's faster to re-use an existing LinearGradientBrush (correct?) But this isn't what I expected to happen... ...
1
vote
3answers
473 views

C# GDI Drawing2D help

What GDI methods can I use to draw the blue shape shown in the image below? The center must be transparent.
1
vote
2answers
169 views

Proper Drawing2D class for NET CF?

As I recently found out Drawing2D class of NET CF is missing most of it's functionality. Is there a way to expand it with for example "LinearGradientBrush"?
0
votes
1answer
47 views

Using java, how can I make a method taking in a BufferedImage, rotate it, and return a BufferedImage ( with correct width / height )

I have been looking up a lot of examples, every time I try, my image becomes offset, and also not rotated by the degree I am looking for. I have a class which extends JPanel, and draws an image. This ...
0
votes
0answers
19 views

What is the best way to handle a line custom control?

I am writing a Database Diagram tool (in VS 2010, C# 4.0) and I am having an issue. I have written the TableEntity custom controls and now I need to write the Relationship control. But I'm not sure of ...
0
votes
2answers
304 views

Organization chart algorithm

Does anyone have a line on an algorithm to place boxes in an organizational chart? Any language is fine.
0
votes
2answers
299 views

How can I override the canvas in my View?

I am using Android 2.1 and Eclipse. I have defined a LinearLayout with two components that have dimensions: 250 x 250. LinearLayout ll = new LinearLayout(this); ...