npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

vue-image-diff

v1.0.6

Published

vue component for multiple image diff

Downloads

110

Readme

vue-image-diff

vue component for multiple image comparison. multiple images can be panned and scaled simultaneously and compared by pixel-wise. currently supported only 8bit jpg and png format.

Examples

Web-App: https://github.com/whwnsdlr1/image-diff jsfiddle1 - using web image url: https://jsfiddle.net/whwnsdlr1/xgz21e95/ jsfiddle2 - diff blur images: https://jsfiddle.net/whwnsdlr1/84bkq2hy/ jsfiddle3 - using input event: https://jsfiddle.net/whwnsdlr1/38zhbtm1/

Usage

install

npm i vue-image-diff

how to include component

in Vue Project

<template>
...
<vue-image-diff :data="data" :options="options" :options-tool-bar="optionsToolBar" />
...
</template>
<script>
import vueImageDiff from 'vue-image-diff'
export default {
  ...
  components: {
    'vue-image-diff': vueImageDiff
  }
  ...
}
</script>

in html

<body>
<script src="vue.js"></script><!-- include vue.js first! -->
<script src="VueImageDiff.js"></script>
...
<div class="container">
  <vue-image-diff :data=data :options=options :options-tool-bar=optionsToolBar />
</div>
...
<script>
new Vue({
  el: '.container',
  components: {
    'vue-image-diff': vueImageDiff
  },
  data: {
    return {
      data: [],
      options: {}
    }
  }
})
</script>
</body>

props

data

An array of objects that hold image information.

data = [
  {
    name: 'korea Mountains', // String: text to show overlay region
    blob: blob, // Blob: ImageBlob to show
    ext: 'jpg' // String: 'jpg' or 'png'
    params: {author: 'fxgsell'}, // Object, (optional): default value is {}. text to show overlay region
    id: id // String, (optional): default value is created by uuid4(). unique id 
  }
]

options

An object that gives information about the initial state of the component.

options = {
  coord: {
    x: 0,
    // Number, (optional): default value is 0. coordinate x
    y: 0
    // Number, (optional): default value is 0. coordinate y
  },
  zoom: 1,
  /* Number, (optional): default value is calculate by windows. zoom, scale value.
    1 is original scale */
  voi: {
    windowCenter: 127,
    // Number, (optional): default value is 127. range (0, 255]. adjust brightness
    windowWidth: 256
    // Number, (optional): default value is 256. range (1, 256]. adjust contrast
  },
  predefinedImageSize: {
    width: undefined,
    /* Number or undefined, (optional): default value in undefined. width to be resized.
      if not set, other images are resized based on the first image size. */
    height: undefined
    /* Number or undefined, (optional): default value in undefined. height to be resized.
     if not set, other images are resized based on the first image size. */
  },
  diff: {
    activate: false,
    // Bool, (optional): default value is false. flag to show diff ovelary
    reference: {
      id: undefined,
      /* String or undefined, (optional): default value is undefined. base image to diff.
        if not set, it is selected as the first image. */
    },
    tolerance: 1,
    /* Number, (optional): default value is 1. range [1, 441].
      if difference value(Mean Square Error) is greater than or equal tolerance,
      pixel is set difference-tag. opposite, set same-tag less than tolerance. */
    opacity: 0.7,
    // Number, (optional): default value is 0.7. range (0, 1). opacity of diff overlay
    colors: {
      same: new Uint8ClampedArray([0, 0, 255]),
      // Array, (optional): default value is [0, 0, 255]. color rgb of same-tag pixel
      diff: new Uint8ClampedArray([255, 0, 0])
      // Array, (optional): default value is [0, 0, 255]. color rgb of diff-tag pixel
    }
  },
  style: {
    borderWidth: 1,
    // Number, (optional): default value is [1, infty). border width between frames.
    borderColor: new Uint8ClampedArray([255, 0, 0]),
    // Array, (optional): default value is [255, 0, 0]. color rgb of border
    showOverlayText: true,
    // Bool, (optional): default value is true. flag to show overlay text
    frameRowCount: 3
    /* Number or undefined, (optional): default value is undefined. range [1, infty).
      frame row count. if not set, calcuate by data length. */
  }
}

tolerance: tolerance

optionsToolBar

An object that gives information about the initial state of the component toolbar.

optToolBar = {
  show: true, // Bool, (optional)
  pan: {
    show: true, // Bool, (optional)
    disabled: false // Bool, (optional)
  },
  zoom: {
    show: true, // Bool, (optional)
    disabled: false // Bool, (optional)
  },
  diff: {
    show: true, // Bool, (optional)
    ref: {
      show: true // Bool, (optional)
    },
    tolerance: {
      show: true // Bool, (optional)
    }
  }
}

API

  • openControlPanel: open Control panel.
  • resetState: reset to initial state.
  • setState: set new state.
  • getState: get current state.

event

  • onstatechange: vue-event raised when state change with state object. you can catch like this
<vue-image-diff ... @onstatechange="listener" ... />

Control

  • left mouse & touch drag - panning
  • mouse wheel & pinch to zoom - zoom in / out
  • mouse doubleclick - change reference image for diff
  • right mouse drag - adjust brightness and contrast

Browser support - (tested)

  • Google Chrome 77+
  • Google Chrome 77+ on Android 9+
  • Mozilla FireFox 68+

Third-party libraries

Dependencies

Dev-Dependencies

  • @vue/cli-plugin-babel
  • @vue/cli-plugin-eslint
  • @vue/cli-service
  • babel-eslint
  • eslint
  • eslint-plugin-vue
  • vue-template-compiler

TO DO

  • support tiff, bmp and 16bit png format.
  • reduce library size.
  • add SSIM