Socket
Socket
Sign inDemoInstall

@loaders.gl/images

Package Overview
Dependencies
0
Maintainers
9
Versions
314
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

@loaders.gl/images


Version published
Maintainers
9
Install size
180 kB
Created

Package description

What is @loaders.gl/images?

@loaders.gl/images is a part of the loaders.gl suite, designed to handle image loading and processing. It provides utilities for loading, parsing, and manipulating image data in various formats.

What are @loaders.gl/images's main functionalities?

Loading Images

This feature allows you to load images from a URL or file. The `load` function from `@loaders.gl/core` is used in conjunction with `ImageLoader` from `@loaders.gl/images` to fetch and parse the image.

const { load } = require('@loaders.gl/core');
const { ImageLoader } = require('@loaders.gl/images');

async function loadImage(url) {
  const image = await load(url, ImageLoader);
  console.log(image);
}

loadImage('https://example.com/image.png');

Parsing Image Data

This feature allows you to parse raw image data from an ArrayBuffer. The `parse` function from `@loaders.gl/core` is used with `ImageLoader` to interpret the image data.

const { parse } = require('@loaders.gl/core');
const { ImageLoader } = require('@loaders.gl/images');

async function parseImageData(arrayBuffer) {
  const image = await parse(arrayBuffer, ImageLoader);
  console.log(image);
}

// Assuming arrayBuffer contains image data
parseImageData(arrayBuffer);

Image Manipulation

This feature allows you to manipulate image data after loading it. The `getImageData` function extracts image data that can be further processed or manipulated.

const { load } = require('@loaders.gl/core');
const { ImageLoader, getImageData } = require('@loaders.gl/images');

async function manipulateImage(url) {
  const image = await load(url, ImageLoader);
  const imageData = getImageData(image);
  console.log(imageData);
}

manipulateImage('https://example.com/image.png');

Other packages similar to @loaders.gl/images

Readme

Source

@loaders.gl/images

loaders.gl is a collection of framework independent 3D and geospatial parsers and encoders.

This module contains loader and writers for images that follow loaders.gl conventions and work under both node and browser.

For documentation please visit the website.

Keywords

FAQs

Last updated on 28 Jun 2019

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

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

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc