Skip to content

Instantly share code, notes, and snippets.

@shadowhand
Created July 2, 2009 17:54
Show Gist options
  • Save shadowhand/139611 to your computer and use it in GitHub Desktop.
Save shadowhand/139611 to your computer and use it in GitHub Desktop.
<?php
$watermark = Image::factory(DOCROOT.'upload/kohana.png')
->resize(200, 200);
$this->request->set_header('content-type', 'image/jpeg');
$this->request->response = Image::factory(DOCROOT.'upload/andyou.jpg')
->resize(800, 600)
->crop(500, 500)
->watermark($watermark, -1, -1, 80)
->render();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment