The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
2answers
18 views

How do I fill/stroke an SVG file on my website?

I Googled this issue for about 30 minutes and was surprised nobody has asked so maybe it's not possible. I'm using this line to embed the SVG file that I made in AI (note that when I saved the SVG, ...
0
votes
0answers
12 views

WPF constant thickness bezier curve

I am trying to draw bezier curves using the GeometryContext in WPF (C#). Everything is working like clockwork except that the stroke thickness seems to differ with the current derivative of the curve. ...
1
vote
1answer
22 views

Calculating Path (Polygon) of Path with Stroke - Javascript or Pseudocode

So I have an array of points (x, y) that form a path. I need to calculate the points of a surrounding polygon. Essentially CGPathCreateCopyByStrokingPath if you're familiar with iOS. Unfortunately, ...
0
votes
0answers
27 views

How to implement animation for character strokes like this in cocos2d?

Please have a look at this: Animation Just click the hyperlink at the top left of the screen to select the character and it will show the animation of the strokes. I'm wondering what kind of ...
0
votes
2answers
53 views

Windows Phone - Serialize/Save InkPresenter control

I have a InkPresenter and add Strokes onto it using InkPresenter.Strokes.Add(Stroke). After that, I want to serialize/save the InkPresenter to the file system or database. Ink.Strokes is type of ...
1
vote
1answer
42 views

Stroke in AChartEngine barchart

How make stroke in AChartEngine barchart? This dont work for me: mCurrentSeries = new XYSeries("Sample Data"); mDataset.addSeries(mCurrentSeries); mCurrentRenderer = new XYSeriesRenderer(); ...
0
votes
0answers
32 views

Jquery Mapster stroke on mouse over

I am using this settings to render different areas of map with different color. http://jsfiddle.net/6maJw/ Problem is, that I also need stroke on mouseover, but when I will use stroke: true, stroke ...
0
votes
2answers
78 views

How can I draw a “transparent stroke” with Raphael.js

I am attempting to draw the path of a graph so that the path is transparent and the rest of the canvas is not. This way I can use the canvas as a mask and fill the path with different colors using ...
0
votes
2answers
99 views

How to remove corners for round rect bezier path

I am programming first time using Core Graphics, so don't have much idea that how exactly can I solve the problem. I am drawing rounded rect bezier path along with gradient and stroke as background ...
1
vote
0answers
66 views

Speed of Thousands of Rectangles (with a Stroke!!!) in a WPF Canvas

this is my fist question here, but I didn't find a real answer to my question. I work on a visualization program and use C# and WPF. I need to draw a treemap. I actually create Rectangle objects ...
0
votes
0answers
80 views

lags using canvas during scrolling

I'm trying to create a outline/stroke on a text in android. Since there is no "easy way" to create a stroke, i try to realize it with canvas. I tried this Textview extending class ...
1
vote
2answers
57 views

kCGTextStroke's Fill and Stroke aren't positioned correctly

So I'm using the code below to apply a stroke (and fill) to text in a UILabel, and it's coming out like the image below. The stroke is heavier on one side than the other (look at the top of the ...
1
vote
2answers
92 views

How do I prevent a text stroke from cutting off at the edge of a UILabel?

I'm adding a fairly wide stroke of a few pixels to text in a UILabel, and depending on the line spacing, if the very edges of the text touch the very edges of the label, the sides of the stroke can be ...
0
votes
0answers
47 views

iphone:How to animate uibeizserpath set stroke color?

I have an one view with horizontal and vertical beizer paths.The resulting view looks like the foloowing Now on touch of the view if user has touched the one of the path,I have to change the color ...
0
votes
0answers
24 views

Standard Followed in Text Rendering in TextView

Till now, i have been using the method setTextSize() for setting the font size of Text seen in a TextView. But when i am trying to create a widget with text rendering methods like public void ...
0
votes
0answers
29 views

Is it possible to render stroke and fill to different canvases?

It seems that when I've created some path on some context, I can not stroke or fill to another context, too. So, being clever I thought to use fill on canvas2 and then copy it to canvas1, like so ...
1
vote
2answers
111 views

Java Swing BasicStroke “cap” does not apply to zero degree angles

This question is a followup to one I asked some time ago: Drawing a bordered path with sharp corners in Java After experimentation, I've discovered some behavior which may be intended, or may be a ...
1
vote
1answer
239 views

How to draw a path with variable stroke width

My code is basically from this example (http://corner.squareup.com/2010/07/smooth-signatures.html) and Google APIs (FingerPaint) but now I want to use the class VelocityTracker in order to change the ...
4
votes
1answer
316 views

Drawing perfectly circular arcs with HTML5 Canvas + KineticJS

I'm currently trying to draw arcs using the KineticJS canvas framework. The issue I'm having is that these arcs are not nearly as "perfectly" circular as required. They're being drawn out as follows: ...
0
votes
1answer
54 views

My SVG doesn't change after changes in the DOM

I'm trying to change the color of a SVGPathElement but it doesn't refresh. I check it gets the new color showing an alert but I don't see any difference. Is it because my SVG is retrieved by AJAX? ...
1
vote
1answer
111 views

How to have two different border stroke color for textfield-ios

In our app we wanted to have 2 different border colors around textfields (eg: top and left edge in 1 color, and bottom and right edge in another color) -Is this possible? Any help will be appreciated. ...
0
votes
0answers
205 views

Android Paint stroke width positioning

Given this code to draw a line: Paint p; p = new Paint(Paint.ANTI_ALIAS_FLAG); p.setColor(android.graphics.Color.WHITE); p.setStyle(Paint.Style.FILL); p.setStrokeWidth(21); ...
0
votes
1answer
66 views

remove polygon fillColor and strokeColor after zoom

When you zoom to some polygon I would like to remove (fillColor, stokeColor) that polygon from map. Here is sample: http://mini.hr/stanonline/test2.php Here is method for zooming to selected ...
0
votes
2answers
104 views

Use an image as polyline stroke outline

I have a paint-like application, when I move the mouse it will draw a line by polyline. Now I want to replace the polyline outline with a pattern image, so when I move the mouse in the canvas it ...
0
votes
1answer
51 views

Welding Pool Demonstration in WPF

I'm trying to develop a welding simulator in WPF C#. I have already designed an electrode and two welding materials in WPF environment. Right now I need to demonstrate the welding pool (when electrode ...
1
vote
3answers
272 views

How to outline a TextView?

What I want to do? (blue will be change as white) What I did? I found a class which extends TextView that able to outline textview very close to what I want. The problem is that I could not change ...
0
votes
0answers
71 views

How can I color opaque area of an image mask only? (iOS 6)

I want to color only the opaque part of an image mask that i have using stroke paths. But it colors the transparent part too. I want to restrict the coloring only to the visible area of the mask. Can ...
1
vote
2answers
41 views

remove stroke in postscript

I have script in ps %! %% Example 4 /box0{ newpath 56 257 moveto 0 -198 rlineto 284 0 rlineto 0 198 rlineto -284 0 rlineto closepath } def /Times-Roman findfont 32 scalefont setfont box0 ...
0
votes
1answer
70 views

Using ColorAnimationUsingKeyFrames multiple times for Stroke.Color Property

I like to use this ColorAnimationUsingKeyFrames <Color x:Key="HighlightedColor">Yellow</Color> <ColorAnimationUsingKeyFrames BeginTime="00:00:00.0000000" ...
0
votes
0answers
32 views

Java: get shape of a BasicStroke

I'm attempting to record the areas of a BufferedImage that a user has already drawn to. The reason I want to do this is to that I can clip these areas of the Graphics2D so that the next time the user ...
0
votes
1answer
37 views

Retrieve the strokes from a screen android [closed]

i'm using an android handwriting recognition SDK, that requires me to create some functions that can be able to retrieve the strokes from a screen. Can anyone tell me or give me some example how can I ...
0
votes
1answer
144 views

erasing from canvas, last canvas.drawPath()

this is the code i made: private void touch_start(float x, float y) { mPath.reset(); mPath.moveTo(x, y); undoPath = new Path(); undoPath.moveTo(x, y); canvas.drawPoint(x, y, ...
0
votes
1answer
82 views

Remove higlight from Ink Strokes added to InkCanvas

After adding a stroke to my InkCanvas's Strokes it appears as "highlighted". It isn't selected though, so when I tried to clear the selection it did not remove the highlight. This is how I am adding ...
0
votes
2answers
323 views

iOS, Draw text with stroke on UIImage

I am currently drawing text onto a UIImage which appears in an AnnotationView in an iOS Map - custom icons which appear at certain long/lat coordinates. Works well. However, I would like to draw this ...
0
votes
1answer
112 views

Did Chrome break svg stroke='url(#…)'?

In early December I put up a web page developed in Chrome using HTML tables with fancy borders created with SVG. Because the table cell size is unknown, I must use relative (%) coordinates to get to ...
0
votes
0answers
58 views

SVG text stroke color is not working

I have selected svg stroke color to red in the editor.But when i saved it, that new stroke color is not showing.Though the stroke value is getting saved, it is not showing in the preview page.It is ...
0
votes
0answers
16 views

Why line cap doesn't work for paths in canvas 2d?

http://jsfiddle.net/MAUd8/3/ Here is an example. The vertical fat line is the line that has lineCap=square, therefore it's height should be: height = height + strokeWidth But is height = height ...
0
votes
2answers
293 views

UIView drawRect: is it possible to stroke inside a path?

With core graphics, is it possible to stroke the inside of a path? As opposed to the line weight being drawn half on the outside and half on the inside of a stroked path? The reason being it would ...
0
votes
2answers
327 views

Drawing line less than one pixel thick requires anti-aliasing in Android 4.2

I'm trying to draw a very thin line (less than one pixel thick) in android. I'm using Paint blackThin = new Paint(); blackThin.setStrokeWidth(0.1f); blackThin.setColor(Color.BLACK); to initialize ...
-1
votes
2answers
130 views

How to create an animated drawing effect on canvas using html5?

i would like to know how to create an nice stroke which blow up some fireworks and nice effects on the stroke line while people are drawing, is that possible? just like this particles appear here in ...
3
votes
1answer
374 views

Outline (stroke) for non-rectangular CCNode in cocos2d

I need to create an outline like this dynamically: Not for a CCSprite, but for multiple animated CCSprites united in one CCNode. I'm thinking about: copying CCNode's content to a texture (like ...
4
votes
1answer
162 views

Double line stroke in html5 canvas

I want to draw a shape that has a double line border using html5 canvas path. The default stroke (context.stroke()) has a single line type of path. I can draw a similar shape inside an original shape ...
2
votes
1answer
57 views

JavaFX2: can I set opacity for Nodes' content and stroke separately?

I'm dealing with JavaFX 2.2 (JDK 7u7) and SVG files (once again ;D). I need to map SVG content to FX objects. My problem is now, that I have e.g. a <rec> (Rectangle) defined in my SVG file. The ...
0
votes
3answers
49 views

Add a specific class style to a path

I am looking for how to add a class in css which matches to a specific path (For example, the name of my path is "cities" and I would like to apply to it an other color of stroke or fill. I try it by ...
2
votes
0answers
91 views

Custom UILabel and its stroke

I'm using a custom UILabel class with this drawRect method: - (void)drawTextInRect:(CGRect)rect { CGContextRef c = UIGraphicsGetCurrentContext(); CGContextSetLineWidth(c, self.outlineSize); ...
0
votes
1answer
217 views

“shape burst” stroke in iOS Core Graphics

Is there a way to create the following effect in Core Graphics by stroking a CGPathRef? If it is possible, would it be more efficient to draw with Core Graphics vs. simply drawing a radial ellipse ...
1
vote
1answer
1k views

HTML5 Canvas stroke not anti-aliased

I'm just trying to make a circle with a thick anti-aliased stroke in canvas. The circle gets drawn as expected, but the edges of the stroke are very jaggy. I keep reading that Chrome forces ...
0
votes
5answers
480 views

Apply stroke to an image in Java

I would like to apply a stroke (outline) to an image in Java. After reading this and this it looks like Java2D API applies strokes to shapes only? Surely I can do a bitmap fill and then apply a stroke ...
1
vote
0answers
287 views

iOS Brush Hardness like Photoshop

How to get the following brush smoothness(hardness) effect like photoshop? My attempt: CGContextRef context = UIGraphicsGetCurrentContext(); CGContextSaveGState(context); ...
0
votes
2answers
414 views

android dashed border with padding

i have a RadioGroup I would like to add a dashed stroke(boder?) with some padding. The background of Radio Buton is <layer-list xmlns:android="http://schemas.android.com/apk/res/android"> ...

1 2 3