Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - puremuzikarmy

Pages: [1]
1
Mods & Plugins (Releases & Support) / Re: [MOD] multiupload
« on: June 10, 2006, 01:13:24 AM »
I did just that and its works great!!!!!!!!!!!  thank you, this mod was the answer to my dreams :D

2
Mods & Plugins (Releases & Support) / Re: [MOD] multiupload
« on: June 09, 2006, 09:23:26 PM »
Hello everyone, Having a major prob.  I cant upload, or multiupload.  When you try to upload or go to the control panel i get this:



Parse error: syntax error, unexpected '>' in /home/orange/public_html/gallery/member.php on line 679


this is what is at line 679
Code: [Select]
$msg .= (!$direct_upload) ? "<br />".$lang['new_upload_validate_desc'] : "";
Can anyone help, i really need a multiupload mod and i just can't  seem to figure this out.  :cry:

3
I made checked,checked and rechecked just to make sure i wasnt wating peoples time.  the only new link i have is under plugins. and that is (batch annotate)

I rechecked step by step my install of this mod and cant seem to find what happened.  Like i said before it works, i just don't have a way to control it.  I have to make all my changes through mysql database.

4
I have searched every page on this forum trying to figure out why I don't have a setting option for the water mark.  Like other i only have

Batch Annotate


I followed every step 3 times and still that is all i have.  I manually went to ann_settings.php to change the settings, and got it to work.  I can now watermark my images, but would still like it to work properly.  Why do i not have a setting option for the watermark mod? :(

5
FAQ, Tips / Re: How can I add more allowed file extensions?
« on: April 10, 2006, 02:14:12 AM »
I'm sorry but i searched everything i could think of.  My problem seems to be a bit different.  When i try to upload a movie file, like an AVI  it seems like its going to upload.  I get no error message.  then nothing uploads.  The only thing i'm able to upload are images.  Everything seems to be fine.  I even tried to upload a file i know i didnt have an extention for and i did get an error so i know that works.  I'm uploading movie files way under my upload limit so i know thats not the problem.  Could someone help me with this?

6
Mods & Plugins (Requests & Discussions) / HELP with watermark
« on: April 09, 2006, 07:02:30 AM »
Hello i really need some help.  Just learning PHP and need help with this watermark script.  Could someone take this script and turn it into something us newbies could use? Maybe a little tutorial? :D
There seems to be a lot of help here in the forums, but a lot of it is too advanced for us newbies.  Here is the code hope someone is willing to help :D

Here is the PHP script that is to be uploaded.

Code: [Select]
<?php
/*
* phpWatermark 0.3 (c) 2003 Mario Witte <mario.witte@chengfu.net>
*
* The latest version of phpWatermark will always be available on
* http://www.chengfu.net/
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/

class Watermark {
var $image;
var $type;
var $width;
var $height;
var $marked_image;
var $sizes;
var $position "C";
var $offset_x;
var $offset_y;
var $orientation;
var $imageCreated false;
var $gd_version;
var $fixedColor ''

var $version 'phpWatermark 0.3';

// Public Watermark
// You need to specify either a filename or an image resource
// when instatiating phpWatermark
function Watermark($res) {
list($this->type$this->image) = $this->_getImage($res);

if (!$this->image) {
$this->_die_error("Your current PHP setup does not support "$this->type ." images");
}

$this->width imagesx($this->image);
$this->height imagesy($this->image);

$gdinfo gd_info();
if (preg_match('/(\d)\.\d/'$gdinfo["GD Version"], $gdinfo))
$this->gd_version $gdinfo[1];
else
$this->gd_version 0;
unset($gdinfo);
}

// Public void setType(string)
// Currently not used
// TODO: Add functionality
function setType($type) {
$this->type $type;
}

// Public void addWatermark(string)
// Adds a watermark to the image
// Type defaults to TEXT for backwards compatibility
function addWatermark($mark$type "TEXT") {
//TODO: Support for watermark images (e.g. company logo)
//TODO: Automatically determine type of watermark

if ($type == "TEXT") { // We are going to embed text into the image
$this->orientation = ($this->width $this->height) ? "H" "V"// Choose orientation

$this->sizes $this->_getTextSizes($mark);

$this->_getOffsets();

// Copy a chunk of the original image (this is where the watermark will be placed)
$chunk $this->_getChunk();
if (!$chunk$this->_die_error("Could not extract chunk from image");

$img_mark $this->_createEmptyWatermark();
$img_mark $this->_addTextWatermark($mark$img_mark$chunk);

// Delete chunk
imagedestroy($chunk);

// Finish image
$this->_createMarkedImage($img_mark$type30);
} elseif ($type == "IMAGE") { // We are going to embed an image
list($dummy$mark) = $this->_getImage($mark);
$this->sizes $this->_getImageSizes($mark);

$this->_getOffsets();

$img_mark $this->_createEmptyWatermark();
$img_mark $this->_addImageWatermark($mark$img_mark);

$this->_createMarkedImage($img_mark$type30);
}
}

// Public int getMarkedImage
// Returns the final image
function getMarkedImage() {
if ($this->imageCreated == false) {
$this->addWatermark($this->version);
}
return $this->marked_image;
}

// Public bool setPosition
// Set position of watermark on image
// Return true on valid parameter, otherwise false
function setPosition($newposition) {
$valid_positions = array(
"TL""TM""TR""CL""C""CR""BL""BM""BR""RND"
);

$newposition strtoupper($newposition);

if (in_array($newposition$valid_positions)) {
if ($newposition == "RND") {
$newposition $valid_positions[rand(0sizeof($valid_positions) - 2)];
}
$this->position $newposition;
return true;
}
return false;
}

// Public string setFixedColor
// Set a fixed color for text watermarks
// Return true on valid parameter, otherwise false
function setFixedColor($color) {
$text_color = array();
if (is_array($color) and sizeof($color) == 3) {
$text_color["r"] = $color[0];
$text_color["g"] = $color[1];
$text_color["b"] = $color[2];
} elseif (preg_match('/^#?([a-f0-9]{2})([a-f0-9]{2})([a-f0-9]{2})$/i'$color$matches)) {
$text_color["r"] = hexdec($matches[1]);
$text_color["g"] = hexdec($matches[2]);
$text_color["b"] = hexdec($matches[3]);
} else {
return false;
}
foreach (array("r""g""b") as $key) {
if (!array_key_exists($key$text_color) or $text_color[$key] < or $text_color[$key] > 255) {
return false;
}
}
$this->fixedColor $text_color;
return true;
}

// Private _die_error
function _die_error($errmsg) {
die($errmsg);
}

// Private _getTextSizes
function _getTextSizes($text) {
$act_scale 0;
$act_font 0;

$marklength strlen($text);
$scale = ($this->orientation == "H") ? $this->width $this->height// Define maximum length of complete mark
$char_widthmax intval(($scale $marklength) - 0.5); // Maximum character length in watermark

for ($size 5$size >= 1$size--) {
$box_w imagefontwidth($size);
$box_h imagefontheight($size);
$box_spacer_w 0;
$box_spacer_h 0;

if ($this->orientation == "H") {
$box_h *= 2;
$box_w *= 1.75;
$box_w *= $marklength;
$box_w += intval($this->width 0.05);
$box_spacer_w intval($this->width 0.05);
$box_spacer_h intval($this->height 0.01);
} else {
$box_w *= 3;
$box_h *= 1.1;
$box_h *= $marklength;
$box_spacer_h intval($this->height 0.05);
$box_spacer_w intval($this->width 0.01);
}

$box_scale = ($this->orientation == "H") ? $box_w $box_spacer_w $box_h $box_spacer_h;

if ($box_scale $scale && $box_scale $act_scale) { $act_font $size$act_scale $box_scale; }
}

return array( "fontsize" => $act_font,
"box_w" => $box_w,
"box_h" => $box_h,
"spacer_w" => $box_spacer_w,
"spacer_h" => $box_spacer_h
);
}

// Private _getImageSizes
function _getImageSizes($res) {
// Check if the overlay image is bigger than the main image

if (@imagesx($res) > $this->width || @imagesy($res) > $this->height) {
// Need to resize the overlay image
$box_h $box_w 0;
$box_spacer_h $box_spacer_w 0;
if (imagesx($res) > imagesy($res)) {
$box_w $this->width;
$box_h intval((imagesy($res) / (imagesx($res) / $this->width)) + 0.5);
$box_spacer_h intval(($this->height $box_h) / 2);
} else {
$box_h $this->height;
$box_w intval((imagesx($res) / (imagesy($res) / $this->height)) + 0.5);
$box_spacer_w intval(($this->width $box_w) / 2);
}
} else {
$box_spacer_h $box_spacer_w 0;
$box_h imagesy($res);
$box_w imagesx($res);
}
return array(
"box_w" => $box_w,
"box_h" => $box_h,
"spacer_w" => $box_spacer_w,
"spacer_h" => $box_spacer_h
);
}


// Private _getChunk
function _getChunk() {
$chunk imagecreatetruecolor($this->sizes["box_w"], $this->sizes["box_h"]);
#$chunk = imagecreate($this->sizes["box_w"], $this->sizes["box_h"]);
imagecopy( $chunk,
$this->image
0
0,
$this->offset_x,
$this->offset_y,
$this->sizes["box_w"],
$this->sizes["box_h"]
);
return $chunk;
}

// Private _createEmptyWatermark
function _createEmptyWatermark() {
return imagecreatetruecolor($this->sizes["box_w"], $this->sizes["box_h"]);
#return imagecreate($this->sizes["box_w"], $this->sizes["box_h"]);
}

// Private _addTextWatermark
function _addTextWatermark($mark$img_mark$chunk) {
imagetruecolortopalette($chunktrue65535);
$text_color = array("r" => 0"g" => 0"b" => 0);

if (is_array($this->fixedColor)) {
$text_color $this->fixedColor;
} else {
// Search color for overlay text
for($x 0$x <= $this->sizes["box_w"]; $x++) {
for ($y 0$y <= $this->sizes["box_h"]; $y++) { 
$colors imagecolorsforindex($chunkimagecolorat($chunk$x$y));
$text_color["r"] += $colors["red"];
$text_color["r"] /= 2;
$text_color["g"] += $colors["green"];
$text_color["g"] /= 2;
$text_color["b"] += $colors["blue"];
$text_color["b"] /= 2;
}
}
$text_color["r"] = $text_color["r"] < 128 $text_color["r"] + 128 $text_color["r"] - 128;
$text_color["g"] = $text_color["g"] < 128 $text_color["g"] + 128 $text_color["g"] - 128;
$text_color["r"] = $text_color["r"] < 128 $text_color["r"] + 128 $text_color["r"] - 128;
}
// Choose transparent color for watermark
$mark_bg imagecolorallocate( $img_mark,
($text_color["r"] > 128 10 240),
($text_color["g"] > 128 10 240),
($text_color["b"] > 128 10 240));

// Choose text color for watermark
$mark_col imagecolorallocate($img_mark$text_color["r"], $text_color["g"], $text_color["b"]);

// Fill watermark with transparent color
imagefill($img_mark00$mark_bg);
imagecolortransparent($img_mark$mark_bg);

// Add text to watermark
if ($this->orientation == "H") {
imagestring($img_mark$this->sizes["fontsize"], 10$mark$mark_col); 
} else {
imagestringup($img_mark$this->sizes["fontsize"], 0$this->sizes["box_h"] - 5$mark$mark_col);
}

return $img_mark;
}

// Private _addImageWatermark
function _addImageWatermark($mark$img_mark) {
$transparent_color_idx imagecolortransparent($mark);
if ($transparent_color_idx >= 0$transparent_color imagecolorsforindex($markimagecolortransparent($mark));
imagecopy($img_mark$mark0000imagesx($mark), imagesy($mark));
if ($transparent_color_idx >= 0) {
$trans;
if (function_exists("imagecolorallocatealpha")) {
$trans imagecolorallocatealpha(
$img_mark,
$transparent_color["red"],
$transparent_color["green"],
$transparent_color["blue"],
127
);
} else {
$trans imagecolorallocate(
$img_mark,
$transparent_color["red"],
$transparent_color["green"],
$transparent_color["blue"]
);
}
imagecolortransparent($img_mark$trans);
}

return $img_mark;
}

// Private _createMarkedImage
function _createMarkedImage($img_mark$type$pct) {
// Create marked image (original + watermark)
$this->marked_image imagecreatetruecolor($this->width$this->height);
imagecopy($this->marked_image$this->image0000$this->width$this->height);
if ($type == 'TEXT') {
imagecopymerge(
$this->marked_image,
$img_mark,
$this->offset_x,
$this->offset_y,
0,
0,
$this->sizes["box_w"],
$this->sizes["box_h"],
$pct
);
$this->imageCreated true;
} elseif ($type == 'IMAGE') {
if ($this->gd_version >= 2) { // GD2: Should be the easy way
imagealphablending($this->marked_imagetrue);

imagecopy(
$this->marked_image,
$img_mark,
$this->offset_x,
$this->offset_y,
0,
0,
$this->sizes["box_w"],
$this->sizes["box_h"]
);
} else {
imagecopymerge(
$this->marked_image,
$img_mark,
$this->offset_x,
$this->offset_y,
0,
0,
$this->sizes["box_w"],
$this->sizes["box_h"],
$pct
);
}

$this->imageCreated true;
}
}

// Private _getOffsets
function _getOffsets() {

$width_mark $this->sizes["box_w"] + $this->sizes["spacer_w"];
$height_mark $this->sizes["box_h"] + $this->sizes["spacer_h"];
$width_left $this->width $width_mark;
$height_left $this->height $height_mark

switch ($this->position) {
case "TL"// Top Left
$this->offset_x $width_left >= $width_left;
$this->offset_y $height_left >= $height_left;
break;
case "TM"// Top middle 
$this->offset_x intval(($this->width $width_mark) / 2);
$this->offset_y $height_left >= $height_left;
break;
case "TR"// Top right
$this->offset_x $this->width $width_mark;
$this->offset_y $height_left >= $height_left;
break;
case "CL"// Center left
$this->offset_x $width_left >= $width_left;
$this->offset_y intval(($this->height $height_mark) / 2);
break;
default:
case "C"// Center (the default)
$this->offset_x intval(($this->width $width_mark) / 2);
$this->offset_y intval(($this->height $height_mark) / 2);
break;
case "CR"// Center right
$this->offset_x $this->width $width_mark;
$this->offset_y intval(($this->height $height_mark) / 2);
break;
case "BL"// Bottom left
$this->offset_x $width_left >= $width_left;
$this->offset_y $this->height $height_mark;
break;
case "BM"// Bottom middle
$this->offset_x intval(($this->width $width_mark) / 2);
$this->offset_y $this->height $height_mark;
break;
case "BR"// Bottom right
$this->offset_x $this->width $width_mark;
$this->offset_y $this->height $height_mark;
break;
}
}

// private _getImage
// Takes a path to an image or a php image resource as the only argument
// Returns image type and the appropriate image resource
function _getImage($res) {
$img;
$type;

if (intval(@imagesx($res)) > 0) {
$img $res;
} else {
$imginfo getimagesize($res);

switch($imginfo[2]) { // Determine type
case 1:
$type "GIF";
if (function_exists("imagecreatefromgif")) {
$img imagecreatefromgif($res);
} else {
die("Unsupported image type: $type");
}
break;
case 2:
$type "JPG";
if (function_exists("imagecreatefromjpeg")) {
$img imagecreatefromjpeg($res);
} else {
die("Unsupported image type: $type");
}
break;
case 3:
$type "PNG";
if (function_exists("imagecreatefrompng")) {
$img imagecreatefrompng($res);
} else {
die("Unsupported image type: $type");
}
break;
}
}

return array($type$img);
}

}


?>




Here is the example that came with it.


Code: [Select]
<?php

// Load function
require("./phpWatermark.inc.php");

// Instantiate phpWatermark
// The only parameter currently required is the name
// of the image, which should get marked
$wm = new watermark("/path/to/image.png");

// Optionally specify the position of
// the watermark on the image
$wm->setPosition("RND");

// Add a watermark containing the string
// "phpWatermark" to the image specified above
$wm->addWatermark("/tmp/logo.png""IMAGE");

// Fetch the marked image
$im $wm->getMarkedImage();

// Output
header("Content-type: image/png");
imagepng($im);

?>

Pages: [1]