Skip to content

Instantly share code, notes, and snippets.

View MisterFixx's full-sized avatar
🦵
leg

Jordan Jones MisterFixx

🦵
leg
View GitHub Profile
@MisterFixx
MisterFixx / render.php
Last active August 29, 2015 14:08 — forked from Olical/render.php
<?php
function flip(&$img)
{
$size_x = imagesx($img);
$size_y = imagesy($img);
$temp = imagecreatetruecolor($size_x, $size_y);
$x = imagecopyresampled($temp, $img, 0, 0, ($size_x-1), 0, $size_x, $size_y, 0-$size_x, $size_y);
return $temp;
}