Giter Site home page Giter Site logo

spry tool needed about wpaint HOT 4 OPEN

websanova avatar websanova commented on August 15, 2024
spry tool needed

from wpaint.

Comments (4)

websanova avatar websanova commented on August 15, 2024

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//issues/24
.

from wpaint.

arvsr1988 avatar arvsr1988 commented on August 15, 2024

I think he means the "spray" tool

from wpaint.

websanova avatar websanova commented on August 15, 2024

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//issues/24#issuecomment-15053973
.

from wpaint.

taraka91 avatar taraka91 commented on August 15, 2024

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},

from wpaint.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.