New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

tiff-to-png-client

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

tiff-to-png-client

A library to convert tiff images to png from various type of files on the client side

  • 1.0.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
40
increased by166.67%
Maintainers
1
Weekly downloads
 
Created
Source

TIFF to PNG Client

A group of functions that converts tiff or tif files to PNG on client side, it can be single image or a multi image tiff file

Purpose

This library is mainly developed to embed tiff files to your web browsers without any server side code.

How it works

Each function takes an input and returns an array of URLs, if the tiff file is Multipage then the response will be an array of each page covnerted into PNG. see the examples below

Getting Started

Installation

Install "tiff-to-png-client" using npm, append "--save" to save it in your package.json

npm install tiff-to-png-client

Import the functions

import {
  getPNGfromBlob,
  getPNGfromFile,
  getPNGfromURL,
} from "tiff-to-png-client";

Usage

const convertFromFile = async (file) => {
  const images = await getPNGfromFile(file);
  return images;
};

const convertFromBlob = async (blob) => {
  const images = await getPNGfromBlob(blob);
  return images;
};

const convertFromUrl = async (imageUrl) => {
  const images = await getPNGfromUrl(imageUrl);
  return images;
};

in the above examples each function receives a file in different formats and return an array of URLs which are converted into png and ready to be used in image tag.

Function response

  1. For Multipage tiff => ["https://pngurl_1", "https://pngurl_2", "https://pngurl_3"]
  2. For Singlepage tiff => ["https://pngurl_1"]

Keywords

FAQs

Package last updated on 02 May 2024

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc