Skip to content

Commit

Permalink
Merge pull request #9 from Dafrok/patch-1
Browse files Browse the repository at this point in the history
fix: Incorrect class name in introduction.
  • Loading branch information
jtlapp committed Jul 21, 2019
2 parents 944a481 + a9ab89a commit 2e47188
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -154,7 +154,7 @@ And you can construct a Jimp instance from a GifFrame image as follows:
```js
const { BitmapImage, GifFrame } = require('gifwrap');
const Jimp = require('jimp');
const f = new Frame(200, 100, 0xFFFFFFFF);
const f = new GifFrame(200, 100, 0xFFFFFFFF);

// create a Jimp containing a clone of the frame bitmap
const jCopied = new Jimp(1, 1, 0); // any Jimp
Expand Down

0 comments on commit 2e47188

Please sign in to comment.