2.3.0-beta.2 • Published 1 year ago

blobs v2.3.0-beta.2

Weekly downloads
734
License
MIT
Repository
github
Last release
1 year ago

The legacy API exists to preserve compatibility for users importing the package using a script tag. Because unpkg.com serves the latest version of the package if no version is specified, I can't break backwards compatibility, even with a major release. This API also preserves a few features that could potentially still be useful to some users (guide rendering and editable svg).


Install

// $ npm install blobs
const blobs = require("blobs");
<script src="https://unpkg.com/blobs"></script>

Usage

const svg = blobs(options);

npm.ionpm.io npm.io

Options are not sanitized. Never trust raw user-submitted values in the options.

Options

Required

NameTypeDescription
sizenumberBounding box dimensions (in pixels)
complexitynumberBlob complexity (number of points)
contrastnumberBlob contrast (randomness of point position)

Optional

NameTypeDefaultDescription
colorstring?"none"Fill color
strokeobject?...Stroke options
stroke.colorstring"none"Stroke color
stroke.widthnumber0Stroke width (in pixels)
seedstring?randomValue to seed random number generator
guidesboolean?falseRender points, handles and stroke

Either stroke or color must be defined.

Guides will use stroke color and width if defined. Otherwise, they default to black stroke with width of 1.

Example Options Object
const options = {
    size: 600,
    complexity: 0.2,
    contrast: 0.4,
    color: "#ec576b",
    stroke: {
        width: 0,
        color: "black",
    },
    guides: false,
    seed: "1234",
};

Advanced

If you need to edit the output svg for your use case, blobs also allows for editable output.

const editableSvg = blobs.editable(options);

The output of this function is a data structure that represents a nested svg document. This structure can be changed and rendered to a string using its render function.

editableSvg.attributes.width = 1000;
const svg = editableSvg.render();

New elements can be added anywhere in the hierarchy.

const xmlChild = blobs.xml("path");
xmlChild.attributes.stroke = "red";
// ...
editableSvg.children.push(xmlChild);
2.3.0-beta.0

1 year ago

2.3.0-beta.1

1 year ago

2.3.0-beta.2

1 year ago

2.2.1-beta.1

3 years ago

2.2.1-beta.0

3 years ago

2.2.0

3 years ago

2.1.0

4 years ago

2.1.0-beta.1

4 years ago

2.0.1

4 years ago

2.0.0

4 years ago

2.0.0-beta.1

4 years ago

2.0.0-beta.0

4 years ago

1.1.0-alt.0

4 years ago

1.1.0

5 years ago

1.1.0-beta.0

5 years ago

1.0.5

5 years ago

1.0.4

5 years ago

1.0.4-beta.0

5 years ago

1.0.3

5 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago