Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
tiff-to-png-client
Advanced tools
A library to convert tiff images to png from various type of files on the client side
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
This library is mainly developed to embed tiff files to your web browsers without any server side code.
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
Install "tiff-to-png-client" using npm, append "--save" to save it in your package.json
npm install tiff-to-png-client
import {
getPNGfromBlob,
getPNGfromFile,
getPNGfromURL,
} from "tiff-to-png-client";
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.
["https://pngurl_1", "https://pngurl_2", "https://pngurl_3"]
["https://pngurl_1"]
FAQs
A library to convert tiff images to png from various type of files on the client side
The npm package tiff-to-png-client receives a total of 36 weekly downloads. As such, tiff-to-png-client popularity was classified as not popular.
We found that tiff-to-png-client demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
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.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.