Socket
Socket
Sign inDemoInstall

imagetracerjs

Package Overview
Dependencies
0
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    imagetracerjs

raster image tracer and vectorizer, bitmap to SVG converter


Version published
Weekly downloads
14K
decreased by-24.75%
Maintainers
1
Install size
816 kB
Created
Weekly downloads
 

Readme

Source

imagetracerjs

alt Bitmap to Svg

Simple raster image tracer and vectorizer written in JavaScript.

by András Jankovics 2015, 2016

1.1.2

  • minor bugfixes
  • lookup based pathscan()

1.1.1

  • Bugfix: CSS3 RGBA output in SVG was technically incorrect (however supported by major browsers), so this is changed. More info

1.1.0

  • it works with Node.js (external library required to load image into an ImageData object)
  • export as AMD module / Node module / browser or worker variable
  • new syntax: ImageTracer.imageToTracedata(), no need to initialize
  • fixed options with hasOwnProperty: 0 values are not replaced with defaults, fixed polygons with coordinates x=0 or y=0
  • transparency support: alpha is not discarded now, it is given more weight in color quantization
  • new options.roundcoords : rounding coordinates to a given decimal place. This can reduce SVG length significantly (>20%) with minor loss of precision.
  • new options.desc : setting this to false will turn off path descriptions, reducing SVG length.
  • new options.viewbox : setting this to true will use viewBox instead of exact width and height
  • new options.colorsampling : color quantization will sample the colors now by default, can be turned off.
  • new options.blurradius : setting this to 1..5 will preprocess the image with a selective Gaussian blur with options.blurdelta treshold. This can filter noise and improve quality.
  • imagedataToTracedata() returns image width and height in tracedata
  • getsvgstring() needs now only tracedata and options as parameters
  • colorquantization() needs now only imgd and options as parameters
  • background field is removed from the results of color quantization
  • ESLint passed
  • test automation and simple statistics in imagetracer_test_automation.html

Using in the browser

Include the script:

<script src="imagetracer_v1.1.2.js"></script>

Then

// Loading smiley.png, tracing and calling alert callback on the SVG string result 
ImageTracer.imageToSVG( 'smiley.png', alert );

More examples:


// Almost the same with options, and the ImageTracer.appendSVGString callback will append the SVG
ImageTracer.imageToSVG( 'smiley.png', ImageTracer.appendSVGString, { ltres:0.1, qtres:1, scale:10 } );


// This appends the SVG to an element with id="svgcontainer"
ImageTracer.imageToSVG(
	'panda.png',
	function(svgstr){ ImageTracer.appendSVGString( svgstr, 'svgcontainer' ); },
	{ numberofcolors:4 }
);


// The helper function loadImage() loads an image to a canvas, then executing callback:
// appending the canvas to a div here.
ImageTracer.loadImage(
	'panda.png',
	function(canvas){ (document.getElementById('canvascontainer')).appendChild(canvas); }
);


// ImageData can be traced to an SVG string synchronously.
ImageTracer.loadImage(
	'smiley.png',
	function(canvas){
	
		// Getting ImageData from canvas with the helper function getImgdata().
	 	var imgd = ImageTracer.getImgdata( canvas );
	 	
	 	// Synchronous tracing to SVG string
	 	var svgstr = ImageTracer.imagedataToSVG( imgd, { scale:5 } );
	 
	 	// Appending SVG
	 	ImageTracer.appendSVGString( svgstr, 'svgcontainer' );
	 	
	}
);


// This will load an image, trace it when loaded, and execute callback on the tracedata:
// stringifying and alerting it here.
ImageTracer.imageToTracedata(
	'smiley.png',
	function(tracedata){ alert( JSON.stringify( tracedata ) ); },
	{ ltres:0.1, qtres:1, scale:10 }
);


// imagedataToTracedata() is very similar to the previous functions. This returns tracedata synchronously.
ImageTracer.loadImage(
		'smiley.png',
		function(canvas){ 
		
			// Getting ImageData from canvas with the helper function getImgdata().
			var imgd = ImageTracer.getImgdata(canvas);
			
			// Synchronous tracing to tracedata
			var tracedata = ImageTracer.imagedataToTracedata( imgd, { ltres:1, qtres:0.01, scale:10 } );
			
			alert( JSON.stringify( tracedata ) );
		}
);

Using with Node.js

See nodetest folder. Example:

"use strict";

var fs = require("fs");

var ImageTracer = require(__dirname +'/../imagetracer_v1.1.2');

// This example uses https://github.com/arian/pngjs 
// , but other libraries can be used to load an image file to an ImageData object.
var PNGReader = require(__dirname +'/PNGReader');

var file = __dirname + "/../testimages/1.png";

fs.readFile(file, function(err, bytes){
	if (err) throw err;

	var reader = new PNGReader(bytes);

	reader.parse(function(err, png){
		if (err) throw err;
		
		// creating an ImageData object
		var myImageData = { 'width':png.width, 'height':png.height, 'data':png.pixels };
		
		// tracing
		var options = { 'ltres':0.1 }; // optional
		var svgstring = ImageTracer.imagedataToSVG( myImageData, options );
		
		// writing to file
		fs.writeFile(__dirname+"/test.svg", svgstring, function(err) {
			if (err) throw err;
			console.log(__dirname+"/test.svg was saved!");
		});
		
	});// End of reader.parse()

});// End of fs.readFile()

Deterministic output

See choices for deterministic tracing

Main Functions

Function nameArgumentsReturnsRun type
imageToSVGimage_url /*string*/ , callback /*function*/ , options /*optional object*/Nothing, callback(svgstring) will be executedAsynchronous
imagedataToSVGimagedata /*object*/ , options /*optional object*/svgstring /*string*/Synchronous
imageToTracedataimage_url /*string*/ , callback /*function*/ , options /*optional object*/Nothing, callback(tracedata) will be executedAsynchronous
imagedataToTracedataimagedata /*object*/ , options /*optional object*/tracedata /*object*/Synchronous

imagedata is standard ImageData here, canvas is canvas .

Helper Functions
Function nameArgumentsReturnsRun type
appendSVGStringsvgstring /*string*/, parentid /*string*/Nothing, an SVG will be appended to the container div with id=parentid.Synchronous
loadImageurl /*string*/, callback /*function*/Nothing, loading an image from a URL, then executing callback(canvas)Asynchronous
getImgdatacanvas /*object*/imagedata /*object*/Synchronous

imagedata is standard ImageData here, canvas is canvas . There are more functions for advanced users, read the source if you are interested. :)

Options

Option nameDefault valueMeaning
ltres1Error treshold for straight lines.
qtres1Error treshold for quadratic splines.
pathomit8Edge node paths shorter than this will be discarded for noise reduction.
palNo default valueCustom palette, an array of color objects: [ {r:0,g:0,b:0,a:255}, ... ]
colorsamplingtrueEnable or disable color sampling.
numberofcolors16Number of colors to use on palette if pal object is not defined.
mincolorratio0.02Color quantization will randomize a color if fewer pixels than (total pixels*mincolorratio) has it.
colorquantcycles3Color quantization will be repeated this many times.
blurradius0Set this to 1..5 for selective Gaussian blur preprocessing.
blurdelta20RGBA delta treshold for selective Gaussian blur preprocessing.
scale1Every coordinate will be multiplied with this, to scale the SVG.
roundcoords1rounding coordinates to a given decimal place. 1 means rounded to 1 decimal place like 7.3 ; 3 means rounded to 3 places, like 7.356
viewboxfalseEnable or disable SVG viewBox.
desctrueEnable or disable SVG descriptions.
lcpr0Straight line control point radius, if this is greater than zero, small circles will be drawn in the SVG. Do not use this for big/complex images.
qcpr0Quadratic spline control point radius, if this is greater than zero, small circles and lines will be drawn in the SVG. Do not use this for big/complex images.
layercontaineridNo default valueEdge node layers can be visualized if a container div's id is defined.

The almost complete options object:

var options = {"ltres":1,"qtres":1,"pathomit":8,"colorsampling":true,"numberofcolors":16,"mincolorratio":0.02,"colorquantcycles":3,"scale":1,"simplifytolerance":0,"roundcoords":1,"lcpr":0,"qcpr":0,"desc":true,"viewbox":false,"blurradius":0,"blurdelta":20};

Adding custom palette. This will override numberofcolors.

options.pal = [{r:0,g:0,b:0,a:255}, {r:0,g:0,b:255,a:255}, {r:255,g:255,b:0,a:255}];

Process overview

See Process overview and Ideas for improvement

License

The Unlicense / PUBLIC DOMAIN

This is free and unencumbered software released into the public domain.

Anyone is free to copy, modify, publish, use, compile, sell, or distribute this software, either in source code form or as a compiled binary, for any purpose, commercial or non-commercial, and by any means.

In jurisdictions that recognize copyright laws, the author or authors of this software dedicate any and all copyright interest in the software to the public domain. We make this dedication for the benefit of the public at large and to the detriment of our heirs and successors. We intend this dedication to be an overt act of relinquishment in perpetuity of all present and future rights to this software under copyright law.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

For more information, please refer to http://unlicense.org

Keywords

FAQs

Last updated on 22 Sep 2016

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc