UNPKG
sharpvg
Version:
latest (0.5.2)
0.5.2
0.5.1
0.5.0
0.4.3
0.4.2
0.4.1
0.4.0
0.3.2
0.3.1
0.3.0
0.2.0
0.1.2
0.1.1
0.1.0
Converts bitmaps to beautifully pixelated SVGs
github.com/brainshave/sharpvg
brainshave/sharpvg
sharpvg
/
lib
/
web.js
11 lines
(7 loc)
•
182 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
"use strict"
;
var
split =
require
(
"../split"
);
var
svg =
require
(
"../svg"
);
module
.
exports
= process;
function
process
(
rgba_data, w, h
) {
return
svg
(
split
(rgba_data, w, h)); }