
Company News
Andrew Becherer Joins Socket as Chief Information Security Officer
Socket’s first CISO brings deep experience securing high-growth SaaS companies as open source supply chain threats accelerate.
fixture-images
Advanced tools
animated.GIF
animated.PNG
animated.WEBP
still.GIF
still.PNG
still.WEBP
still.JPG
still.JXR(JPEG-XR)
still.BMP
still.PSD
still.TIF
$ npm install fixture-images --save-dev
var animated= require('fixture-images').animated;
console.log(animated.gif);// [47,49,46,38,39,61,...]
$ bower install fixture-images --save-dev
<script src="/bower_components/fixture-images/all.min.js"></script>
<script>
var animated= fixtureImages.animated;
console.log(animated.gif);// [47,49,46,38,39,61,...]
</script>
$ npm install request --save-dev
var url= 'http://cdn.rawgit.com/59naga/fixture-images/master/animated.GIF';
var request= require('request');
request.get({url:url,encoding:null},function(error,response,buffer){
console.log(buffer);// [47,49,46,38,39,61,...]
});
<script>
var url= 'https://cdn.rawgit.com/59naga/fixture-images/master/animated.GIF';
var xhr= new XMLHttpRequest;
xhr.open('GET',url,true);
xhr.responseType= 'arraybuffer';
xhr.send();
xhr.onload= function(){
var binary= new Uint8Array(xhr.response);
var blob= new Blob([binary],{type:'image/gif'});
window.open(URL.createObjectURL(blob));
}
</script>
FAQs
Animated GIF/PNG/WEBP and Static GIF/PNG/WEBP/BMP/JPG/JXR/PSD/TIF
We found that fixture-images demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

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.

Company News
Socket’s first CISO brings deep experience securing high-growth SaaS companies as open source supply chain threats accelerate.

Company News
Replit is integrating Socket Firewall into its AI-powered development experience to help protect builders from malicious open source packages.

Security News
npm confirmed a tooling bug incorrectly marked several one-character packages as security holders and said it was working on a rollback.