Philipp Wambach
Philipp Wambach
Hey Dave, sorry I somehow missed to answer while being on vacation. Did you find a solution already? If not, could you provide a simple example with your problem? Cheers...
Sorry for the long pause. Do you mean to paint a circle like cursor to the canvas at the mouseposition? The resizing according to the brush size shouldn't be a...
Hey, thanks for the hint. I didn't have this case in mind when I was building this project :) Sadly I don't have any time to dive back into the...
Hey, this is not yep implemented. At the moment you have to access the canvas with its id to get the context/image. But there will be an update soon (next...
Hey, sorry, have been a bit lazy on this one. For now the only option is to pass a custom Id (in the options object) to the canvas and access...
Background image is already possible.Just use the imageSrc property. Eraser would need some work.
There aren't any limits implemented in the source code. It most probably depends on your browser. Probably better to use image files instead of Data URIs when working with large...
Hey, thanks for your feedback! Yes you're right, the issue here is that `selectedColor` is not defined in the beginning. Therefore the color selector doesn't highlight any color and the...
Hey, thanks for the PR. Nice feature, but we should make it configurable in the options object as this is a breaking change. Also not everybody wants the background image...
Hey, you are not loading the canvas painter module `pw.canvas-painter` in your angular application. ``` var app = angular.module('app', ['onsen', 'pascalprecht.translate', 'web.colorpicker']); ``` should be ``` var app = angular.module('app',...