473,395 Members | 1,386 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,395 software developers and data experts.

embed logo on upload image in php

245 100+
Hey All,

I want to embed logo while upload an image. I mean when i upload an image, i want to embed the logo of the website in that uploaded image.

Kindly help me out to sort out my problems and as i always get a reply from this great community so i believe again i will get the solution of my problem here.

kind regards,
Mohsin Rafique
Jun 12 '09 #1
21 3647
Dormilich
8,658 Expert Mod 8TB
check out imagecopymerge(). especially the comments.
Jun 12 '09 #2
neovantage
245 100+
Thank you very much
I will study n try to do that. As soon as i will do i will be back with that solution
Jun 12 '09 #3
neovantage
245 100+
Hey Dormilich,
I found a function from there which is exactly up to my requirement but in my case it is not working and show dirty characters after creating image.

Here is my code i am using for uploading and for watermarking

Expand|Select|Wrap|Line Numbers
  1. $file_extension=strtolower(get_ext($_FILES['photo_1']['name']));
  2. $photo_1="images/cars/".time().'_1.'.$file_extension;
  3. move_uploaded_file($_FILES['photo_1']['tmp_name'],$photo_1);
  4. $imageproduct = new Thumbnail($photo_1, 640, 480, 100);
  5. $imageproduct->save($photo_1);
  6. $watermarklogo="images/logo_png.png";
  7. watermark($photo_1,$watermarklogo);
  8.  

And this is the function i got from there which comes up to my requirement
Expand|Select|Wrap|Line Numbers
  1. function watermark($sourcefile, $watermarkfile) {
  2.         #
  3.         # $sourcefile = Filename of the picture to be watermarked.
  4.         # $watermarkfile = Filename of the 24-bit PNG watermark file.
  5.         #
  6.  
  7.         //Get the resource ids of the pictures
  8.         $watermarkfile_id = imagecreatefrompng($watermarkfile);
  9.  
  10.         imagealphablending($watermarkfile_id, false);
  11.         imageSaveAlpha($watermarkfile_id, true);
  12.  
  13.         $fileType = strtolower(substr($sourcefile, strlen($sourcefile)-3));
  14.  
  15.         switch($fileType) {
  16.             case('gif'):
  17.                 $sourcefile_id = imagecreatefromgif($sourcefile);
  18.                 break;
  19.             case('png'):
  20.                 $sourcefile_id = imagecreatefrompng($sourcefile);
  21.                 break;
  22.             default:
  23.                 $sourcefile_id = imagecreatefromjpeg($sourcefile);
  24.         }
  25.         //Get the sizes of both pix  
  26.         $sourcefile_width=imagesx($sourcefile_id);
  27.         $sourcefile_height=imagesy($sourcefile_id);
  28.         $watermarkfile_width=imagesx($watermarkfile_id);
  29.         $watermarkfile_height=imagesy($watermarkfile_id);
  30.  
  31.         $dest_x = ( $sourcefile_width / 2 ) - ( $watermarkfile_width / 2 );
  32.         $dest_y = ( $sourcefile_height / 2 ) - ( $watermarkfile_height / 2 );
  33.  
  34.         // if a gif, we have to upsample it to a truecolor image
  35.         if($fileType == 'gif') {
  36.             // create an empty truecolor container
  37.             $tempimage = imagecreatetruecolor($sourcefile_width, $sourcefile_height);
  38.                // copy the 8-bit gif into the truecolor image
  39.             imagecopy($tempimage, $sourcefile_id, 0, 0, 0, 0, $sourcefile_width, $sourcefile_height);
  40.               // copy the source_id int
  41.             $sourcefile_id = $tempimage;
  42.         }
  43.         imagecopy($sourcefile_id, $watermarkfile_id, $dest_x, $dest_y, 0, 0, $watermarkfile_width, $watermarkfile_height);
  44.         //Create a jpeg out of the modified picture
  45.         switch($fileType) {    
  46.             // remember we don't need gif any more, so we use only png or jpeg.
  47.             // See the upsaple code immediately above to see how we handle gifs
  48.             case('png'):
  49.                 header("Content-type: image/png");
  50.                 imagepng ($sourcefile_id);
  51.                 break;
  52.             default:
  53.                 header("Content-type: image/jpg");
  54.                 imagejpeg ($sourcefile_id);
  55.         }
  56.         imagedestroy($sourcefile_id);
  57.         imagedestroy($watermarkfile_id);
  58.     }
  59.  

kindly help me out to sort out my problem pleaseeeee
Jun 12 '09 #4
Dormilich
8,658 Expert Mod 8TB
any errors, warnings, notices? have you tried with bare/sample images (without uploading) first? did you check the function return values?
Jun 12 '09 #5
neovantage
245 100+
Yeh it post and give warning message.
And also show dirty characters in it.

I am attaching the image of it
Attached Images
File Type: jpg error.jpg (32.9 KB, 237 views)
Jun 12 '09 #6
Dormilich
8,658 Expert Mod 8TB
what does the error message say? (too small to read). the error message directly involves the "dirty characters", once you clear the error it should be ok.

EDIT: the "dirty characters" are actually your picture… expressed as string
Jun 12 '09 #7
neovantage
245 100+
It is saying that cannot modify header information
Warning: Cannot modify header information - headers already sent by (output started at E:\server\htdocs\themosaicdesigns\site\projects\ca rsbay\includes\thumbnail.class.php:423) in E:\server\htdocs\themosaicdesigns\site\projects\ca rsbay\edit-photos.php on line 272
Jun 12 '09 #8
Dormilich
8,658 Expert Mod 8TB
what does
output started at E:\server\htdocs\themosaicdesigns\site\projects\ca rsbay\includes\thumbnail.class.php:423
refer to?
Jun 12 '09 #9
Markus
6,050 Expert 4TB
@neovantage
On line 423 of E:\server\htdocs\themosaicdesigns\site\projects\ca rsbay\includes\thumbnail.class.php, you have sent output to the browser. You cannot do that if you intend to modify the headers later.
Jun 12 '09 #10
neovantage
245 100+
Basically thumbnail.class.php resize my uploaded image.
What i want actually is
i want to upload pictures. Pictures may be large in size so i have to resize them as the client requirement. Now he want that When an image upload then it must be resize and also this process embed his website logo tu the uploaded image and that is what i am trying to do.

i am using thumbnail.class which resize the uploaded image and save it to the required path.

If i even exclude it even then it shows n give me dirty characters and do not embed logo into the uploaded image
Jun 12 '09 #11
neovantage
245 100+
So what should i do now.

As i need to upload the image, embed logo into uploaded image, then i need to resize the image and then need to save it
Jun 12 '09 #12
neovantage
245 100+
Sir i want that when i upload an image it get that image.
1. Upload it to the server
2. Embed logo into it
3. Resize it too.

These 3 things i want to do

Awaiting of your guideline to do these step by step
Jun 12 '09 #13
Dormilich
8,658 Expert Mod 8TB
first, check what's causing the output in thumbnail.class.php on line 423.
Jun 12 '09 #14
neovantage
245 100+
i am attaching the file thumbnail.class.php file as in line 423 there is nothing in it
Attached Files
File Type: zip thumbnail.class.zip (1.8 KB, 133 views)
Jun 12 '09 #15
Dormilich
8,658 Expert Mod 8TB
you have 2 line breaks after the closing "?>", that counts as output–remove them.

you should use "<?php" as start tag, not every system allows short tags.
Jun 12 '09 #16
Markus
6,050 Expert 4TB
@Dormilich
To prevent accidental output after the closing PHP tag, you can just omit it all together. This is a common practice, and is, I believe, enforced in the Zend Coding Standard.
Jun 12 '09 #17
neovantage
245 100+
But my problem is still there.
I still unable to do these 3 tasks simultaneously
1. Upload it to the server
2. Embed logo into it
3. Resize it too.

So what should i do now? i am still there from where i start
Jun 12 '09 #18
neovantage
245 100+
Hey Dormilich and Markus,
Hope you are best in health and life. So please guide me what should i do now so that i can upload images, embed logos and resize them simultaneously.

Awaiting of your reply
Mohsin Rafique
Jun 13 '09 #19
n8kindt
221 100+
@neovantage
this is a long thread. i didn't see that you ever cleared this error and it might be the source of your problem. i'm guessing the offending line is trying to send the file type information to the header. you can't do this if you've already sent information to the browser (eg using the function 'echo');

there is a workaround for delaying that information from being sent immediately and still modify the header. try putting ob_start(); on the first line of your php code and ob_get_clean(); on the last line of your php code. you can also read about output buffering here: http://us2.php.net/manual/en/intro.outcontrol.php
Jun 13 '09 #20
neovantage
245 100+
my script is uploading picture now and also resizing them. But when i embed logo into the picture it output the embedded log picture into the same window. But how can i overwrite that new picture on the existing picture on the directory path.

Please find the attached images of the output.
Attached Images
File Type: jpg 01.jpg (16.3 KB, 220 views)
File Type: jpg 02.jpg (9.3 KB, 223 views)
Jun 14 '09 #21
n8kindt
221 100+
i think this might help you: http://koivi.com/php-gd-image-watermark/

i haven't looked at the available source code but i believe what you need is there. if not, google "php gd watermark"
Jun 15 '09 #22

Sign in to post your reply or Sign up for a free account.

Similar topics

3
by: dave | last post by:
Hello there, I am at my wit's end ! I have used the following script succesfully to upload an image to my web space. But what I really want to be able to do is to update an existing record in a...
21
by: Atanas Boev | last post by:
Is there any CSS way to make a <hr /> noshadow so I don't get the default 3D look in Netscape? I tried to use some border-bottom to make the line, but my "line" should be under text that is...
9
by: deko | last post by:
Is it possible to store a company logo (a gif file) in a table (binary field) and have the logo appear in a form? If I insert a picture object in the form, the properties sheet of the Image...
15
by: David Lozzi | last post by:
Howdy, I have a function that uploads an image and that works great. I love ..Nets built in upload, so much easier than 3rd party uploaders! Now I am making a public function that will take the...
31
by: Michael Tobis | last post by:
"Is this the right room for an argument?" http://geosci.uchicago.edu/~tobis/snake.png ok, so my execution is pretty crude, but you can at least see my idea. I trust you to imagine it...
24
by: Manuel | last post by:
Is it possible to embed an image, like a company logo in a CDOSYS generated message? If yes, IĀ“ll apreciate some code sample. IĀ“ve been able to format messages in html the way I like, but I...
1
by: rkontham | last post by:
Hello... We are developing the intranet application.In that i should place our company logo in each html and asp page.And givw chance to the Client to change that logo.(they can upload their...
2
by: Amir Michail | last post by:
Hi, The following gradient method involves scaling a gradient image. How would one put a logo on top of such a scaled gradient image without also scaling the logo image? ...
3
by: raamay | last post by:
I am trying to embed company logo (image) in an html email which i am sending using PHP mail function. I tried the following way but didnt work. So, I am not sure how to go about. Please see my code...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.