Skip to content

react library capable of particalizing images; particalize your image right away!

License

Notifications You must be signed in to change notification settings

alagiz/particalizor-3000

Repository files navigation

particalizor-3000

react library capable of particalizing images; particalize your image right away!

build status coverage status codacy quality status npm version license npm downloads

installation

yarn add particalizor-3000

live demo

components

moving picture

original particalized-3000
testImage particalizedImage
moving picture api

description

particalizes provided image

settings used to create the example image above

import React from "react";
import { MovingPicture } from "particalizor-3000";
import testImage from "./testImage.png";

export const MovingPictureApp: React.FC<IMovingPictureAppProps> = ({}) => {
  return (
    <MovingPicture
      imageSource={testImage}
      particleNumber={700}
      particleTraceWidth={2}
      particleLifeTime={7000}
      particleVelocity={1.3}
      directionChannel={"saturation"}
      hueChannel={"blue"}
    />
  );
}

api

property type required default acceptable values description
imageSource string yes -- valid image source source of the image,
either imported image (.png, .jpg),
either base64 representation (i.e. "data:image/jpeg;base64,/9j/4A..")
particleNumber number no 7000 > 0 number of particles
particleTraceWidth number no 1 > 0 width of a particle trace, essentially canvas lineWidth
particleLifeTime number no 700 > 0 lifetime of a particle
particleVelocity number no 1 > 0 velocity of particles
directionChannel string no "hue" "red","green",
"blue","hue",
"saturation","light"
enum of {"red","green","blue",
"hue","saturation","light"}
hueChannel string no "blue" "red","green"
,"blue","hue",
"saturation","light"
enum of {"red","green","blue",
"hue","saturation","light"}
reverseDirection boolean no false true,false reverse direction
reverseHue boolean no false true,false reverse hue
randomizeSettings* boolean no false true,false randomize properties that are not passed in

* not available yet

property value falls back to default if provided proprety value is not acceptable

example usage

import React from "react";
import { MovingPicture } from "particalizor-3000";
import testImage from "./testImage.png";

export const MovingPictureApp: React.FC<IMovingPictureAppProps> = ({}) => {
  return (
    <MovingPicture
      imageSource={testImage}
    />
  );
}

or

import React from "react";
import "./App.css";
import { MovingPicture } from "particalizor-3000";
import testImage from "./testImage.png";

function App() {
  return <MovingPicture imageSource={testImage} />;
}

export default App; 

particle vortex

particalized-3000
particalizedImage
particalizedImage
particle vortex api

description

creates randomized particalized image with vortexes

settings used to create first example image above

import React from "react";
import { ParticleVortex } from "particalizor-3000";

export const ParticleVortexApp: React.FC<IParticleVortexAppProps> = ({}) => {
  return (
    <ParticleVortex
      imageWidth={840}
      imageHeight={384}
      vortexNumber={3}
      particleTraceWidth={600}
      particleNumber={30}
      particleLifeTime={1100}
    />
  );
}

settings used to create second example image above

import React from "react";
import { ParticleVortex } from "particalizor-3000";

export const ParticleVortexApp: React.FC<IParticleVortexAppProps> = ({}) => {
  return (
    <ParticleVortex
      imageWidth={840}
      imageHeight={384}
      vortexNumber={7}
      particleTraceWidth={2}
      particleNumber={2400}
      particleLifeTime={100}
    />
  );
}

api

property type required default acceptable values description
vortexNumber number no 7 > 0 number of vortexes
imageWidth number no 400 > 0 width of the resulting image
imageHeight number no 400 > 0 height of the resulting image
particleNumber number no 7000 > 0 number of particles
particleTraceWidth number no 1 > 0 width of a particle trace, essentially canvas lineWidth
particleLifeTime number no 700 > 0 lifetime of a particle
backgroundColor string no "#777" valid color string background color, ie "red", "#333", "#333333"
randomizeSettings* boolean no false true,false randomize properties that are not passed in

* not available yet

property value falls back to default if provided proprety value is not acceptable

example usage

import React from "react";
import { ParticleVortex } from "particalizor-3000";

export const ParticleVortexApp: React.FC<IParticleVortexAppProps> = ({}) => {
  return (
    <ParticleVortex
      imageWidth={840}
      imageHeight={384}
      vortexNumber={7}
    />
  );
}

or

import React from "react";
import "./App.css";
import { ParticleVortex } from "particalizor-3000";
import testImage from "./testImage.png";

function App() {
  return <ParticleVortex imageWidth={840} imageHeight={384}/>;
}

export default App; 

license

MIT License

About

react library capable of particalizing images; particalize your image right away!

Resources

License

Stars

Watchers

Forks

Packages

No packages published