Tagged Questions
The draw tag has no wiki summary.
22
votes
5answers
24k views
Drawing a line/path on Google Maps
I've been busy for a long time finding out how to draw a line between two (GPS) points on the map in HelloMapView but with no luck.
Could anyone please tell me how to do so.
Suppose I use the ...
14
votes
5answers
1k views
Draw a music staff in C#
I am looking to draw a music staff on a .NET (C#) form. I am using Microsoft Visual C# 2010 Express. I was wondering if anyone knew of existing code or existing free .NET libraries that can help ...
14
votes
1answer
7k views
Measuring text width to be drawn on Canvas ( Android )
Is there a method which returns the width ( in pixels ) of a text to be drawn on an Android canvas using the drawText() method according to the Paint used to draw it.
Thx.
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. ...
7
votes
3answers
455 views
Java fast pixel operations
I would like to know how I would handle pixel operations best in Java. I'm using swing and drawing a rectangle of 1 by 1 pixel is terribly slow. I need to get 60 fps at least, without using too much ...
7
votes
1answer
8k views
Android Drawing Separator/Divider Line in Layout?
I would like to draw a line right in the middle of a layout and use it as a separator of other items like TextView. Is there a good widget for this. I don't really want to use an image as it would be ...
7
votes
3answers
10k views
How to draw a gradient line (fading in/out) with Core Graphics/iPhone?
I know how to draw a simple line:
CGContextSetRGBStrokeColor(context, 1.0, 1.0, 1.0, 1.0);
CGContextMoveToPoint(context, x, y);
CGContextAddLineToPoint(context, x2, y2);
CGContextStrokePath(context);
...
7
votes
1answer
2k views
What is the best way to draw text along with geometry?
In WPF, I'm starting to use classes such as LineGeometry, EllipseGeometry, GeometryGroup, Path... in order to draw 2D graphics. I chose these over shapes because I saw it could be faster thanks to the ...
6
votes
1answer
193 views
How to draw a custom caption bar like the yahoo messenger 11
As you can see, Y! messenger 11 have used some techniques to draw a beautiful caption bar. Its window's like normal windows in the Win 7 but have a special caption. Is this a glass frame? How can i ...
6
votes
2answers
3k views
How can I draw a vertical line in an Activity when a button is pressed?
I want to draw a straight vertical line in my Android activity when a button is pressed. Please explain how I can draw the line with a position & length I want.
Elaboration:
I have a linear ...
5
votes
3answers
760 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
1k views
Distance between items in a Listview
I have a ListView in my Layout.
<ListView
android:id="@+id/list_infoitems"
android:layout_width="fill_parent"
android:layout_height="wrap_content"/>
Every list ...
5
votes
2answers
727 views
iPad (very) simple drawing
I'm trying to implement a very simple drawing view in my app. This is only a small part of my app but it's turning into a real hassle. This is what I have so far, but all it's displaying right now is ...
5
votes
2answers
555 views
Weird problem on android webview with canvas
I am draw some canvas charts on the android webview, and use javascript to change chart just by hiding and showing, and also change the title by reset its innerHTML.
The title is just a normal html ...
5
votes
1answer
208 views
Is there a way to change the draw order in WPF
Is there a way to change the draw order of Controls in a StackPanel without changing the actual ordering of these controls in the StackPanel?
The reason I ask is that we have a button bar with margin ...
5
votes
1answer
4k views
New to Android - Drawing a view at runtime
HI all,
I'm just getting started with developing for Android. I'm looking to port one of my iPhone applications, but I'm kind of at a loss for how to draw a view at runtime (a view not declared in ...
5
votes
2answers
8k views
How to draw a route between two geopoints on the Android
I have two OverlayItem's on a MapView. How can I draw a route between the two geopoints?
5
votes
6answers
2k views
Linux: Fastest way to draw
I need to draw an 2d-array of color triplets on the screen, what is the fastest way of doing that?
The target language is C/C++ and the program has only to work on Linux, but platform independant ...
4
votes
5answers
280 views
More Efficient Method of Drawing Thousands of Particles (Java/Android)
So I'm writing a sort of particle simulator, like a "falling sand game" if you know what that is, and I've kind of hit a roadblock now. The way I'm doing this is I have a particle object that ...
4
votes
1answer
866 views
WebView doesn't get drawn, WARN/webcore(5336): Can't get the viewWidth after the first layout
My app has a view that gets added to activity programmatically using this code:
RelativeLayout.LayoutParams layoutParams =
new RelativeLayout.LayoutParams(480, 75);
RelativeLayout ...
4
votes
2answers
446 views
c# XNA low frame rate
Ok, I have 80,000 "Box" Mesh with simple textures
I have set a view distance and
only draw the ones you can see
which leave 600 to 1000 for the DrawModel function belowe
The problume is I only get 10 ...
4
votes
2answers
1k views
draw a single-touch motion path in android
i am trying to make a drawing application.
i want to draw a single-touch motion path in android - like the way the Swype keyboard does it.
And consequently i want to store x-y coordinates of EACH ...
4
votes
2answers
810 views
Android - Live Wallpaper offset clipping
I am writing a live wallpaper for android. To test my basic code was working I drew a rectangle in the top left-hand cornor of the screen:
canvas.drawRect(0f,0f,50f,50f,paint);
Half of the ...
4
votes
6answers
6k views
Javascript draw dynamic line
I'm looking for Javascript code for letting the user draw a line (on an image).
Just as the line tool in Photoshop (for example):
The user clicks on the image, drags the mouse (while the line ...
4
votes
4answers
8k views
how to draw 3d sphere?
I want to draw a 3d ball or sphere in html 5.0 canvas. I want to understand the Algorithm about how to draw 3d sphere. Who can share this with me?
Thanks in advance !
4
votes
6answers
16k views
How to show x and y axes in a MATLAB graph?
I am drawing a graph using the plot() function, but by default it doesn't show the axes.
How do we enable showing the axes at x=0 and y=0 on the graph?
Actually my graph is something like:
And I ...
4
votes
9answers
10k views
How to draw a graph in PHP?
Hey I want to draw a graph(Stdent mark distribution) in my site based on PHP. How can I do this?
4
votes
5answers
4k views
How to draw a transparent stroke (or anyway clear part of an image) on the iPhone
I have a small app that allows the user to draw on the screen with the finger. Yes, nothing original, but it's part of something larger :) I have a UIImageView where the user draws, by creating a ...
4
votes
7answers
6k views
Drawing on top of an image in Javascript
I want to let the user draw on an image in a browser. In other words, I need both bitmapped graphics and drawing capabilities, whether vector or bitmapped.
Canvas looks good, but is not supported by ...
3
votes
1answer
69 views
Delphi 7, how to copy Paintbox content to a Tbitmap?
im working on delphi 7 and i want to how to copy/assign the content of a TpaintBox to a Tbitmap?
like this
public
{ Public declarations }
BitMap : TBitmap;
end;
i have a Tbitmap ...
3
votes
3answers
87 views
Java Graphics repaint behavior
I have been searching for a reason for this behavior in my code for quite some time now. I do not want to dive too deeply into the Swing API to figure why this occurs. I would appreciate any ...
3
votes
1answer
71 views
Offset when drawing on canvas
Have a simple drawing application. The problem is in the coordinates (redraw function): they must be mouse, but are near 2x mouse. What's the problem in the code?
<html>
<head>
...
3
votes
2answers
86 views
How to draw directly on the screen in C#? (Example causes PInvokeStackImbalance)
I want to draw directly on the desktop ( As wallpaper or over all, I don't mind ) in C#, but I have not been able to find how. I found this:
using System;
using System.Drawing;
using ...
3
votes
2answers
269 views
How to draw on screen for Windows Metro Style Apps in C#?
I simply want the user to be able to draw on the screen with some sort of pointer.
I already have the code working that captures the pointer's position, but I can't figure out how to place the ...
3
votes
2answers
99 views
how to set drawBitmap to be not fullscreen
I have a bitmap and I draw it like this :
bit = BitmapFactory.decodeResource(getResources(),
R.drawable.anim_ctrl_panel);
Paint paint = new Paint();
canvas.drawBitmap(bit, 80, 440, ...
3
votes
1answer
54 views
How can I put the circles at the center of the line?
I have a diagonal line and I have also a circles having a 100 meters in distance. The problem is that the circles are not really to the center of the line. I know this is quiet easy but I'm just ...
3
votes
2answers
70 views
Thick border of drawn string
Now I feel like I've been looking all over the internet to find out how to add a border on a text, so i decided to ask here, since you guys always knows the answer ;)
So, how do I, in java,
draw a ...
3
votes
2answers
166 views
How often to call SpriteBatch.Begin()/.End()?
I'm searching a performance problem in the Drawing part of my xna code for windows phone 7 that occures sometimes after some seconds. Is there a best practice how/when to call the SpriteBatch.Begin to ...
3
votes
1answer
190 views
How to draw on VLC surface using delphi
I have Delphi VLC bindings, and i need to do some kind of on-screen display (OSD) menu. How can i draw on a video surface from VLC. I know that i can use SDL but i wondering can VLC do that.
3
votes
2answers
167 views
Delphi: manually draw list view when horizontal bar is present
I draw list view items with OwnerDraw, but I have bugs: please resize a column -> you will have a horizontal bar, scroll it -> items are drawn on a visible area :(
Please help me to edit a code ...
3
votes
2answers
414 views
Create a simple drawing tool in HTML5?
I'm working on this project where I'd like to give my user the possibility to draw a simple floor plan by rooms, and then stock it with maybe some metadata (like room names).
I see it like that:
- ...
3
votes
3answers
703 views
How do I draw an arrowhead (in Android)?
I'm fairly new to Android and have been toying around with Canvas. I'm attempting to draw an arrow but I'm only having luck with drawing the shaft, none of the arrowhead is working.
I have searched a ...
3
votes
1answer
265 views
Delphi: bug when resizing columns of List View (on DrawItem)
Enable Autosize of columns and enable OwnerDraw for a List View. Then add a code below from HERE:
procedure TForm1.ListView1DrawItem(Sender: TCustomListView; Item: TListItem;
Rect: TRect; State: ...
3
votes
4answers
276 views
Sprite Batch doesn't change Alpha
I've run into an issue where the SpriteBatch doesn't draw with modified Alpha of specified "Trail".
What I'm trying to do is a "fade effect" where the alpha of "Item" decreases so that it gets more ...
3
votes
4answers
1k views
AS3 - bitmapData edge alpha transparency problem
I'm building a drawing application in as3 and am having problems with feathered or blurred edges on a brush. I'm using bitmapData.draw() to draw the brush but I'm seeing darker colored areas around ...
3
votes
1answer
150 views
Is it possible to prevent a WPF control redraw?
I have to update multiple child controls in a WPF control. I don't want the control redrawn until I have updated all its child controls.
3
votes
2answers
617 views
Lasso tool in javascript
Hay, I'm writing a simple web based image maker, and would like to know if anyone has any idea's how to implement a lasso tool. I'd like to be able to save all the points so that i can easily send ...
3
votes
1answer
513 views
Android Canvas Drawing Text and Change Text afterwards
I´ve created a costum view, and on the onDrawMethod i´ve started to draw some things.
A few rects,lines, and a text.
canvas.drawText("Hello",150,150, paint);
Now, I want to change this text, ...
3
votes
1answer
572 views
NetworkX node attribute drawing
Im using networkx for visualization. I see when I use the function
draw_networkx_edge_labels
I can retrieve the labels for edges.
I want to print the attribute on node ( instead of the label).. try ...
3
votes
1answer
678 views
Let users draw a line (arrow) on a div/img
Using the jQuery plugin: imgareaselect (http://odyniec.net/projects/imgareaselect/), I let users select areas of an image to add comments (just like flickr).
I'm aiming to let users draw arrows ...