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

easel-gl

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

easel-gl

This is the easeljs-0.8.2 "in-progress" build.

  • 1.0.6
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

Easeljs-Next

This is the easeljs-0.8.2 "in-progress" build.

The big new feature is the StageGL. You can find documentation with troubleshooting in a CreateJS blog post.

***Note vectored objects do not work with StageGL only bitmap images.

Install

npm install easel-gl --save

Angular

import { Component, AfterViewInit } from '@angular/core';
import * as easelGL from 'easel-gl';

@Component({
  selector: 'app-root',
  template: '<canvas width="500" height=500 id="demoCanvas"></canvas>'
})
export class AppComponent implements AfterViewInit {

  ngAfterViewInit() {
    var stage = new easelGL.StageGL("demoCanvas");
    var bitmap = new easelGL.Bitmap("assets/default-user.jpg");
    bitmap.x = 50;
    bitmap.y = 50;
    stage.addChild(bitmap);
    stage.update();
  }

}

Ionic

import {Component} from '@angular/core';
import * as easelGL from 'easel-gl';

@Component({
  selector: 'project-name-app',
  template: `
    <ion-content padding>
     <canvas width="500" height=500 id="demoCanvas"></canvas>
    </ion-content>
  `
})

export class MyApp {

  ionViewDidEnter() {
    var stage = new easelGL.StageGL("demoCanvas");
    var bitmap = new easelGL.Bitmap("./assets/your-image.jpg");
    bitmap.x = 50;
    bitmap.y = 50;
    stage.addChild(bitmap);
    stage.update();
  }

  constructor(){
  }
}

Keywords

FAQs

Package last updated on 13 Jun 2017

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