Socket
Book a DemoInstallSign in
Socket

locator-image-utility

Package Overview
Dependencies
Maintainers
5
Versions
20
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

locator-image-utility

Utility module for handling all image related operation

latest
Source
npmnpm
Version
6.1.0
Version published
Maintainers
5
Created
Source

locator-image-utility

Utility module for providing useful operations regarding handling images.

Install

include it in your project

npm install locator-image-utility

Usage

Regex

// access various regexes
var regex = require('locator-image-utility').regex

regex.imageContentType.match('image/png') // or jpg/jpeg

regex.imageExtension.match('png') //or jpg/jpeg

regex.routePrefix.match('/api/v1/trips/') // everything within four slashes

Validation

// get the validation
var validation = require('locator-image-utility').validation

    // route with image payload
    ...
    payload: validation.basicImageSchema,
    ...

Image Processing

// create a image processing unit
var imageUtil = require('locator-image-utility').image

    // route with image payload
    ...
    var imageProcessor = imageUtil.processor(request); // request must be a request object from hapi
    
    // will return a useful object containing information about the file
    file = imageProcessor.createFileInformation(nameOfFile);
    
    // will return an object used for saving the picture to couchdb
    imageProcessor.getAttachmentData(file.filename); 
    
    // will crop the stream according to the values in the **request**. The parameters are used for resizing
    stream = imageProcessor.createCroppedStream(100, 100); 
    
    stream.pipe(someStreamFromDatabase);
    ...

Sizes

The following sizes are used to request a picture with the query ```?size=````

 - max:
    size: { x: 1400, y: 819}
    name: 'max'
 - mid :
    size: {x: 700, y: 410}
    name: 'mid'

 - small:
    size: {x: 400,y: 234}
    name: 'small'

 - user:
    size: {x: 150,y: 150}
    name: 'user'

 - userThumb:
    size: {x: 50,y: 50},
    name: 'userThumb'

Keywords

regex

FAQs

Package last updated on 21 Aug 2015

Did you know?

Socket

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

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.