PAEz's recent activity

Shape Burst

Shape Burst Got a feeling this is one of the steps of bevel. Well I like being able to do every step by hand so made this. It um....creates a gradient that matches the shape...yeah, that sounds about right πŸ˜‰ Notes The source came from the extreme...
How to create a Layer Check out this post in the Scripts section.... forum/2709

Square Smear

Code Configuration Configuration.AddSlider("size", "Distance", "Be warned, the larger the size the longer it will take.", 1, 100, 8); Configuration.AddSlider("density", "Density Percentage", "", 1, 100, 50); Configuration.AddSlider("mix", "Mix Percen...

Water Ripple

Try changing the wavelength and radius to something real high and change clamp mode to mirror πŸ˜‰ Code Configuration.AddSlider("phase", "Phase", "", 0, 100, 0); Configuration.AddSlider("radius", "Radius", "", 1, 1000, 250); Configuration.AddSlider("...

Triangle Ripple

Code Configuration Configuration.AddSlider("xAmplitude", "X Amplitude", "", 0, 30, 5); Configuration.AddSlider("yAmplitude", "Y Amplitude", "", 0, 30, 5); Configuration.AddSlider("xWavelength", "X Wavelength", "", 1, 50, 16); Configuration.AddSlider(...

Sawtooth Ripple

Code Configuration Configuration.AddSlider("xAmplitude", "X Amplitude", "", 0, 30, 5); Configuration.AddSlider("yAmplitude", "Y Amplitude", "", 0, 30, 5); Configuration.AddSlider("xWavelength", "X Wavelength", "", 1, 50, 16); Configuration.AddSlider(...

Line Smear

Smears lines. Code Configuration Configuration.AddSlider("size", "Distance", "Be warned, the larger the size the longer it will take.", 1, 100, 8); Configuration.AddSlider("density", "Density Percentage", "", 1, 100, 50); Configuration.AddSlider("ang...

Cross Smear

If you apply this to the same image over and over you end up with a kindy crossy blur, try it. Code Configuration Configuration.AddSlider("density", "Density Percentage", "", 1, 100, 4); Configuration.AddSlider("scale", "Scale", "", 1, 100, 4); Confi...

Circle Smear

Um....smears circles on your image. Be warned the Size parameter affects the time it will take alot. Code Configuration Configuration.AddSlider("size", "Size", "Be warned, the larger the size the longer it will take, keeping it under 10 is sane.", 1,...

Diffusion

Scatters pixels. Code Configuration Configuration.AddSlider("scale", "Scale", "", 1, 100, 4); Execution // Joel Besada // https://github.com/JoelBesada/JSManipulate // Plus PAEz touch here and there function getBilerpixel(l, x, y, w, h) { var corner...

JScript is slow, but you knew that ;)

This is a reply to Vlasta for this thread.... forum/2636 ...Im putting it here as to not pollute that thread. Got the feeling they wanted just script posts in there. Figured it was windows scripting and hoped aswell that installing IE 11 would speed...

Preview Image

Is there any way to get the preview to use an image that is only half, quarter, whatever, the size of the original image? Its just that then for the slow scripts you could still get a good idea of what its going to look like without waiting so long. ...

Kaleidoscope

You know what that is πŸ˜‰ Code Configuration Configuration.AddSlider("sides", "Sides", "", 3, 100, 7); Configuration.AddSlider("angle", "Angle", "", 0, 360, 0); Configuration.AddSlider("rotation", "Rotation", "", 0, 360, 0); Configuration.AddSlider(...
You know what would be awesome, if GetPixel could take float for x and y and bilinear interpolate....just so I dont have to add it to my scripts πŸ˜‰ Would help speed them up a little.

[Animation] Tweenable Blur

http://bit.ly/1aCqiQj Download the above link and drag the file onto a toolbar in Animation mode. It allows you to select 2 or more frames and then blur from one value to another across the selected frames. You can also select a Tween mode. For those...

[Animation] Tweenable Fade

http://bit.ly/1b5Dlbi Download the above link and drag the file onto a toolbar in Animation mode. It allows you to select 2 or more frames and then fade from one value to another across the selected frames. For each frame it times the alpha values fo...

Blur and Restore Alpha

Blur and Restore Alpha Blurs and image using gaussian blur and then restores the alpha values of the pixels to what they where before the blur. This is good for when you had a shape drawn on a transparent background that used anti-aliasing. The anti...

In Paint How do I remove a mask?

After Ive added a mask, how can I remove it? Same goes with selection.

Fatten Alpha

Flatten Alpha This will change any pixel that has an alpha above 0 to have an alpha of 255. This is useful for the Shape Burst script. One thing you can do is make a shape on a transparent background. Run the Shape Burst script. Everythings a little ...
If I have an Edit Box with an initial value of 1 and then when it pops up I change it to 0.5 when the script runs the value of Configuration.property will be 1. I can set the initial value to 1.000001 then it will appear as 1 in the config popup but it will be 1.00000001...etc in the script. Also if the initial value is 0.55 it will be in the script something like 0.5...