Pen Settings

HTML

CSS

CSS Base

Vendor Prefixing

Add External Stylesheets/Pens

Any URLs added here will be added as <link>s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.

+ add another resource

JavaScript

Babel includes JSX processing.

Add External Scripts/Pens

Any URL's added here will be added as <script>s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.

+ add another resource

Packages

Add Packages

Search for and use JavaScript packages from npm here. By selecting a package, an import statement will be added to the top of the JavaScript editor for this package.

Behavior

Auto Save

If active, Pens will autosave every 30 seconds after being saved once.

Auto-Updating Preview

If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.

Format on Save

If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.

Editor Settings

Code Indentation

Want to change your Syntax Highlighting theme, Fonts and more?

Visit your global Editor Settings.

HTML

              
                <div></div>
<div></div>
              
            
!

CSS

              
                div {
  height: calc(50% - 4px);
  overflow: hidden;
}
div + div {
  margin-top: 8px;
}
canvas {
  width: 100%;
}
html, body {
  height: 100%;
  box-sizing: border-box;
}
body {
  margin: 0;
  padding: 8px;
}

              
            
!

JS

              
                // https://gammacv.com
const imgURL = 'https://picsum.photos/500/400';
const width = 500;
const heigth = 400;

// load image from URL or base64 string and store a result in input tensor
gm.imageTensorFromURL(imgURL, 'uint8', [heigth, width, 4], true).then((input) => {
 // use the image tensor as the input for the grayscale operation
 // operations return a compiled operation instance
 const operation = gm.grayscale(input);

 // create the tensor for operation output
 const output = gm.tensorFrom(operation);

 // then we need to create Session which will run created
 // graph using GPU power and read result to output tensor
 const sess = new gm.Session();
 // then you should init operation for current session
 sess.init(operation);
 // and finaly for visualize result we need create canvas
 const canvas = gm.canvasCreate(width, heigth);
 const inputCanvas = gm.canvasCreate(width, heigth);

 document.body.children[0].appendChild(canvas);
 document.body.children[1].appendChild(inputCanvas);
 sess.runOp(operation, 0, output);

 gm.canvasFromTensor(canvas, output);
 gm.canvasFromTensor(inputCanvas, input);
});

              
            
!
999px

Console