scijs / get-pixels

Reads an image into an ndarray
MIT License
543 stars 108 forks source link

Fixed #6 #23

Open 59naga opened 9 years ago

59naga commented 9 years ago

Before

getPixels('animated.gif?1430103876000',function(error,pixels){
  console.log(pixels.shape.length===3)// true
});

After

getPixels('animated.gif?1430103876000',function(error,pixels){
  console.log(pixels.shape.length===4)// true
});

Fixes #6.