Skip to content

Instantly share code, notes, and snippets.

View Djuki's full-sized avatar

Ivan Đurđevac Djuki

  • Freelancer
  • Serbia
  • 06:43 (UTC -12:00)
  • X @Djuki
View GitHub Profile
@Djuki
Djuki / cleanup.php
Created May 15, 2018 13:14 — forked from ivanhoe011/cleanup.php
Proper way to remove all metadata from an image
<?php
$img = new Imagick($img);
// code by Max Eremin http://php.net/manual/en/imagick.stripimage.php#120380
// we need to keep the ICC profiles
$profiles = $img->getImageProfiles('icc', true);
// but remove everything else
@Djuki
Djuki / 0_reuse_code.js
Created July 7, 2014 09:23
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console