Moolkye
May 11 2006, 08:41 PM
| | Coppermine gets my vote as well too. I mean sure there are things I would add and remove, but that would require me writing my own app, and I do not know how. 
I wish I knew programming  |
Reply
Recent Queries:--
link:ktools.net/ - 4.91 hr back. (1)
-
watermark pictures in coppermine gallery - 66.12 hr back. (1)
-
imagevue change menu description - 68.12 hr back. (1)
-
coppermine gallery watermark - 108.75 hr back. (1)
-
plogger watermark - 113.08 hr back. (1)
-
how to change imagevue main name - 114.39 hr back. (1)
-
www.pixaria.com - 198.63 hr back. (2)
-
how to remove ? from imagevuex - 195.16 hr back. (2)
-
cache:53udqbsiaroj:www.trap17.com/index.php/image-galleres_t33690.html imagevue/themes/ - 211.28 hr back. (1)
-
watermark to coppermine gallery - 246.24 hr back. (1)
-
watermark coppermine galleries - 254.92 hr back. (2)
-
php gd library image with isometric view - 271.23 hr back. (1)
-
kuknalim - 52.41 hr back. (3)
-
powered by pixaria. gallery - 134.84 hr back. (3)
Similar Topics
Keywords : image, galleres
- Image Upload
?!? (11)
Get A Image Indentifier With Gd Library
GD library question (7) Hey fellow coders, I'm having a problem. If you output a im indentifier in php with gd libary.
With this method for example: CODE header("(anti-spam-(anti-spam-(anti-spam-content-type:)))
image/png"); $imgWidth = 50; $imgHeight = 50; $image=imagecreate($imgWidth, $imgHeight);
$colorBlack = imagecolorallocate($image, 0, 0, 0); // first color you define with colorallocate is
also the color of the background of your image imagepng ($image); imagedestroy ($image); // This
gives you a page with a black image of 50x50 pixels. ?> If i look at the source c....
Php And Flash Image Gallery
Need some help in creating or editing an xml file while viewing some o (5) Hello there and thanks for the helping hand you are offering. PHP newbie here! /ph34r.gif"
style="vertical-align:middle" emoid=":ph34r:" border="0" alt="ph34r.gif" /> So here is my problem:
On my website I have a flash image gallery.The way the gallery works is by uploading pictures in a
folder and editing? an xml file.(pics.xml) where it adds the following code when you upload a
picture: CODE etc... Now I have users that upload products they sell on the
website or they advertise their business(hotels, jewellers, car resellers,...) So for eve....
Trap17 Board Status Dynamic Image
(13) I was really board a few days ago and decided to make a trap17 board status image for my sig
/tongue.gif" style="vertical-align:middle" emoid=":P" border="0" alt="tongue.gif" /> That is the
current beta. I'm still working on it so that it might display the most recent post or
somthing, i'm not sure. After I finish it ill give out the source code but if you want one
right now you can pm me and ill set one up to get the info on your account ^.^ So I was wondering
how you members liked it? You'll probably think that its a waist of time, but alas as I sai....
Flipping An Animated Gif Image W/ Gd Library
Help (1) I need an animated gif image flipped using GD library in PHP. I wrote a script to flip still
images, but it doesn't work on animated images. This is probably because I have the script
moving 1 column of pixels at a time, and switching them around. How would I make multiple frames?
Any help would be great! Thanks!....
Detect Image Resolution Without Gd
Also stop error if not found (1) Hi, I have come accross some starnge problem in PHP. I wanted to detect the image resolution in
of a URL specified by the user. This is possible via getimagesize() function of PHP that is
independent of GD library. But this function generates a E_WARNING Error if the image is not there.
What shall i do to stop this warning ?? I dont want to show the Error in PHP style but my style of
error reporting. Please help me.....
Looking For Php Script : Image Thumbnail Like Imageshack.
(2) Does anyone know a code like the one ImageShack uses, like this one. That would be just
awesome, I hate doing it by hand, such a hassal. Until I can find a code similar to that, I think I
will just use ImageShack.....
Watermark Your Image With Simple Php Script
found it on the net (35) This script was found on the net http://tips-scripts.com/?tip=watermark#tip B&T's Tips &
Scripts site. Just in case the site may not show, I will include the code here: List of things
needed: 1. your image in any format 2. watermark image--in gif format with transparent background 3.
script below with name (i.e. watermark.php) CODE // this script creates a watermarked image
from an image file - can be a .jpg .gif or .png file // where watermark.gif is a mostly transparent
gif image with the watermark - goes in the same directory as this script // where this....
Dynamic Image / Signature Generator
a simple code to change text on an image (12) In search of dynamically changing quote, saying or all other types of text on an image I came across
a code that I have modified to fit my initial usage. This procedure requires two files and short
knowledge of PHP. If you are familiar with Trap17's sig rotation code you will understand this
procedure very fast. Code 1: dynamic_sig.php (you can rename this to index.php and you'll see
at the end why) Code 2: a simple text file named anything (I will call it name.txt ) Code 1
CODE header("Content-type: image/png"); $image = imagecreatefrompng("../i....
Php Photo And Image Gallery Script
PHP Photo And Image Gallery Script (2) This script is great and the documentation is excellent!! I have used it on my site without really
knowing much about PHP. Script ....
Image Upload And File Size
(2) Hi, I'm trying to upload rather large jpgs files (2560x1920 and ~ 2 megs in size) to my server
via PHP. The problem I am having is that when I upload and attempt to resize by creating a new
image, the new image is always black. Code I'm using is: PHP Code: CODE if(
!empty($thefile_name) ) {
$query = "INSERT INTO coldwell_images (imagename) VALUES
('insertimage')"; $result = mysql_query($query) or die("Query failed");
....
I Need A Php Editor
I need that for image editing (1) I need a php editor whichc can be used for the image editing like FrontPage for HTML. Can any body
give a link for that....
Write Random Text To Image
PHP script help! (5) I'm trying to create a script that writes text to an image. CODE header("Content-type:
image/png"); $_phrases = array( "Test 1", "Test 2", "Test 3", "Test 4", "etc." ); $_rand_phrase =
$_phrases ; $_image = imagecreatefrompng("gmail.png"); $_user_width =
imaagettfbbox(9,0,"tahoma.ttf",$_rand_phrase); $_x_value = (200-($user_width + 113)); $_color =
imagecolorallocate($_image, 165, 164, 164); imagettftext($_image, 9, 0, $_x_value, 16, $_color,
"tahoma.ttf", $_rand_phrase); imagepng($_image); imagedestroy($_image); I can't see what
I'm doing wrong.. I....
Using The Image Editing Functions Of Php
Specifically, lines or regular polygons. (4) I've been experimenting a little with PHP's image functions and I was trying to see if I
could make something that looked 3D, so I started with a cube because it's simple. To make an
isometric picture of a cube, you need to start with a regular hexagon. However, making a regular
hexagon isn't the easiest thing. Is there a function to create a regular polygon, or specify an
angle and magnitude for a vector?....
Image/scrolling Menu Correlation
Help.... plz... (0) Hey Guyz... I'm working on re-designing my website, and I need a way to set-up my affiliates
page. I have several (decent looking, not that it matters) images for my possible affiliates to
choose from. I currently have this code in effect... CODE Two different sized advertisments
are currently available for ad-exchanges. Purchasing advertising is currently unavailable. Here are
your ad-choices. 88x31 pixel box 120x240 pixel tower I want it so when a user selects the
'88x31 pixel box' option, for example, I want the 88x31 advertisment to show up....
Looking for image, galleres
|
*SIMILAR VIDEOS*
Searching Video's for image, galleres
*MORE FROM TRAP17.COM*
|
advertisement
|
|