Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
5answers
184 views

How to extract a stroke from a Chinese character

I've been trying many times to create an algorithm to extract stroke information from Chinese characters. I've tried various methods but none was very satisfying, probably because of my limited ...
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
3answers
79 views

Why doesn't the Graphics' draw method respect stroke attributes?

I want to create a custom border with rounded corners. Code - import java.awt.BasicStroke; import java.awt.Color; import java.awt.Component; import java.awt.FlowLayout; import java.awt.Graphics; ...
4
votes
4answers
96 views

c# List<T> Sort : by Chinese strokes

I have a webpage, in which there is a sort that I have to order the list by Chinese strokes. I have created an application containing code like this: List<Student> stuList = new ...
4
votes
1answer
589 views

Drawing on WriteableBitmap

I have a WriteableBitmap and would like the user to be able to draw over it as if it was an InkPresenter control. What is the best way to go about doing this in realtime? Using WriteableBitmap.Pixels, ...
3
votes
1answer
585 views

Border in shape xml

I am trying to make a drawable to use for a button. I would like it to have this coloring, with a 2px border around it. Everything works just fine except I cannot get the border to show up... ...
3
votes
2answers
373 views

AffineTransform without transforming Stroke?

When using the Graphics2D scale() function with two different parameters (scaling by different ratios in x- and y-direction), everything drawn later on this Graphics2D object is scaled too. This has ...
3
votes
1answer
1k views

Using XamlReader for controls that does not have a default constructor

I have some string representations of Xaml objects, and I want to build the controls. I'm using the XamlReader.Parse function to do this. For a simple control such as Button that has a default ...
3
votes
2answers
1k views

Smoothing a rounded stroke in Core Graphics

I am creating my own UITableViewCells with a gradient background. I have all the logic and drawing worked out, but one thing I want to fix is the "chunkiness" around the corners of my custom cell: ...
2
votes
1answer
57 views

How to maintain pixel when zooming into SVG canvas?

I've built a frontend tool for zooming in/out of an SVG canvas, but when I zoom, any 1px strokes increase in width (visually). Is there a svg setting that will ensure that 1px strokes remain 1px ...
2
votes
3answers
971 views

clear line on HTML5 Canvas

Is there a way to unstroke a line? On my canvas I have a line with opacity 0.5, and width of 20 pixels, let's say. Now I want to to make it longer, means to draw another line right out of the old one. ...
2
votes
1answer
174 views

ActionScript - Inaccurate Graphics?

i'm attempting to draw a red stroke (1 thickness) around a rounded rectangle but the stroke is not lining up correctly around the rounded corners. my rounded rectangle's corners have an ellipseWidth ...
1
vote
1answer
31 views

Transparency of a filled stroke in HTML5

I'm working on a doodling app in HTML5 and I would like to do a sort of bucket feature. The idea is to draw a path and it will be closed and filled with the selected colour (colour of the stroke). It ...
1
vote
1answer
65 views

Best way to do a solid Text Outline/Stroke in all browsers?

I'm having a problem applying a outline/stroke to text that looks good and/or even works on every browser. Right now I'm using: <div style="font-family: Helvetica,sans-serif;color: ...
1
vote
3answers
45 views

How to make an SVG “line” with a border around it?

I have a little svg widget whose purpose is to display a list of angles (see image). Right now, the angles are line elements, which only have a stroke and no fill. But now I'd like to have an ...
1
vote
1answer
82 views

How should I handle multiple strokes on GestureOverlayView?

I need to handle multiple strokes on gestureOverlayView by using ongestureListener handler, which is implemented by 4 functions: ongestureStarted(..), ongestureEnded(..), etc. I used this in xml ...
1
vote
4answers
97 views

Something like SVG non-scaling-stroke in Android?

I have a Canvas that comes from a Picture beginRecording() method. I record things in the canvas and then call endRecording(). I would like to be able to record strokes that will not scale when the ...
1
vote
2answers
201 views

Why is SVG stroke-width : 1 making lines transparent?

I'm creating stock charts with svg and I'm having a problem when I set the stroke-width of my path elements to 1. Instead of making the lines more narrow, it just makes it the same size as ...
1
vote
1answer
294 views

HTML5 canvas - opacity problem with a paint app

I'm trying to program a paint application using Canvas. the way it works is by connection lines when the mouse is pressed. when the line is opaque it works well, but when I change the alpha parameter ...
1
vote
0answers
391 views

Excanvas does not work in IE8

Excanvas does not work in IE8!!! I write program to paint by mouse on canvas element. There are fragment of my js-code window.attachEvent('onload', function () { function init() { ...
1
vote
2answers
408 views

NSBezierPath rounded rectangle has bad corners

I have an NSBezierPath that makes a rounded rectangle but the corners of it look choppy and appear brighter that the rest of the stroke when viewed at full scale. My code is: NSBezierPath *path = ...
1
vote
2answers
281 views

Java: line-stroke with filled shape

This is not really important, but it was bothering me for a little while. Problem description: Given: a line (Line2D) Wanted: drawing the line as a wedge (Filled GeneralPath) Surely this can be ...
1
vote
4answers
315 views

WPF/Silverlight: Is it possible to have a different stroke color for each edge?

Say I have a rectangle with a certain stroke color. Can I define certain edges to have different colors? For example, say I want the top and bottom of the stroke to be one color, but the left and ...
1
vote
1answer
221 views

Cocoa NSBezierPath - stroke. Crashes with color different from predefined one

I have the following problem. I'm writing my own class which must draw a circle of specified size, fill it with gradient. I made it with a circle being a NSBezierPath, to which I draw my gradient ...
1
vote
2answers
173 views

SVG stroke as glued lines

Is there a way to define stroke of a single polygon so that it would look like multiple glued polygons? See this image:
1
vote
1answer
267 views

Prevent stroke border from overflowing path

strokeRect (0, 0, canvasWidth, canvasHeight); draws a full rectangle but the line width is cut in half, here is an example: <canvas></canvas> <script> var canvas = ...
1
vote
2answers
466 views

I need to change the stroke color to a user defined color. Nothing to do with the state

I need to change the stroke color from the app. The user is able to change the background color so I need to also let them change the stroke (outline) of the button. As its is already set in the ...
1
vote
1answer
221 views

Prevent Silverlight from scaling line width

When using the ScaleTransform class, Silverlight also scale the thickness of the strokes on the shapes that I display. But what if I don't want this behaviour? Is it possible to disable the scaling of ...
1
vote
1answer
773 views

Android multiple stroke box in drawable xml

I'm trying to achieve what amounts to effectively 2 strokes on a rectangle in a <shape> element in an android drawable xml. A dark green outer line and a light green inner line, with a gradient ...
1
vote
3answers
2k views

Applying a stroke to a rounded rect in core-graphics

I have a gradient that has rounded corners that I an using for a custom UITableViewCell background. I am trying to apply a stroke to the path but cannot quite do it, and can't see where I am going ...
1
vote
3answers
2k views

Flex: Create custom stroke on LineSeries?

You can easily set a stroke on a line series like this: <mx:LineSeries yField="apple"> <mx:lineStroke> <mx:Stroke color="0x6699FF" ...
1
vote
1answer
591 views

Preserve line width while scaling all points in the context with CGAffineTransform

I have a CGPath in some coordinate system that I'd like to draw. Doing so involves scaling the old coordinate system onto the Context's one. For that purpose, I use CGContextConcatCTM() which does ...
0
votes
2answers
14 views

Outline a group of touching shapes with SVG

For a certain style I'm going for, I want to outline a group of shapes in SVG. Applied to a group, the stroke property appears to outline each shape individually--effectively going on top of other ...
0
votes
1answer
15 views

How to add a stroke to only some characters in a string using PHP ImageMagick?

Say I have the following code: $draw = new ImagickDraw(); // prep text $draw->setFillColor('#00ff00'); $draw->setFontSize(12); $draw->setStrokeWidth(4); $draw->setStrokeColor(new ...
0
votes
0answers
16 views

Can I modify the stroke of eclipse in Raphael JS?

First, sorry for my bad English. I want to modify the stroke of eclipse in Raphael JS. At usual, the stroke always have a color itself when you set up these commands: var paper = new ...
0
votes
4answers
71 views

OSMDroid PathOverlay drawing is corrupted at high zoom levels

I'm using OSMdroid to implement a mapping application. I have implemented a custom MapTileProvider that uses a tile source that allows zoom levels up to 22. The default MAPNIK provider only allows ...
0
votes
1answer
35 views

In iOS, how do you get the current line width of a CGContext?

There's a call CGContextSetLineWidth, but I don't see a corresponding CGContextGetLineWidth or even a CGContextLineWidth. How can I get the current width set in the context? I need to know what this ...
0
votes
4answers
51 views

Text stroke in <input type=“text”/>

I want to use text stroke in <input type="text"/> and I need it to be cross-browser (firefox, google chrome, safari, opera, IE7+). Is any there any method to do it (CSS 2.1, jQuery...)?
0
votes
2answers
60 views

How make border stroke of WPF Polygon solid?

If you look at the below XAML, it creates two rectangles. XAML <Grid> <Rectangle Height="80" Width="300" Fill="Maroon" HorizontalAlignment="Center" ...
0
votes
1answer
94 views

Android : stroke in a shape create a margin of the stroke width

I created a rectangle shape in order to use it as list item background. My problem is the stroke does not follow the view border but let a margin of +/- the stroke width. Here is the xml of my shape ...
0
votes
1answer
69 views

Programatically create InkCanvas Stroke from Path Object

I am trying to convert some scanned handwritten material into InkCanvas for handwriting recognition using InkAnalyser. I already have my handwriting material available in XAML. I have this path ...
0
votes
0answers
102 views

InkCanvas fill strokes

Hello I am currently working on making a program similar to MSpaint. To do this I use an InkCanvas and are using strokes to make shapes like trinagles. private void tooltriangle() { ...
0
votes
1answer
54 views

default stroke and fill in SVG

Im confused about stroke and fill defaults in SVG. in the SVG spec (http://www.w3.org/TR/SVG/painting.html#StrokeProperty) it says the initial value for the stroke property is none - which i am ...
0
votes
1answer
95 views

Create a Tapered Stroke

Some paint programs like Manga Studio include brushes that taper down to a point at the ends of the stroke. I have a few ideas about how this could be implemented, but the ideas I have seem ...
0
votes
1answer
156 views

Combining Shapes, LineGeometry missing a stroke property

Is there any way that you can combine two shapes into one, not geometries. I know I can do this with GeometryGroup using line geometries and the two lines will be a composite shape. However, line ...
0
votes
3answers
102 views

How to add invisible layer to a line

I have a line shape that I have implemented the double click for, however the line is too thin. I would like to add a transparent white padding around it, so that it doesn't have to be clicked ...
0
votes
0answers
17 views

How can I draw an outline around of a boolean (0, 1) matrix “shape”? (Actionscript or pseudocode)

Let's say I have a two-dimensional array like this: [ [1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 0, 0, 0, 0, 0, 0, 1, 1], [1, 0, 0, 0, 1, 1, 0, 0, 0, 1], [1, 0, 0, 1, 1, 1, 1, 0, 0, 1], [1, 0, 0, 1, 1, ...
0
votes
1answer
240 views

Draw a pencil stoke using DrawLines() in android

There is an array 'a' which holds the points b/w which lines have to be drawn: float[] a = {0.0f, 1.2f, 3.4f, -9.87f, 65.4f, 0.0f, 567.9f}; canvas.drawLines(a,mypaint); Now what ...
0
votes
1answer
107 views

iPhone - Stroking a path does not work

I have these methods into a MKOverlayView subclass, and I do not understand why filling a path works, and why stroking that same path doesn't work... - (id) init { if (!(self = [super init])) ...
0
votes
1answer
142 views

Animate the outer stroke of a view (button)

I'd like to flash/blink the stroke of a button a few times based on a timer. For example, every 30 seconds flash the stroke 3 times from white to black or some such thing. Can this be done? Thanks

1 2