Image size in een ImageCreateFromJpeg functie
Ik ben nu bezig met text over een image, ik heb HEEL VEEL gezocht en gevonden, maar kan nergens een goeie combo vinden die aansluit op mijn script.
Dit script werkt perfect, alleen ik wil graag een grootte meegeven aan de afbeelding.
Huidige script:
Quote:
Code (php)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?php
// Create a blank image and add some text
$im = @ImageCreateFromJpeg("58914.jpg");
$textcolor = imagecolorallocate($im, 0, 0, 0);
// Write the string at the top left
imagestring($im, 20, 20, 20, 'Sold!', $textcolor);
// Set the content type header - in this case image/jpeg
header('Content-type: image/jpeg');
// Output the image
imagejpeg($im);
// Free up memory
imagedestroy($im);
?>
// Create a blank image and add some text
$im = @ImageCreateFromJpeg("58914.jpg");
$textcolor = imagecolorallocate($im, 0, 0, 0);
// Write the string at the top left
imagestring($im, 20, 20, 20, 'Sold!', $textcolor);
// Set the content type header - in this case image/jpeg
header('Content-type: image/jpeg');
// Output the image
imagejpeg($im);
// Free up memory
imagedestroy($im);
?>
Ik wil bijv. dat de image 100x100 word. Hoe geef ik dit mee?
Mijn grote dank!
A.Keij,
Gewijzigd op 02/06/2010 20:44:40 door Allard Keij
Wel bedankt alvast!
http://nl.php.net/manual/en/function.imagecopymerge.php
Deze gebruik ik bijvoorbeeld voor een watermerk.
Anders zou ik het ook niet weten.
Wat jij wil zal vast wel kunnen met GD...
Edit:
Volgens mij heb ik het:
Volgens mij heb ik het:
Code (php)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?php
// Create a blank image and add some text
$im = @ImageCreateFromJpeg('image.jpg');
$textcolor = imagecolorallocate($im, 255, 0, 0);
list($width, $height) = getimagesize('image.jpg');
$new_width = 100;
$new_height = 100;
$im2 = imagecreatetruecolor($new_width, $new_height);
imagecopyresampled($im2, $im, 0, 0, 0, 0, $new_width, $new_height, $width, $height);
// Write the string at the top left
imagestring($im2, 20, 20, 20, 'Sold!', $textcolor);
imagedestroy($im);
// Set the content type header - in this case image/jpeg
header('Content-type: image/jpeg');
// Output the image
imagejpeg($im2);
// Free up memory
imagedestroy($im2);
?>
// Create a blank image and add some text
$im = @ImageCreateFromJpeg('image.jpg');
$textcolor = imagecolorallocate($im, 255, 0, 0);
list($width, $height) = getimagesize('image.jpg');
$new_width = 100;
$new_height = 100;
$im2 = imagecreatetruecolor($new_width, $new_height);
imagecopyresampled($im2, $im, 0, 0, 0, 0, $new_width, $new_height, $width, $height);
// Write the string at the top left
imagestring($im2, 20, 20, 20, 'Sold!', $textcolor);
imagedestroy($im);
// Set the content type header - in this case image/jpeg
header('Content-type: image/jpeg');
// Output the image
imagejpeg($im2);
// Free up memory
imagedestroy($im2);
?>
Gewijzigd op 02/06/2010 21:27:25 door Martijn B