Browsing projects by Tag(s)

Select a tag to browse associated projects and drill deeper into the tag cloud.

Showing page 2 of 6

Lightweight image gallery written in PHP. Won't narc you out.

5.0
 
  0 reviews  |  1 user  |  3,787 lines of code  |  2 current contributors  |  Analyzed almost 5 years ago
 
 

The FidoCad/FidoCadJ format is a way to store technical drawings in a very compact text easy to embed in an Usenet or forum messages. FidoReadPHP is a reader written in PHP able to convert on the fly the drawings and show them as images. This may be very useful for those webmasters wanting to ... [More] include FidoCadJ drawings in their web sites by converting them on the fly on the servers. [Less]

5.0
 
  0 reviews  |  1 user  |  1,755 lines of code  |  1 current contributor  |  Analyzed 3 days ago
 
 

Isopix is a Isometric Image Generation engine, coded in PHP. It allows dynamic generation of 'Isometric' images using the PHP-GD library. Isopix can generate isometric and diametric images, but is configured by default to produce diametric. (There is no real difference...) Isopix is ... [More] released under a GNU General Public Licence (v2.0) and is currently maintained by Peter Corcoran (DrewMOO) and David Kendal (davidpk212). With help from Joe Love (joe.love) and Figlesquidge. Isopix was first released on the 1st of January 2007, and is currently in BETA. The downloads section is not actively maintained at the moment, but is periodically updated. For the latest version, please see the SVN. - Enjoy - [Less]

5.0
 
  0 reviews  |  1 user  |  1,052 lines of code  |  0 current contributors  |  Analyzed 3 days ago
 
 

FreePHPBlogSoftware is free blogging software powered by PHP scripting and a MySQL database. The software is released under the GPL license. The software is feature loaded, very easy to install, simple to customize, and a breeze to use!

5.0
 
  0 reviews  |  1 user  |  0 current contributors
 
 

Image manipulation library for PHP 5.3 inspired by Python's PIL and other image libraries.

0
 
  0 reviews  |  1 user  |  25,814 lines of code  |  18 current contributors  |  Analyzed 5 days ago
 
 

This is a one stop, free, open source shoutbox system developed in PHP using the GD library to render a shoutbox as an image. The primary use if for forum signatures so people can leave their mark, but it can be used wherever you can use an image. Upcoming releasesCodename 'MNAH'Secret ... [More] things! Changelogv1.0 Release Candidate 5 (Codename 'Holy Cross')Better, full, time/date stamps Guid tags on the RSS History log Meta data Spell check everything New License Updated style Text colour editable Neater post.php Neater general source Tougher security Valid XHTML and RSS Neater RSS layout Commented pretty much everything Logo Updated credits Fixed sanitiser Advertisement images Better manual Bug fixes Shadowing on text v0.5.3Minor bug fixes v0.5.1Bug fixes Finished admin feature Better validation Back compatible with v0.5 v0.5Faster, more efficient code Admin panel Easy password management Easy post editing Time stamps Image positioning RSS feed items Bug fixes Auto chmod Tidy source Tighter security Auto installer / Easy install More download options Total re-write of the swear word filter RSS feed generated from the posts Code commented fully Frame killer added Updated look Updated error reporting More function for modders to play with v0.4zSmaller, more efficient code Better security Updated edit script v0.4gMore modularity Updated security Couple of code fixes Shoutbox image now fully scalable Updated swear word filter v0.4bIncreased username protection Post editor Code optimisation Increased overall security v0.3bUsername protection Error system updated Swear filter separated Design adjustment Input limiting v0.2bNo input bugfix Error message system started v0.1bReleased [Less]

0
 
  0 reviews  |  0 users  |  0 current contributors
 
 

Wordpress Captcha Plugin for User Registration and Comments 06.15.2007 - ReleaseCapCC Version 1.0 is released! :)

0
 
  0 reviews  |  0 users  |  0 current contributors  |  Analyzed 3 days ago
 
 

Uses PHP and GD to generate an image displaying the current conditions and temperature in an area. Supports zip codes and weather station codes, such as USOR0304.

0
 
  0 reviews  |  0 users  |  0 current contributors
  php gd
 
 

PHP ImagePHP Image is an image class framework to help create images with PHP and GD2. Pretty much any common task is achievable through the use of simple plugins. The code is PHP 5 only, it is extensively unit tested, and it's completely free. A simple thumbnail exampleCreating a thumbnail of ... [More] an image is very easy indeed. $image = new Image("image.jpg"); $image->attach(new image_fx_resize(200)); $image->imagePng();A simple CAPTCHA exampleCreating a captcha is also straightforward. $image = new Image(); $image->createImageTrueColor(206,96,"FF0000"); $captcha = new image_draw_captcha("captcha"); $captcha->addTTFFont("fonts/arial.ttf"); $image->attach($captcha); $image->imagePng(); [Less]

0
 
  0 reviews  |  0 users  |  0 current contributors  |  Analyzed 8 days ago
 
 

Kohana PHP has an image library that provides tools to manipulate an image and then save it to a desired location. DynamicImage is designed to deliver an existing image stored on the server to the client at any size, using one of three standard formats. The resulting image is not effecting the ... [More] source, this library dynamically alters the image and delivers a new modified copy - the source remains untouched. This library is designed to plug into Kohana PHP as a module, but you could use the library independently without the integrated controller. KDynamicImage UseUsing clean URLs (recommended)To access images with KDynamicImage using URL's without GET arguments, use the following syntax to load an image without modification : http:///dynamicimage////. To augment the resource, insert a string formatted correctly between the file name and extention, separated by '.' so the full path still looks valid with a proper extension. Note : The extension must be correct to the image resource, not the format you wish to receive the file in. w100px output width in pixels, in this case 100px h140px output height in pixels, in this case 140px mrwidth maintain ratio based on width setting, replace 'width' with 'height' for reverse fpng output the file as a png, replace 'png' with 'jpg' or 'gif' for JPEG and GIF formats respectively mt1 maintain existing transparency. Omit this argument to not maintain transparency cr1 Crop ratio for the image width / height. A standard widescreen image has a crop ratio of 1.778 ( 16:9 ), where the width is 1.778 times the height. To use decimal values, ammend the decimal point with an underscore. bkF2C14F background colour for transparent images in HEX (without #) defaults to FFFFFF optional To use this within the URL, use the following syntax : http:///dynamicimage////.DiSw100px-h150px-mrwidth-fpng-mt1-cr0_5-bkF2C14F. Using clean URLs can help with local caching within the web browser and ISPs. KDynamicImage can be processor intensive if you are serving a lot of images to a lot of clients simultaneously. Using clean URLs will help force browsers to cache the resource. Using dynamic GET variablesTo access images with KDynamicImage using the GET method, use the following syntax to load an image without modification : http:///dynamicimage/?file=/// Using the built in controller you can add additional arguments to the GET request to augment the original resource : width output width in pixels (don't add px to value) optional, required if mr='width' height output height in pixels (don't add px to value) optional, required if mr='height' mr maintain ratio, valid values or 'width' or 'height' optional, requires either a width or height format output image format ('gif', 'jpg' or 'png'), defaults to input format optional mt keep gif/png transparency if set to 'true' defaults to FALSE optional bk background colour for transparent images in HEX (without #) defaults to FFFFFF optional cr Crop ratio for the image width / height. A standard widescreen image has a crop ratio of 1.778 ( 16:9 ), where the width is 1.778 times the height. Although the module is designed to work with Kohana PHP, the library itself could exist independently of Kohana. More details of this will be available on Google Code where you can download the latest release or checkout the latest revisions from SVN. This library requires GD 2.0 for PHP to be installed on your web server [Less]

0
 
  0 reviews  |  0 users  |  700 lines of code  |  0 current contributors  |  Analyzed 3 days ago
 
 
 
 

Creative Commons License Copyright © 2013 Black Duck Software, Inc. and its contributors, Some Rights Reserved. Unless otherwise marked, this work is licensed under a Creative Commons Attribution 3.0 Unported License . Ohloh ® and the Ohloh logo are trademarks of Black Duck Software, Inc. in the United States and/or other jurisdictions. All other trademarks are the property of their respective holders.