Tracking Forums, Newsgroups, Maling Lists
Home Scripts Tutorials Tracker Forums
  Advanced Search
  HOME    TRACKER    PHP


SuperbHosting.net have generously sponsored dedicated servers to ensure a reliable and scalable dedicated hosting solution for BigResource.com.





Displaying Dynamicly Created Images


I'm working on the registration page of my website, and am building in a system where the user has to read something out of a dynamically created image. I can create the image just fine, but how do I get it to display in a web page? Code:




View Complete Forum Thread with Replies

Related Forum Messages:
Displaying Images In Php Created Emails
I have created a php script that sends html emails and attachements. I couldnt figure out how to send an html email so that when the reciever opens his email, the images are displayed in the table and not as seperate attachements. I have used both activemaillib and php's mail function

The only way I succeeded was using hyperlinks in the table that fetches the email from a server, but some people download emails, close their internet connections and then read their emails.

View Replies !
Dynamicly Created Page, With Refereing Url Shown
I have loads of domain names but none have any hosting space associated. They are however all entered into my DNS, so when any of them are visited, the visitor ends up at the (unused) home page of my dns server.

I would like to put a php (or perl, or whatever else is suitable) page here so the visitor is shown a more freindly page.

So, for example, a "Welcome to domain.com, this page is under construction / for sale" type page is what I would want. So all I would need to do for each domain to have it's own page would be to enter the domains in to my DNS and the rest would be automatic.

View Replies !
PHP-created Images
I've been wondering - how do I make dynamic images in PHP (example - the
PHP and Zend logos when you do phpinfo().)? I have seen it done on several
websites and I want to do it.
Also, is there a correct way to use PHP to retrieve images? The only
way I've ever got this to work is using require(). Here is what I did
(note: it only works with ASCII encoded images, otherwise PHP errors):

<?php

switch ($imgnum)
{
case "1":
require ("/home/img/menubutton.gif");
break;
case "2":
require ("/home/img/userprfl_bt.gif");
break;
case "3":
require ("/home/img/srch.gif");
break;

//etc...

case "":
default:
require ("/home/img/error.gif");
break;
}

?>

View Replies !
Problems With Multiple Images Created From Gd2
Here's what i originally set out to do: i created a function called autoThumb:

function autoThumb($imgPath, $thumbWidth) {

$im = ImageCreateFromJpeg($imgPath);
//get source dimensions
$sourceWidth = ImagesX($im);
$sourceHeight = ImagesY($im);
$proportion = $thumbWidth/$sourceWidth;
$thumbHeight = round($sourceHeight*$proportion);
$thumbImg = ImageCreateTrueColor($thumbWidth, $thumbHeight);
ImageCopyResized($thumbImg, $im, 0, 0, 0, 0, $thumbWidth, $thumbHeight, $sourceWidth, $sourceHeight);
echo('<img src="'.ImageJpeg($thumbImg).'">');
ImageDestroy($thumbImg);
ImageDestroy($im);
}//end autoThumb

obviously, it's purpose is to create a thumbnail of a pic given the path to the pic and the desired thumbnail width. the first time i call the function, everything seems to go fine.

autoThumb("../imgs/guitar.jpg", 160);

but if i call it a second time

autoThumb("../imgs/guitar.jpg", 160);

the second image doesn't display. furthermore, if i put any text before the autoThumb call, the image doesn't display - only the code of the jpg.

View Replies !
[fopen()] Unzip Uploaded File To Created Newly Created Directory
Right i have already spent the best part of 8 hours trying to get this working.

What i am trying to do:

Upload zip file to directory. Check if upload is successfull and then unzip to directory created by name of zip file.

I can upload the zip file and create the diectory but the damn files wont unzip to the newly created directory ....

View Replies !
Size Of "images" Created By Imagestring
imagestring essentially turns text strings into images. Unfortunately,
these images can be of any size and, as far as I know, an images size
needs to be decided upon before imagestring is called.

So is there anyway the size that imagestring would require could be
calculated before the image was created?

View Replies !
Displaying 5 Images In A Row
I have spent serveral weeks trying to figure out how to do this. Attached below is code for a function that outputs images in a row. However I am tring to find a way so that it would output 5 images and then drop a line and continue to do this untill all the images have been displayed.  The variable which the output is stored in is named $out (towards the bottom).  The variable $thumb_row is the total number of images that are allowed to be displayed.  Here is an illustration of what I am trying to do the X is an image.

XXXXX
XXXXX
XXXXX
XXXXX

Code:

View Replies !
Displaying Images Across A Row
If want to be able to display some photos on a page but I do not want them " one to a colum" I want two to a row. The code I have so far is: PHP Code:

<?php do { ?>
                  <tr>
                      <td><div align="center" class="bodytext"><?php echo $row_photos['link']; ?></div></td>
                      <td><div align="center"><img src="/photos/<?php echo $row_photos['photo']; ?>" /></div></td>
                      </tr>
                  <tr>
                    <td>&nbsp;</td>
                    <td><div align="center"><img src="images/rossrunning_bg.gif" width="252" height="13" /></div></td>
                    </tr>
                  <?php } while ($row_photos = mysql_fetch_assoc($photos)); ?>
........................................

View Replies !
Displaying Images
was wondering if anyone had a snippet for something like this. i am looking for a script like this:

http://thesuperficial.com/image.php?path=/2007/03/haylie-duff-cavallari-south-beach-01.jpg.

View Replies !
PHP, MySQL And Displaying JPG Images
I got a script that is supposed to display a JPG image from the database, but, instead of displaying the image, it displays the JPG binary output with those alphanumeric characters.

Coule this be a Header MIMI type problem in my script?

View Replies !
Displaying / Resizing Images
I'm trying to create a php page to automatically display all images in a directory I specify, I want all the images to be thumbnailed on the fly, this is what I've come up with so far....

<?
$TheDirectory = dir($ImageDir);
while($Filename = $TheDirectory->read()) {

// Make sure we only show graphic files!
if ((strstr($Filename, '.jpg') <> False) | | (strstr($Filename, '.gif') <> False) | | (strstr($Filename, '.png') <> False)) {
// Get info about this image.
$ImageSize = GetImageSize($TheDirectory->path . $Filename);

// Create a thumbnail, try to keep the proportions correct
$ImageScale = $ImageSize[1] / $ImageSize[2];

$SourcePic = imagecreatefromjpeg ($TheDirectory->path . $Filename);
$DestPic = imagecreate(100, 100 * $ImageScale);

// Create a thumbnail from the image
imagecopyresized($DestPic, $SourcePic 0, 0, 0, 0, 100, 100 * $ImageScale, $ImageSize[1], $ImageSize[2]);

// Display the image
imagejpeg($SourcePic);

// Free up the resouces
imagedestroy($SourcePic);
imagedestroy($DestPic);
}
}

$TheDirectory->close();
?>

Ok, so $ImageDir is the directory name I send the page, and as you can see I've only set it up to handle jpg files atm.

So this isn't working, I just get a blank page what I need to know is...
- How do I find out what version of gd I'm using?
- Is there a way I can load a image, resize it then output it without using the gd functions? I would rather output the raw headers if possible but I'm not sure how, I'm not sure if my webhost is using the required version of gd, and I'd rather not have to hassle him for months to upgrade it.
- Does anyone know any examples of thumbnail gallerys I can download?

View Replies !
PhpBB And Displaying Images
I need to add upload functionality of images to phpBB 1.4.4. I have decided to have the images upload directly into mysql as binary data. I have been succesful in adding upload code into phpBB to allow it to upload images. What I am having a problem with is displaying those uploaded images on the viewtopic.php page.

I have taken a look at the tutorial on phpbuilder that talks about uploading and viewing binary data in mysql and I have followed the examples.

here's the link if interested:
http://www.phpbuilder.com/columns/florian19991014.php3

So basically this tutorial has the user create another file that will be called to grab and format (with proper header info -- image/gif) the image and send it back to the relevant page. So within my viewtopic page - where I want the image to appear I provide the following code. post_id is a parameter that tells getdata.php where the image field is located for that record. PHP Code:

View Replies !
Displaying Images With A Filter
Wondering if someone can point me in the right direction. Im trying to
display images from a directory, but i need to filter them. Like a
wildcard, for example to display all images ending with *1h.png or to
display images starting with cpu0*.*

View Replies !
Displaying Images In A Ratio
Instead of fixing the images height/width, can I have it show by a ratio of the original size?

What I have is a large image and want to make a small "preview" of it (without creating another file), at the moment I just set it to 80x80pixels but the problem with this is if the large image isn't square it looks squashed. Is it possible to do it by a ratio?

View Replies !
Displaying GD Images Inline
I've created a script that allows someone to create an Image using variables that they define. After filling out the fields, they click preview. And it all works! ...except for 1 thing.

I want to be able to generate the image with PHP and display it within the same page as the form (right below it), but when the user clicks preview, it shows nothing on the page, except the image. Code:

View Replies !
Displaying Blob Images
I am trying to create an image gallery that allows other users to upload images into. I want all the images to be displayed on the one page. I've figured out how to do this by using a table with a blob field. I've decided not to put the images in the directory as this method seems like it would be too complicated for my application. Code:

View Replies !
Displaying Images Stored
i am using ftp_nlist() get the list of files in a folder containing images (on another server). how should i display those images on my PHP page? im thinking about "ftp_get"ing them, storing them on my server, then displaying them. but seems like an inefficient way of doing it.

View Replies !
Way Of Displaying The Images, From The Database
Im kind of a novice at PHP programming and need some help on what may be a simple problem, with hopefully a simple solution.

I am trying to write my own photo gallery. I need a way of displaying the images, from the database, as a block like below Code:

View Replies !
Displaying Images In Cells
I`m pulling a random 15 images from a mysql database. how can I do this with a single query? I can do one row and loop the cells easy enough, or do multiple queries, but how can I create a row, show 5 images, then another row and another 5 images and so on with just the one query? Is it possible?


<table>
<tr>
<td>Image1</td>
<td>Image2</td>
<td>Image3</td>
<td>Image4</td>
<td>Image5</td>
</tr>
<tr>
<td>Image6</td>
<td>Image7</td>
<td>Image8</td>
<td>Image9</td>
<td>Image10</td>
</tr>
<tr>
<td>Image11</td>
<td>Image12</td>
<td>Image13</td>
<td>Image14</td>
<td>Image15</td>
</tr>
</table>

View Replies !
Displaying Images Frm A Database
It gets the data I want from the database and then outputs it into rows and columns. What I want is to display the actual image itself. Code:

View Replies !
Displaying Database Images
I need to display a thumbnail of a large image that is contained in a database. I cannot upload a thumbnail into the database for various reasons. I have a function that resizes images before inserting into a database, and I know how to display image data from the DB into the browser so I have a rough idea of what's involved. My problem is that I need to get an image from the DB, resize down it and display it in the browser on the fly.

View Replies !
Displaying Images From Another Vhost
I have several sites hosted on the same server. I'm using VHOSTS in Apache to serve the sites. My question is this - without creating a symbolic link in one vhost to the other vhost's image folder - AND - without calling an absolute url for an image source How can I call an image to display in one site from another one? Is there a way?

View Replies !
Problems Displaying Images
I am using PHP and MySQL to create a dynamic website. Using MS Internet Explorer to test my website, everything works fine. When I use Netscape and Opera to test my work, I have problems to display images.

View Replies !
Displaying Images - Set_magic_quotes_runtime
<?php
set_magic_quotes_runtime(0);
ini_set("include_path","/home/fhlinux192/s/studentart.streamlinenettrial.co.uk/user/htdocs/includes/");
include ('pics.inc');
if($id) {
$connection = mysql_connect($host,$user,$password)
$db = mysql_select_db($database, $connection)
$query = "SELECT image, image_type FROM tbl_images WHERE image_id = $id";
$result = mysql_query($query);
$data = mysql_result($result,"image");
$type = mysql_result($result,"image_type");
Header( "Content-type: $type");
$data = stripslashes($data);
echo $data;
};
?>

View Replies !
Displaying Integer Numbers As Images
I'm trying to display some images of digits 1-9 with respect to an int variable. i wrote a function to convert the int to string and did a ereg_replace to display the corresponding image. well seems like its not as easy as it seems. the function keeps replacing the wrong characters.

function digitalize($average_user_review)
{
$average_user_review = ereg_replace("0", "<IMG SRC="images/digit0.gif" WIDTH="6" HEIGHT="18" ALT="" BORDER="0" VSPACE="7">", $average_user_review);
$average_user_review = ereg_replace("1", "<IMG SRC="images/digit1.gif" WIDTH="6" HEIGHT="18" ALT="" BORDER="0" VSPACE="7">", $average_user_review);
$average_user_review = ereg_replace("2", "<IMG SRC="images/digit2.gif" WIDTH="6" HEIGHT="18" ALT="" BORDER="0" VSPACE="7">", $average_user_review);
$average_user_review = ereg_replace("3", "<IMG SRC="images/digit3.gif" WIDTH="6" HEIGHT="18" ALT="" BORDER="0" VSPACE="7">", $average_user_review);
$average_user_review = ereg_replace("4", "<IMG SRC="images/digit4.gif" WIDTH="6" HEIGHT="18" ALT="" BORDER="0" VSPACE="7">", $average_user_review);
$average_user_review = ereg_replace("5", "<IMG SRC="images/digit5.gif" WIDTH="6" HEIGHT="18" ALT="" BORDER="0" VSPACE="7">", $average_user_review);
$average_user_review = ereg_replace("6", "<IMG SRC="images/digit6.gif" WIDTH="6" HEIGHT="18" ALT="" BORDER="0" VSPACE="7">", $average_user_review);
$average_user_review = ereg_replace("7", "<IMG SRC="images/digit7.gif" WIDTH="6" HEIGHT="18" ALT="" BORDER="0" VSPACE="7">", $average_user_review);
$average_user_review = ereg_replace("8", "<IMG SRC="images/digit8.gif" WIDTH="6" HEIGHT="18" ALT="" BORDER="0" VSPACE="7">", $average_user_review);
$average_user_review = ereg_replace("9", "<IMG SRC="images/digit9.gif" WIDTH="6" HEIGHT="18" ALT="" BORDER="0" VSPACE="7">", $average_user_review);
$average_user_review = ereg_replace(".", "<IMG SRC="images/digit_point.gif" WIDTH="6" HEIGHT="18" ALT="" BORDER="0" VSPACE="7">", $average_user_review);
return($average_user_review);
}

View Replies !
Problem Displaying Images As Thumbnails
Im having problems displaying my images as thumbnails in a table. My code
for producing the new width and height from the original image is as follows
**************************************************
if ($ImagePath) {
//$Image = WEB_ROOT . 'images/PupilTester/' . $ImagePath;
$Image = 'images/PupilTester/' . $ImagePath;
} else {
$Image ='images/PupilTester/nopicture.bmp'
}

$size = getimagesize($image);
$height = $size[1];
$width = $size[0];
if ($height > 150)
{
$height = 150;
$percent = ($size[1] / $height);
$width = ($size[0] / $percent);
}
else if ($width > 150)
{
$width = 150;
$percent = ($size[0] / $width);
$height = ($size[1] / $percent);
}
//echo "<img src"image/path/image.jpg" height="$height"
width="$width" />";
************************************************** ************

and in my table to display the thumbnail I have

************************************************** ************
<td rowspan="5" valign="top"><div align="left"><img src=<?php echo $Image;
?> width= <?php echo "$width"?> height= <?php echo "$height"?>>
</div></td>
</tr>
************************************************** **************
However the images are not showing at all. The cells of the table are blank.
But if I use

*********************************************
<td><img src=<?php echo $Image; ?>></td>
</tr>
*******************************************
The images show full size as normal. Can anyone see where Ive gone wrong

View Replies !
Displaying Inline Images Thru MySQL
I run a board that runs the Invision Board program. We are a photography forum, so lots of images get posted. IPB places all uploaded images and the GD-created thumbnails in one directory... right now there are over 40,000 files in there. We would like to archive the older images in a different place, so I devised a script that uses a coped table from the database with all rows without a image post deleted.

The problem I have is that the database cross-references the original filenames with the new names they are given on the server. DSC_1000.JPG would get renames to "post-107-12382148343984.jpg" for instance. We would prefer to keep those "post" names for security, but would like to duplicate the method IPB uses to display the images with the file saving as the original (DSC) filename.

Dissecting the IPB code returned nothing I can use nor figure out without a complete re-write of my script. So how would one go about opening a file depending on the query string, and place the real name of the file into the header dynamically? I have tried the following, and other derivations, but keep getting errors: PHP Code:

View Replies !
Making Images Smaller, And Displaying Them!
I've managed to build two web pages, one that can display images with
associated text data in a table, and one that can resize and display images
without the text. I'd like to resize the images as I go, without writing
them to disk on the server. Do I need to prepare all of the resized images
before I display the data from the select (which is put into an array by
php). How can I display a resized image in a table, without writing it to
disk first?

I could get around this problem by creating smaller images in the windows
app (non web) but I cannot find anything to do this. If you know of a dll
or ocx etc that I could use,

View Replies !
Problem Displaying Images With Php And Mysql
I am uploading images to a server and saving the script location to a mysql database.  It is loading into the server. When I call it with PHP it doesn't show up.  When I try to access it directly I get a an error stating that this directory is restricted without an index file.  I added an index file, but it made no difference.  The directory is set to 777.  Also, I manually changed the chmod on the image to 777 and now I am getting a "page not found" error.

here is the upload code:

View Replies !
Uploading And Displaying Multiple Images
I am building a website where people can post jobs that need to be done and have laborers bid on them.... Im done with pretty much everything on the site but im having a hard time figuring out how to upload and display multiple images for each job.... I am able to upload and display one image but i can upload multiple images.... Everytime I try to do so, It only displays multiple copies of the first image that i upload. Code:

View Replies !
Images Not Displaying When Using $_SERVER['DOCUMENT_ROOT']
I'm trying to display images using the file name appended to the document root using $_SERVER['DOCUMENT_ROOT'], so that i can call an image from any folder throughout the site, without having to worry which folder the page is in (eg if the image is in the folder www/uploads and the script is in the folder www/admin).

The problem i have is that the images are not displaying, although the alt text displays, and right clicking on the image gives the correct filename and path. It doesn't not seem to matter whether i'm using my locally hosted files (for testing) or files on my website.

$root = ($_SERVER['DOCUMENT_ROOT']);

<img src="<?php echo $root . $oldname; ?>" alt="<?php echo $alttext; ?>" />

Does anyone have any ideas?

View Replies !
Displaying Images From MySQL Databases.. .
Although I was able to successfully retrieve and view images using the provided tutorial code, upon adapting it for my code I am encountering a problem.

I'm supposed to retrieve the image [stored as a BLOB] along with some other form data, but instead of displaying the image, I'm just getting a large chunk of binary text. Code:

View Replies !
Script For Displaying Webcam Images
I'm looking for some php code to display images from a webcam. I've looked extensively for this but all the code examples I found require the image name to stay constant, with the image being updated via ftp by the webcam.

BUT the type of webcam I have to use creates a new image for each FTP update. So you end up woth lots of differently named images. Also the image names are not sequential so you can't do a simple loop through variable names.

View Replies !
Include Subdirectory - Images Not Displaying
I have a page named printdocs.php that needs to include multiple .html pages into one page for printing purposes. The printdocs.php page looks like this:

include('documents/100/100.html');
include('documents/101/101.html');
include('documents/102/102.html');

Each one of the .html files I'm trying to include has relative references to images (i.e. 100.html has <img src="100-101.jpg" />).  When I use the above include functions, the html outputs properly but the images do not display.  Note: I cannot change the code in the included .html files.  Is there a way to get the images to display?

View Replies !
Displaying Images From Database + Server
I have images stored in a folder on the server. I have the image name stored in a database table. How do I get that image displayed on my homepage? Here's my code so far:
PHP Code:

View Replies !
Displaying Images Form A Directory
I am trying to figure out how to display a bunch of images (mainly JPEGs, but possibly a few GIFs and PNGs as well) that are stored in a local directory on the system. I can do this with the glob() function, but I can't seem to put in a directory other than one within the webroot.

View Replies !
Photo Gallery - Displaying Comments For Images
I have simple script that selects all the photos out of a folder that i direct it to and displays them in a simple galley, I want to be able to have comments displayed for each photo which are in a database..
I have the following code at the moment where $PhotoName is out of the database from a select * from Table WHERE photo group (linked to photo) is equal to the one selected...

The problem is this is displaying comments for images on every one and for some reason the if ($images[$i] = $PhotoName) is not working. PHP Code:

View Replies !
Java Script Code For Displaying Images In PHP?
I have this java script code that updates the "img src" tag of my images on the page...

<script Language="JavaScript">
function showupdate(photo){
document['bigPhoto'].src = photo;}
</script>

Now, is there any way to write this code in PHP (not in Java Script), since I want to save that "photo" variable for later use and manipulation... ???

View Replies !
Displaying A Varying Number Of Images.. In Tables?!
I'm building a news system. I have a page to display all posts made to
category=$id, simple enough, now I wanna make an index page that looks
up all the categories from the news_topics table, displays their name,
a link to their page, and the image assigned to that category.

Here's the catch: I wanna put this in a table as the images are only a
few hundred pixels wide, so a flat list of each image would be boring
and inefficient. The thing is, we may add/remove news categories over
time, so how can I deal with this?

Would it really be easier to manually make this in HTML and change it
as/when we make modifications to the topics table?

View Replies !
Simple Question On Retrieving And Displaying Images.
I have a database for displaying the names of bed and breakfasts
searched for by the town they are in as below.

<?php
$result = @mysql_query ("SELECT name FROM site01_details WHERE
town='$townsearch' AND code='sleep'");
while ($row = mysql_fetch_array($result))
{ echo '<p>' . $row['name'] . '</p>' }

?>

I want to also insert an image (of the premises for example) for each
bed and breakfast found.

Assuming a code in each database entry is actually the exact image
name, and all are stored in /images, and all of JPG format and fixed
size, how can I insert the image for each search result found.

View Replies !
Checkboxes Dynamicly Generated
I have a form with 3 checkboxes wich have all the same name:

<input type=checkbox name=test value=val1>
<input type=checkbox name=test value=val2>
<input type=checkbox name=test value=val3>

now on the target page i need all values that are checked, so if they are all 3 ckecked i need to get val1, val2 and val3 on the target page. With ASP you get the varaible test = val1;val2;val3 (the values are all put in one variable, separated with a ";"

But when i use PhP i only get the last value in this case "val3". What do i need to do to get all values? I have named them all the same because those checkboxes are dynamicly generated. I dont know how many there will be.

View Replies !
Changing Upload_tmp_dir Dynamicly
Is there a way to change the upload_tmp_dir directive dynamicly in the script.
As i know this is a system directive and is possible to be changed only manualy from php.ini.

View Replies !
Populating A List Dynamicly
Is there an easy way to populate a list dynamicly? It stinks javascript here, but I don't know how to do it with that either. I have one list A that contains enteries with ID's as values.

List B should then fill with information from a database according to wich ID is choosen in list A. Since alot of otherthings is entered on the page to I would like to nopt have to deal with sending all the data and loading the same page again.

Is there a way in PHP to link to the same page and have all the filled textfields stay as they were? Or do I have to use post?

I have the thought of loading all the data from the database and having it in an array or something and having a javascript picking and writing the choosen ones to the list. But that would be alot of excess data so getting it "live" from the db would be better.

View Replies !
Displaying Images - All Show Up In A MAIN Left Box When Clicked
I have a page with 6 images on the right I have them displayed as 6 thumbnails. Rather than have them open in a popup window I would like them to all show up in a MAIN left box when clicked. Hows the best way to go about this guys. Also the thumbnails are the same size but the main images will be slightly different sizes.

View Replies !
Breaking Up The Query String Dynamicly?
using $Get_string = $_SERVER['QUERY_STRING']; to receive a query string such as
month=may&$day=15&year=2006

so that $Get_string = "month=may&$day=15&year=2006"

can I separate the values and turn them into variables? (like a normally would with a url get)

$month = "may"
$day= "15" etc

it would be great to just do $_GET on the url but I'm sending the string as a variable to another script... so i can't just go the easy route.

View Replies !
Create A Query In Order To Dynamicly Popular A Listbox
I am trying to create a query in order to dynamicly popular a listbox however I am trying to fill the listbox with years such as 2007 etc based on if they are stored in the data base. The problem is that two tables have to be checked that have no relation to eachother but this caues the problem of duplication so if both tables have 2007 it will appear in the list more than once. Code:

View Replies !
Help With Displaying Selecting A Date Range And Displaying Results
I wish to create a simple form that allows the selection of a start date and a stop date with the ability to select what columns to be displayed in the result page.

View Replies !
Upload Multiple Images From A Folder At A Time And Watermark The Images
I have a problem with uploading multiple images from a folder at a
time with a single mouse click and water mark the images with text.
Can any body please help me with code and suggestion about this issue?

View Replies !
Stamps/inserts Small Images (logos) Onto Larger Images.
It may be called image stamping or water marking but im not sure. Basically i want a script that prints/stamps a smaller image onto a larger one, the smaller mage being a logo. This will make it harder for people to steal my pictures as they will have my logo on them.

An example of this is with ebay, when you submit a picture of the item your selling ebay will printe a small logo in the bottom right corner of the picture. Could anyone suggest a script for this, just a simple one then i can mess around with it and make it better.

View Replies !
Script That Can Upload Images To The Folder Then Will Auto-resize The Images
I am new to scripting and need help with image resizing. I have a forum where users upload images that are sometimes too wide to fit on the screen. Is there a script that I can upload to the folder where the images are located that will auto-resize the images to a smaller image?

View Replies !
Get Last Created ID...
When a user is created I need to create a directory for their images. How do I get back the ID just created from the DB? PHP Code:

View Replies !
Created A Php Upload Using Mac OS X
Is it possible to create a PHP uploading file so that I can place images/text into a destination that I have assigned "write-only?"

If so, could you point me to a URL (URI) or sample code that tells me how to copy the file into the folder I want on  my Mac OS X.

View Replies !

Copyright © 2005-08 www.BigResource.com, All rights reserved