Tagged Questions
1
vote
1answer
18 views
Canvas algorithm to plot signatures randomly like a signed yearbook?
I'm looking for the best approach to plot multiple signatures randomly on a page like a high school yearbook using Canvas or SVG. Anyone know of existing algorithms or open source code similar to ...
0
votes
1answer
40 views
HTML5 Javascript: Save text onto canvas?
If you take a look at what I've done so far it'll help explain what I'm after, as I'm terrible at explaining normally haha. http://logomakr.bugs3.com/
On my drawing app I've implemented the ability ...
0
votes
0answers
34 views
Using IME to input text in canvas (wPaint)
For a small project at our university, we use Websanova wPaint on a Samsung Smart TV app. It's a jquery plugin, doin' all the stuff what a paint app should be able to handle. So it also offers the ...
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 ...
0
votes
2answers
97 views
Preformatted Text on Canvas Element
I am having problems reflecting the new line and multiple spaces entered by a user in a text area onto a canvas element. I cannot seem to find a away to convert the text to preformatted.
Essentially ...
0
votes
1answer
173 views
KineticJS setText method to update like a Timer
I need to update the text property of a KineticJS text like a timer. but my below code doent work as expected, what I am doing wrong:
var dateTimeText = new Kinetic.Text({
x: 40,
...
1
vote
0answers
55 views
ImageMapster text overlay
How to achieve text overlay in ImageMapster?
ImageMapster seems to be a very popular plugin and I am doing research in order to decide whether to use it in my project. In the application that I am ...
1
vote
2answers
98 views
html5 canvas placing text too low?
I am playing with the element and found when I place text on the canvas it is too low.
var canvas = document.getElementById('myCanvas');
var context = canvas.getContext('2d');
var imageObj = ...
0
votes
2answers
73 views
Center text on Canvas?
Can someone please give me an example on how to center text on a JavaFX 2 Canvas?
GraphicsContext has some functions like setTextAlign, but I am not sure on how to use all those methods and which of ...
0
votes
0answers
26 views
How to implement editable text objects(photoshop/gimp/inkscape like text tool) in goocanvasmm using gtkmm3?
I am programming with gtkmm3 and goocanvasmm. How to implement photoshop/gimp/inkscape like editable text objects(text tool) ? After clicked text tool, a cursor should appear in window(canvas) to type ...
2
votes
1answer
267 views
tkinter canvas: text object variable font size?
I'm making some pretty pictures using a tkinter canvas and overlaying text on top of circles like in the following picture:
...
0
votes
1answer
253 views
Python, Tkinter - Inserting text into canvas windows
I have a Tkinter canvas populated with text and canvas windows, or widgets, created using the create_text and create_window-methods. The widgets I place on the canvas are text widgets, and I want to ...
2
votes
1answer
165 views
Set leading of paint / fontmetrics in android
I'm using a custom font and adding text to a canvas with a Paint object in android, e.g:
Paint paint = new Paint();
paint.setARGB(255, 255, 255, 255);
paint.setTextSize(29);
...
0
votes
2answers
149 views
Create text outline on canvas in javascript
How can I give a text an outline in JavaScript when drawing on the Canvas? See image below of what I try to do.
0
votes
0answers
81 views
Text in safari canvas
I have a problem with drawing text in safari canvas. It looks like on this image. This canvas drawing on such way: first is drawing the stage block with gradient, than the talk block with gradient too ...
1
vote
1answer
122 views
Change text height and width separately when drawing with canvas
I want to know if there is any way to modify text height and width separately when drawing with canvas. To set text size you can simply do paint.setTextSize(x);but it change text size in X and Y and I ...
1
vote
1answer
117 views
Text on path not working from 4.1.2 to 4.0.3
I have started working on a game, and when the game ends it displays a board with the stats of the game. The winner's name, is drew on top of the board on an arch (using a class TextOnPath, which I ...
0
votes
1answer
69 views
How to add text into canvas
I have problem with canvas fillText function. I have this code :
scene.shapes['shop1'] = new Shape();
var ps1 = scene.shapes['shop1'].points; // for convenience
ps1[0] = new ...
1
vote
1answer
87 views
poorly rendered/antialased canvas text on firefox
The text comes out looking pixelated / aliased (firefox and opera)
As it seems like there's not much to do about the actual issue, are there any quirks/tricks that might reduce this effect?
Thanks
...
0
votes
1answer
67 views
How does textBaseline in canvas works?
I have this simple code: http://codepen.io/hypertornado/pen/rIbsH where are two lines of text drawn on canvas. How is it possible, that there is an empty space between top canvas border and first ...
0
votes
2answers
253 views
Drag/drop & delete dynamic text on HTML canvas
I've found a number of tutorials online for dragging and dropping images and shapes within an HTML canvas. But they all seem to be aimed at moving objects that are generated within the canvas when the ...
1
vote
2answers
48 views
Spacing between string characters in arced text isn't quite right. (HTML Canvas)
See here - http://schnell.dreamhosters.com/nysbc/test6.php
JSFiddle - http://jsfiddle.net/VauFH/
The piece that draws text...
function draw_arc_text(ctx, str, radius){
ctx.save();
...
1
vote
1answer
67 views
display text from user on canvas [closed]
Now I have 3 Elements. a textfield and a submit button are on top and under them is a canvas. I want to display the input from user on canvas after clicking submit button.
I'm glad to see any ...
0
votes
0answers
76 views
extract path from text html canvas
Is there anyway to extract a path from text in html 5, then grab (x,y) coordinates along that path?
I would like to take the x,y coordinates and apply a shape at their location so that it resembles ...
1
vote
1answer
256 views
Android dynamic text drawing / touch detection
I want to display text (relatively large) and determine which character the user touches. I'd also like to embellish the text by drawing a circle (for example) over certain characters. How do I know ...
0
votes
0answers
156 views
Drawing animation of fancy text
I am working on an application which takes user input (string) and stores it.
When the app is started again it displays the stored text.
I want the displayed text to be like an animation. Example ...
0
votes
1answer
195 views
using clearRect() to overwrite text output on canvas?
I'm making a little game on jsbin and everything so far is going well but I'm have a slight problem. The goal of the game is to click the randomly appearing circle as many times as possible in one ...
1
vote
1answer
435 views
How do I create a very simple text editor from scratch?
Let's say I would like to create a simple text editor. It doesn't really need to have anything particularly special, it mostly should be like Notepad. And, say I want to create it from scratch: for ...
1
vote
1answer
381 views
Setting Android Character Width
You can control the height of a text character, drawn into the canvas, with setTextSize(). For example, if you want text of height 8 pixels, you would write:
mPaint.setTextSize(8);
This works ...
0
votes
2answers
112 views
Javascript code display text
Have code for a rectangle with a line through it, I would like to display text under the rectangle. How do I add this into my code? Or can someone point me in the right direction?
<canvas ...
0
votes
1answer
144 views
html5 kinetic text ascii
How to visualize ascii chars to "human readable" in kineticJS?
var figure = new Kinetic.Text({
x: 75/2,
y: 75/2,
text: "♘",
fontSize: 30,
fontFamily: ...
1
vote
0answers
114 views
Firefox strokeText jagged artifacts
having some issues with canvas rendering of strokeText() in FF. Whenever drawing outline text with the code:
canvasCtx.font = '36px impact';
canvasCtx.strokeStyle = '#000';
...
0
votes
2answers
207 views
add text in canvas like paint
I need to implement an html5 application that permit users to add text to my html5 cnavas.
similiar to the way we do in paint.the users will be able to modify the size of letter, type..etc
0
votes
0answers
203 views
HTML5 canvas font producing strange offsets
I'm trying to build into a little app the ability to type text and copy it over to the canvas. Best bet is to look at this demo: http://www.websanova.com/demo/
Click on the "T" icon then start ...
1
vote
0answers
59 views
How can i draw smooth text on html canvas? [duplicate]
Possible Duplicate:
Poor anti-aliasing of text drawn on Canvas
i already have drawn text on html canvas. but the text's side is not smooth. I want to make them smooth like photoshop. Please ...
1
vote
1answer
367 views
How to draw text fitting in a given rectangle on a canvas?
I am creating some images using the canvas. I would like to be able to draw text in given rect (i.e. offset x, offset y, width and height) on a canvas and that text to be as large as possible without ...
5
votes
2answers
3k views
Android canvas drawText y-position of text
I'm using a Canvas to create a Drawable with some background and some text. The drawable is used as a compound drawable inside an EditText.
The text is drawn via drawText() on the canvas, but I do ...
3
votes
1answer
2k views
Determine width of string in HTML5 canvas
I'm drawing text in an HTML5 canvas on top of an image (a meme generator). I want to calculate a font size so that the string will span the entire width of the canvas.
So basically, is there a way ...
2
votes
4answers
885 views
Interactive text fields with fabricjs
I've been playing with fabricjs a lot in the last few weeks, but regarding text fields I've only found it possible to set the text on creation.
Is there any possible way to make an interactive text ...
0
votes
1answer
391 views
measure issue with custom view with multi-line text
I'm trying to create a custom view for my list items instead of using XML layouts. The view is just a collection of text that I'm drawing to the canvas. Besides a header of fixed size, there's a ...
1
vote
1answer
533 views
Add Text Shadow on Canvas that has also an image on it
I am using the canvas and HTML5. I have an icon in my canvas and a text and when I am trying to add shadow in my Text with this code:
ctx.shadowColor = textShadowColor;
ctx.shadowBlur = 1;
...
1
vote
2answers
413 views
How this author made the equalizer effect inside text?
http://www.chris-wang.com/
If you hover over the textual navigation words on this page, you'll see it changes color from left to right, inside the text. I can't figure out how this guy did that, or ...
1
vote
2answers
262 views
Android. Is it possible to change part of text in Canvas?
I want to draw text in Canvas. using this code:
canvas.drawText(getString(R.string.test1)+c, 30,320, paint);
a need change of "c" to bold...
Thanks...
5
votes
1answer
3k views
How to write the text on top of image in HTML5 canvas?
I want to display a image on canvas and insert a text on top of that image.
<script>
window.onload = function(){
var canvas = document.getElementById("myCanvas");
var context ...
0
votes
1answer
278 views
Can setTextSize() be density independant?
If I were to initialize a Paint, and set it's text size like so:
Paint = new Paint();
Paint.setAntiAlias(true);
Paint.setARGB(255, 255, 0, 0);
Paint.setTextSize(screenWidth/100);
//screenWidth is ...
0
votes
1answer
352 views
Working with HTML5 Canvas
I am working with some image manipulations and I am trying to have a basic canvas and I have a text box now If I enter any text it should change immediately on the canvas and I need that text to move ...
0
votes
3answers
2k views
Draw text on canvas using fabric.js
I want to draw text on canvas., how to do it any sample example?
The canvas already contains some shape drawn, i want to show text on the top of that shape on canvas
How can i do it?
2
votes
1answer
3k views
HTML5 Text Canvas rotate in case text width is lager than maximum width allowed
Friends, i'm finding rotating a text canvas object a bit tricky. The thing is, I'm drawing a graphic, but sometimes the width of each bar is smaller than the 'value' of that bar. So I have to ratate ...
5
votes
2answers
3k views
Getting height and width of a text using Canvas
I'm developing an Android 2.2 application.
I'm using this method to draw a text in a View:
public void draw(Canvas c)
{
p.setColor(Color.WHITE);
if(name != null)
...
1
vote
1answer
444 views
Adding EditText box to android app based on x,y coordinates?
I am looking to be able to first detect touch events to draw a box whatever size the user wants on the canvas - this part I have completed.
I then need to take the coordinates of that box and create ...
