Welcome Guest, Not a member yet? Register   Sign In
Image Moo - Image manipulation library
#10

[eluser]Mat-Moo[/eluser]
Updated to 0.9.2, fixed a couple of minor bugs :-
Full details at
http://www.matmoo.com/codeigniter/image_moo/
-----------------------------------------------------------------------------
Any option that requires a colour can be sent as a html value,e.g. #rrggbb or as a set of values, e.g. array(rr,gg,bb)

border($width, $colour="#000")
Draws a frame $width pixels around the output in colour #000

border_3d($width, $rot=0, $opacity=30)
Creates a 3d border $width pixels wide around the output. Use rot 0..3 to change the highlight and lowlight position. $opacity changes the intensity of the border

filter($function, $arg1=NULL, $arg2=NULL, $arg3=NULL, $arg4=NULL)
As http://php.net/manual/en/function.imagefilter.php e.g. $this->image_moo->filter(IMG_FILTER_GRAYSCALE); to convert to greyscale

round($radius, $invert=FALSE, $corners(array(topleft, topright, bottomright, bottomleft))
Rounds the edges of the output by X pixels. Use invert to chop them out instead of rounding them. Corners is an array of 4 TRUE / FALSE values, allowing yo to control which corners get rounded.
-----------------------------------------------------------------------------
So to create a photo effect on your image
Code:
$this->load->library('image_moo');
    // single thumbnail
    $this->image_moo
        ->load("myfile.x")
        ->resize(200,200)
        ->border(10,"#fff")           // thick white border
        ->border(1,"#000")            // thin black border
        ->save("thumb.x");
    if ($this->image_moo->error) print $this->image_moo->display_errors();

So these new features allow you to make your thumbs a bit more snazzy.

Still to do :-
Fix the watermark text when angle is used
Add shadow facility
Add reflection facility *maybe*

Open to ideas of other things you might want to do in this library!


Messages In This Thread
Image Moo - Image manipulation library - by El Forum - 07-20-2010, 08:10 AM
Image Moo - Image manipulation library - by El Forum - 07-20-2010, 08:12 AM
Image Moo - Image manipulation library - by El Forum - 07-24-2010, 04:01 PM
Image Moo - Image manipulation library - by El Forum - 07-24-2010, 04:23 PM
Image Moo - Image manipulation library - by El Forum - 07-25-2010, 01:09 AM
Image Moo - Image manipulation library - by El Forum - 07-25-2010, 01:28 AM
Image Moo - Image manipulation library - by El Forum - 07-25-2010, 07:54 PM
Image Moo - Image manipulation library - by El Forum - 07-26-2010, 02:09 AM
Image Moo - Image manipulation library - by El Forum - 07-26-2010, 04:32 AM
Image Moo - Image manipulation library - by El Forum - 07-27-2010, 04:06 PM
Image Moo - Image manipulation library - by El Forum - 07-29-2010, 11:21 AM
Image Moo - Image manipulation library - by El Forum - 07-29-2010, 12:19 PM
Image Moo - Image manipulation library - by El Forum - 08-26-2010, 10:08 AM
Image Moo - Image manipulation library - by El Forum - 09-25-2010, 01:55 AM
Image Moo - Image manipulation library - by El Forum - 09-25-2010, 03:57 AM
Image Moo - Image manipulation library - by El Forum - 09-25-2010, 04:59 AM
Image Moo - Image manipulation library - by El Forum - 09-25-2010, 05:08 AM
Image Moo - Image manipulation library - by El Forum - 09-25-2010, 06:35 AM
Image Moo - Image manipulation library - by El Forum - 09-25-2010, 09:00 AM
Image Moo - Image manipulation library - by El Forum - 09-25-2010, 09:10 PM
Image Moo - Image manipulation library - by El Forum - 09-28-2010, 03:20 PM
Image Moo - Image manipulation library - by El Forum - 10-01-2010, 06:12 AM
Image Moo - Image manipulation library - by El Forum - 10-04-2010, 07:59 AM
Image Moo - Image manipulation library - by El Forum - 10-04-2010, 08:05 AM
Image Moo - Image manipulation library - by El Forum - 10-04-2010, 08:16 AM
Image Moo - Image manipulation library - by El Forum - 10-04-2010, 08:18 AM
Image Moo - Image manipulation library - by El Forum - 10-04-2010, 08:26 AM
Image Moo - Image manipulation library - by El Forum - 10-05-2010, 07:08 AM
Image Moo - Image manipulation library - by El Forum - 10-05-2010, 07:14 AM
Image Moo - Image manipulation library - by El Forum - 12-10-2010, 01:26 PM
Image Moo - Image manipulation library - by El Forum - 12-13-2010, 06:30 AM
Image Moo - Image manipulation library - by El Forum - 12-13-2010, 08:18 AM
Image Moo - Image manipulation library - by El Forum - 12-13-2010, 08:20 AM
Image Moo - Image manipulation library - by El Forum - 12-13-2010, 09:42 AM
Image Moo - Image manipulation library - by El Forum - 12-13-2010, 10:08 AM
Image Moo - Image manipulation library - by El Forum - 12-13-2010, 10:13 AM
Image Moo - Image manipulation library - by El Forum - 12-13-2010, 10:39 AM
Image Moo - Image manipulation library - by El Forum - 12-13-2010, 12:19 PM
Image Moo - Image manipulation library - by El Forum - 01-25-2011, 12:23 AM
Image Moo - Image manipulation library - by El Forum - 04-05-2011, 03:15 AM
Image Moo - Image manipulation library - by El Forum - 04-05-2011, 12:26 PM
Image Moo - Image manipulation library - by El Forum - 04-13-2011, 11:23 PM
Image Moo - Image manipulation library - by El Forum - 04-14-2011, 02:51 PM
Image Moo - Image manipulation library - by El Forum - 04-14-2011, 03:28 PM
Image Moo - Image manipulation library - by El Forum - 04-27-2011, 08:33 AM
Image Moo - Image manipulation library - by El Forum - 06-26-2011, 07:14 PM
Image Moo - Image manipulation library - by El Forum - 06-27-2011, 02:34 AM
Image Moo - Image manipulation library - by El Forum - 06-27-2011, 04:16 PM
Image Moo - Image manipulation library - by El Forum - 06-27-2011, 04:33 PM
Image Moo - Image manipulation library - by El Forum - 06-27-2011, 04:39 PM
Image Moo - Image manipulation library - by El Forum - 06-27-2011, 08:24 PM
Image Moo - Image manipulation library - by El Forum - 06-28-2011, 01:55 AM
Image Moo - Image manipulation library - by El Forum - 07-06-2011, 05:35 PM
Image Moo - Image manipulation library - by El Forum - 07-07-2011, 12:36 AM
Image Moo - Image manipulation library - by El Forum - 07-07-2011, 08:09 AM
Image Moo - Image manipulation library - by El Forum - 08-08-2011, 05:13 PM
Image Moo - Image manipulation library - by El Forum - 08-09-2011, 12:33 AM
Image Moo - Image manipulation library - by El Forum - 08-09-2011, 09:54 PM
Image Moo - Image manipulation library - by El Forum - 02-29-2012, 12:56 PM
Image Moo - Image manipulation library - by El Forum - 02-29-2012, 01:20 PM
Image Moo - Image manipulation library - by El Forum - 02-29-2012, 01:30 PM
Image Moo - Image manipulation library - by El Forum - 02-29-2012, 01:40 PM
Image Moo - Image manipulation library - by El Forum - 03-05-2012, 10:17 AM
Image Moo - Image manipulation library - by El Forum - 03-21-2012, 09:29 AM
Image Moo - Image manipulation library - by El Forum - 03-23-2012, 05:34 PM
Image Moo - Image manipulation library - by El Forum - 03-26-2012, 06:58 AM
Image Moo - Image manipulation library - by El Forum - 03-26-2012, 11:57 PM
Image Moo - Image manipulation library - by El Forum - 05-26-2012, 12:46 AM
Image Moo - Image manipulation library - by El Forum - 08-23-2012, 11:22 AM
Image Moo - Image manipulation library - by El Forum - 08-25-2012, 11:19 AM
Image Moo - Image manipulation library - by El Forum - 10-11-2012, 02:30 PM
Image Moo - Image manipulation library - by El Forum - 10-17-2012, 01:05 PM
Image Moo - Image manipulation library - by El Forum - 10-18-2012, 08:44 AM
Image Moo - Image manipulation library - by El Forum - 10-24-2012, 11:17 AM
Image Moo - Image manipulation library - by El Forum - 01-30-2013, 06:43 PM
Image Moo - Image manipulation library - by El Forum - 04-01-2013, 07:25 PM
Image Moo - Image manipulation library - by El Forum - 04-04-2013, 02:37 AM
Image Moo - Image manipulation library - by El Forum - 04-09-2013, 01:39 PM
Image Moo - Image manipulation library - by El Forum - 04-10-2013, 03:48 AM
Image Moo - Image manipulation library - by El Forum - 05-07-2013, 07:31 PM
Image Moo - Image manipulation library - by El Forum - 08-03-2013, 05:01 AM
Image Moo - Image manipulation library - by El Forum - 10-07-2013, 02:19 PM



Theme © iAndrew 2016 - Forum software by © MyBB