Socket
Socket
Sign inDemoInstall

aspecter

Package Overview
Dependencies
0
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    aspecter

A utility module for Node & Browser that calculates aspect ratio and decimal fraction based on width and height and alongside provides normalized aspect.


Version published
Weekly downloads
3
Maintainers
1
Install size
8.58 kB
Created
Weekly downloads
 

Readme

Source

Aspecter

A utility module for Node & Browser that calculates aspect ratio and decimal fraction based on width and height and alongside provides normalized aspect.

The normalizedAspect result contains information for intended aspect ratio of that resolution. Many film/video creators do rendering at some weird resolutions, so normalized aspect will be the intended choice.


Installation (pick one)

  • npm i aspecter
  • yarn add aspecter

Usage

You may hard-code width/height or grab it from some source. (e.g. video, image) If you have some weird resolution, normalizedAspect should be what you're actually looking for.


TypeScript

import { aspecter } from 'aspecter'

const aspecterResult = aspecter(1280, 536)

Node

const { aspecter } = require('aspecter')

const aspecterResult = aspecter(1280, 536)

Browser

<!-- PENDING CDN SUBMISSIONS -->
<script src="path/to/aspecter.js"></script>
<script>
  const aspecterResult = aspecter(1280, 536)
</script>

Output

Same resolution was used in all examples above, so the result will be the same.

// -- console.log output --
{
  resolution: [1280, 536],
  originalAspect: {
    ratio: [160, 67],
    decimal: 2.38
  },
  normalizedAspect: {
    ratio: [21, 9],
    decimal: 2.33
  }
}

Keywords

FAQs

Last updated on 03 Oct 2022

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