Feb 4 2009

PHP image manipulation class

Flattr this!

I am working on an litle photo album script and while working on it I found that there are a lot of image manipulation script, but non that are very clever or clear.

So I decided to write my own (which I thought was clear enough for me and fitted my purpouses). Here it is, free of use.

The settings in settings.php are the following:

<?php
/**
  * Path settings
  */
 define("document_root", "/Users/paulp/Sites/Photos/");
 define("web_root", document_root . "web/");
 /**
  * Image and thumb settings
  */
 define("thumbWidth", 			164);
 define("thumbHeight", 			122);
 define("imageWidth", 			1024);
 define("imageHeight", 			768);
?>

Let me know what you think! ;)

Cheers,
//Paul

Attached Files:


Feb 4 2009

Open tought… PHP RMT project?

Flattr this!

Well, the last few days I have had some thought around building an release management tool for PHP.

I have surfed around a bit (a few minutes) but didn’t really find anything.

My toughts are to build a tool that keeps track of the version of the product you are working on.
Together with an local script, such as ant one should be able to release the product and make it availeble to the public… as an tar.gz and/or .zip file.

From the web gui this should be doable as well… login into the admin center, add an project, add an SVN server, set the start version and make an release.