1
vote
1answer
14 views

KineticJS How to listen to image drop from file explorer ?

I'm using kineticjs v4.5.1 I'm looking for a way to add image to my canvas from a system drag'n'drop. I've tried to add an event listener to my container : ...
0
votes
0answers
56 views

Kinetic JS - Change image resolution using filter when mouse is down

I am changing left mouse down (drag) to change the image, it works but very slow (refresh). I am using the following to display the image: function makeKineticImage() { dImage1 = ...
0
votes
1answer
59 views

kineticjs regular polygon setFillPatternImage alignment issue

I am using a kineticjs regular polygon (a hexagon in this case) and I am filling it with an image using setFillPatternImage. This is working. I'm creating a dynamic implementation so I need to scale ...
0
votes
1answer
93 views

Kinetic JS - image rotation based on rotating another object and anti clockwise rotation

I am trying to rotate an image using the mouse angle: First I calculate the mouse degree using: mouseX = parseInt(e.clientX - offsetX); mouseY = parseInt(e.clientY - ...
0
votes
1answer
146 views

Drag, Drop, and Resize Images with canvas

This is a very nice demo of canvas and kineticjs. Anyway if an image is drawn to a size of zero pixel all images on the canvas disappear. I'm looking for alternatives to kineticjs in pure JS, or is ...
1
vote
1answer
139 views

Kinetic JS - Rotate image based on mouse angle

I am trying to rotate an image on its center using the angle of the mouse on the stage. It rotates using: dlayerA1.rotate(degree); but it flys all over and does not rotate on its center!! ...
2
votes
1answer
69 views

KineticJS mouseover an image

I am trying to change the mouse pointer on mouseover an image, here is my script: var sc = new Kinetic.Layer(); var sCircle = new Image(); var ...
0
votes
1answer
122 views

KineticJS draw Image inside a circle

I am trying to place an image inside a circle using: var gArrow2 = new Image(); gArrow2.src = '../../Content/images/green_s.png'; var circle2 = new Kinetic.Circle({ ...
0
votes
1answer
26 views

KineticJS-saveImagedata() , Problems updating to new kineticjs library

I used kinetic-v3.10.4.js for almost all my work. Now the requirement changed and I need to add few more functionality that are available in newer versions. So I started using kinetic-v4.0.1.js. I ...
1
vote
0answers
127 views

Getting duplicate images when reloading with stage.toJSON() in kinetic js

My canvas has few images that are resizable and support drag and drop. after saving the canvas I'm doing a var stage = Kinetic.Node.create(json, 'container'); If I just add a single image on ...
0
votes
1answer
86 views

user-friendly method of saving images with kineticjs

Had a question about how to make image saving easier with kineticJS, which has, by the way, proved to be an awesome framework. With it, I created this app that enables teachers in our prof dev courses ...
1
vote
1answer
286 views

KineticJS : get image array id

Here is the problem : I have a canvas, and four (would be more in future, but 4 for testing...anyway, doesn't matter) images that can be "poped" into the canvas by clicking on it. Each image can be ...
-2
votes
1answer
290 views

Kinetic js photo image with blurred/transparent edges

I'm building a photo-framing application using Kinetic JS (which is great, by the way). I would like the photo, which starts life as a JPEG, to have blurred edges so it is blended in nicely to its ...
2
votes
1answer
215 views

KineticJS shape over image

I want to draw some shapes over an image. After the image is loaded and added to the layer, I use the moveToBottom() function, which works for shapes but doesn't seem to work with images. I've tried ...
2
votes
2answers
380 views

Kineticjs - Help uploading images to stage from input file

I am trying to allow users upload their own images to the kineticJS stage through an input in the html. I prefer to keep all my code in a separate js file, here is what i have so far: ...
1
vote
1answer
885 views

Image URL: data:image/png;base64 (KineticJS)

When using KineticJS to generate an image of the canvas, the function stage.toDataURL() gives me a URL that starts with data:image/png;base64 followed by a really long string! Question: How does the ...
0
votes
1answer
166 views

Kinetic.Image config cornerRadius doesn't work

I currently used KineticJS (version:4.2.0) to do something, but when I want to set corner radius for a kinetic image object, it seems it doesn't work at all. Do anyone have any ideas? My code is like ...
0
votes
1answer
175 views

uncaught type error with KineticJs while adding images in HTML5 Canvas

I am trying to add image on a canvas and using Kinetic.js library but there is an error on console Uncaught TypeError: Type error my code is: JS Fiddle HTML <!DOCTYPE HTML> Design ...
0
votes
0answers
57 views

Blank image in dataURL of a cropped Kinetic.Image

I have been trying to crop and save an image using 'Kinetic.js' . I used the setCrop method of Kinetic Image and have also tried passing the crop directly into the constructor(as suggested in many ...
1
vote
1answer
508 views

KineticJS - Crop fill image

I'm trying to use a tileset in my game. I want to crop the fill image but can't because I can't fill a shape with a Kinetic.Image() object. I can't crop a Image() object. var rect = new ...
0
votes
2answers
1k views

Resizing the images while keeping proportion using kinetic js canvas

I'm using this in my app: http://www.html5canvastutorials.com/labs/html5-canvas-drag-and-drop-resize-and-invert-images/ have use anchors for resizing the image .. What I want is to resize the image ...
2
votes
1answer
735 views

In kinetic js Rotating an image inside the canvas and scribbling on that image

Actually I am loading an image in the canvas and scribbling on it and then rotating. Its working fine. After rotating the image If I try to scribble or write anything the lines are printing as per ...
1
vote
1answer
962 views

Kinetic.js - Images not showing up

I am building an app which should show different types of graphs. One should show two or more images positioned by the scores the user did. Okay that has nothing to do with the problem. So I wrote a ...
0
votes
1answer
758 views

Resize Image object for Shape fill in KineticJS

I have an Image() object, which I need to resize. I am using it to fill a shape in canvas. If I try to change it like image.width = 300, it doesn't resize. If I console.log it, it shows that only the ...
0
votes
1answer
587 views

In Kinetic.js how can I load multiple images with one image loaded on canvas at a time

I need generic code for whole images in the sources. It should still work even if image size increases. For loading I am using this code: var loadImages = function(sources, callback) { var images ...
1
vote
1answer
784 views

html5 kineticjs with free transform save image to web service

I need to use kinetic in order to transform one image using the anchors. I found this example: http://www.html5canvastutorials.com/labs/html5-canvas-drag-and-drop-resize-and-invert-images/ I then ...
0
votes
2answers
363 views

stage.toJSON() in kinetic js HTML5 Canvas

you can refer to this example http://www.html5canvastutorials.com/kineticjs/html5-canvas-load-complex-stage-with-kineticjs/ M trying to achive the same thing ,it’s like a studio where user has the ...
0
votes
1answer
469 views

How Move Image in kineticjs

How move image from left to right and repeat in kineticjs? How change speed ?
0
votes
1answer
309 views

After drag-and-drop an image inside Canvas of HTML 5, how can I display it's ID?

I am having 4 images inside Canvas in HTML5. When I drop the image somewhere in the Canvas, I want to display the name of the image inside my Canvas . Is it possible? If yes, please tell me how can it ...
1
vote
1answer
696 views

Showing image inside hexagon with html5 and kineticjs

I want to draw a hexagon and show an image inside that using html5. I have tried it out but I am not getting image as the result. I want to use kineticjs only for this. Here is the code: function ...
0
votes
0answers
286 views

Converting color image to grayscale and vice versa in html5 using kinetic.js

I want to convert an image to grayscale initially and then from grayscale to color using kinetic.js in html5. Is it any way to do so? Note: I want to use kinetic.js because I will be lots of methods ...
1
vote
1answer
1k views

Flipping an image in kineticJS?

I have an image in my code, as defined here var imageObj = new Image(); imageObj.onload = function(){ imageF = new Kinetic.Image({ x: 0, y: 0, scale: (100,100), ...
1
vote
1answer
865 views

Move to top function is not working in kineticJs [closed]

I am trying to load multiple images onto a canvas using html5 img tag. and images are replaceable .eg there are 5 list of images The images are also draggable and onclick of a particular images ...
0
votes
1answer
5k views

Jquery drag and drop and snap to grid in kineticJS

Hey I am implementing the drag and drop operations using Kineticjs Now I want the images to snap to each other if they get close .. I saw the animals on beach example in KineticJs which was no help to ...
0
votes
2answers
630 views

clearing the canvas for reloading image?

What am I doing wrong here?? I am writing an image to canvs using html5 image tag. what i want it to replace the last image onclick of the new image.. I am able to load image but on click of next ...
1
vote
1answer
6k views

Replacing image in HTML5 canvas using kinetic.js?

Hey guys I'm trying to replace the image loaded on the html5 canvas on click of the next image in the same list.. Like I have two lists of images using different functions to get onto the canvas.. Now ...