Skip to content

Instantly share code, notes, and snippets.

View thomasRag's full-sized avatar

Thomas Ragot thomasRag

  • Anagraph
  • Montreal, QC, Canada
View GitHub Profile
@thomasRag
thomasRag / 00. tutorial.md
Last active September 3, 2015 16:17 — forked from maxivak/00. tutorial.md
Importing/Indexing database (MySQL or SQL Server) in Solr using Data Import Handler
<?php
$image = imagecreatefromjpeg($_GET['src']);
$filename = 'images/cropped_whatever.jpg';
$thumb_width = 200;
$thumb_height = 150;
$width = imagesx($image);
$height = imagesy($image);