wPaint icon indicating copy to clipboard operation
wPaint copied to clipboard

spry tool needed

Open sureshpattu opened this issue 12 years ago • 4 comments

Is it possible to add spry tool in the tools options

sureshpattu avatar Mar 18 '13 12:03 sureshpattu

Well, I'm not really sure what a spry tool is, but I'm sure anything can be added. I'm gonig to be doing some travelling for a while though so not sure if I will be getting to anything soon.

On Mon, Mar 18, 2013 at 8:16 AM, sureshrkm [email protected] wrote:

Is it possible to add spry tool in the tools options

— Reply to this email directly or view it on GitHubhttps://github.com/websanova/wPaint/issues/24 .

websanova avatar Mar 18 '13 12:03 websanova

I think he means the "spray" tool

arvsr1988 avatar Mar 18 '13 13:03 arvsr1988

Ah, yes, well, ya that can be added. I am planning to overhaul this plugin and make it look more professional with a bunch of new tools, but unfortunately that won't be for another couple months.

On Mon, Mar 18, 2013 at 9:18 AM, arvsr1988 [email protected] wrote:

I think he means the "spray" tool

— Reply to this email directly or view it on GitHubhttps://github.com/websanova/wPaint/issues/24#issuecomment-15053973 .

websanova avatar Mar 18 '13 13:03 websanova

Hi, I have tried and modified pencil code as spray tool. It is working fine to me. I added the code below. If you want to use it , you can try this.

$.fn.wPaint.menus.main = { img: 'plugins/main/img/icons-menu-main.png', items: { spray: { icon: 'activate', img: 'plugins/main/img/spray.png', title: 'Spray Tool', index: 0,callback: function () { this.setMode('spray'); } } } };

/****************************************
 * Spray
 ****************************************/
_drawSprayDown: function (e) {
    this.ctx.lineJoin = 'round';
    this.ctx.lineCap = 'round';
    this.ctx.strokeStyle = this.options.strokeStyle;
    this.ctx.fillStyle = this.options.strokeStyle;
    this.ctx.lineWidth = 1;

    //draw a spray paint in case of a click without a move
    this.ctx.beginPath();
    for(var i=20;i--;){
    this.ctx.rect(e.pageX+ Math.random() * 20 - 10, e.pageY+ Math.random() * 20 - 10,1,1);
    this.ctx.fill();
    }
    this.ctx.closePath();


    //start the path for a drag
    this.ctx.beginPath();
    this.ctx.moveTo(e.pageX, e.pageY);
  },

  _drawSprayMove: function (e) {
    this.ctx.rect(e.pageX+ Math.random() * 20 - 10, e.pageY+ Math.random() * 20 - 10,1,1);
    this.ctx.fill();
  },

  _drawSprayUp: function () {
    this.ctx.closePath();
    this._addUndo();
  },

Add the below line in cursors**

spray: {path: 'plugins/main/img/spray.png', left: 0, top: 12},

taraka91 avatar Dec 10 '15 05:12 taraka91