472,351 Members | 1,592 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,351 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 3550
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, 228 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, 129 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, 214 views)
File Type: jpg 02.jpg (9.3 KB, 216 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...
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...
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...
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! ...
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...
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...
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...
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...
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,...
0
by: teenabhardwaj | last post by:
How would one discover a valid source for learning news, comfort, and help for engineering designs? Covering through piles of books takes a lot of...
1
by: Kemmylinns12 | last post by:
Blockchain technology has emerged as a transformative force in the business world, offering unprecedented opportunities for innovation and...
0
by: Naresh1 | last post by:
What is WebLogic Admin Training? WebLogic Admin Training is a specialized program designed to equip individuals with the skills and knowledge...
0
by: antdb | last post by:
Ⅰ. Advantage of AntDB: hyper-convergence + streaming processing engine In the overall architecture, a new "hyper-convergence" concept was...
2
by: Matthew3360 | last post by:
Hi, I have a python app that i want to be able to get variables from a php page on my webserver. My python app is on my computer. How would I make it...
0
by: AndyPSV | last post by:
HOW CAN I CREATE AN AI with an .executable file that would suck all files in the folder and on my computerHOW CAN I CREATE AN AI with an .executable...
0
hi
by: WisdomUfot | last post by:
It's an interesting question you've got about how Gmail hides the HTTP referrer when a link in an email is clicked. While I don't have the specific...
0
by: Matthew3360 | last post by:
Hi, I have been trying to connect to a local host using php curl. But I am finding it hard to do this. I am doing the curl get request from my web...
0
by: Carina712 | last post by:
Setting background colors for Excel documents can help to improve the visual appeal of the document and make it easier to read and understand....

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.