Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@rarebearsoft/marvinj

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@rarebearsoft/marvinj

Pure Java cross-platform image processing framework that provides features for image and video frame processing, multi-threading image processing, GUI integration, extensibility via plug-ins, unit text automation among other things.

  • 1.0.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
27
increased by68.75%
Maintainers
1
Weekly downloads
 
Created
Source

MarvinJ TypeScript-compatible MarvinImage class

Previous versions of this library will throw errors when attempting to compile since the MarvinImage class had no constructor. Now you can import it and use it in Angular/Ionic projects with ease.

npm i @rarebearsoft/marvinj

MarvinJ

MarvinJ was created to be the Javascript version of Marvin Image Processing Framework aiming to provide the same features in the web, server and mobile platforms powered by Javascript.

If you are not familiar with Marvin Framework and want to play with MarvinJ, don't worry. The rest of this article shows the basic image processing features of MarvinJ using JSFiddle snippets that you can make your own version and play with it.

Image Loading

In the case of MarvinJ we load images from URLs and usually use a HTML5 canvas for displaying processed images.

import MarvinImage from '@rarebearsoft/marvinj';

let canvas = document.getElementById("canvas"),
	image = new MarvinImage();

image.load("https://i.imgur.com/4O8VFQY.jpg", () =>{
   image.draw(canvas);
});

Continue Reading:

"Playing with image processing in Javascript using MarvinJ 1.0 (JSFiddle Examples)"

http://marvinj.org/en/releases/marvinj_1.0.html

Keywords

FAQs

Package last updated on 17 Apr 2022

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