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.





Transparent Filled Polygon


I'm working on a map program where each building is clickable and when it's clicked the page is refreshed to show a map with the building highlighted (in red). I was wondering if it would be possible to highlight the buildings using some sort of combination of the imagepolygonfill function and a transparency function (i'd like the buildings to still be visible under the highlight), rather than having to create many different files with the different buildings highlighted.




View Complete Forum Thread with Replies

Related Forum Messages:
Filled Polygon
This code creates the line graph. I want to fill the color from start to end point of line graph. I tried using the imagefilledpolygon but I am not able to pass the array of values. Code:

View Replies !
PHP (GD) Created Transparent PNG: AlphaImageLoader Makes Black Parts Transparent Instead Of Transparent Color Set With PHP
I have a problem with PHP (GD) created transparent PNG and Microsofts
AlphaImageLoader.

You will immediately see what the problem is if you view
http://www.useful-scripts.biz/test/.../transpng_2.php with IE 7
or Firefox and then with IE 6. It seems that the AlphaImageLoader
works correctly on a PNG image that has been created with an image
processor and then uploaded, but not with a PNG image created with
PHP. It seems to ignore the transparent color set with PHP and instead
to render the black color transparent.

The image in question was created using this code:

<?php
$source = imagecreatefrompng("parrot_orig.png");
$transp = imagecolorallocate($source,255,0,0);
imagecolortransparent($source,$transp);
imagefilledrectangle($source,15,15,70,70,$transp);
imagepng($source,"parrot_php.png");
?>

The HTML used on the page is this:

View Replies !
Point In Polygon
Ive seen several c/c++ algorithms for finding out whether a point is within a polygon but Ive yet to find any php implementations of this.

View Replies !
Already Filled In Form
i ve made this form in html and i want it to already be filled in with data from the database if it already exists PHP Code:

View Replies !
Arrays Not Being Filled
the array gets filled like this: Array ( [0] => on [1] => on [2] => on [3] => on ),Pieces of my code: CSS stuff: PHP Code:

checklist {
    border: 1px solid #ccc;
    list-style: none;
    height: 10em;
    overflow: auto;
    width: 25em;
checklist, .checklist li { margin: 0; padding: 0; }
checklist label {
    display: block;
    height: 15%;
    padding-left: 25px;
    text-indent: -25px;.

View Replies !
Help W/ Zero Filled Numbers (strings....)
I need to be able to loop through a set of filenames (pictures), and if they exist, display the files. No problem with that so far, only that now, the filename system has changed (we went from 100 pics per item to 999)... I can't get to some of them. pictures are named like this :

Lcal0113_z001.jpg to Lcal0113_z999.jpg (not always all of them are there). Now, if I simply try to loop through the 999 Nr's , it won't work for all of those that are below 100 (because of the "zeroes" that stand in front, no surprise...) (Lcal0113_z070.jpg for example won't show up) this is my previous code :

View Replies !
Saving A Filled PDF Form
I am trying to build some functionality where a user can fill out an editable PDF form and send it to my site. I realize I can just have them save and upload/email it, but if I could pull the fields out of the pdf and insert them into a database, I would really prefer that. I saw some ways to do this, but all were expensive commercial solutions which I can't afford.

Important points are storage space, ease of use and security. I really want the forms to be as secure as possible when submitted. I also think having to save and upload the pdf might be too difficult/too much work for some users and I want it to go as easily as possible.

Another idea I had was to have a link inside the pdf, which would save the form and send the user to the upload page, with the path already entered into the upload box? not sure how to even begin going about that though.

I did some searching on the forum and it seems like it's not as common a problem as I thought. Most php/pdf stuff seems to be just creating pdfs dynamically.

View Replies !
Textbox In A Form Is Filled
i used isset ... never worked...i did this :

if ($_POST["email"]&&$_POST["username"]&&$_POST["password"]&&$_POST["cpass"])...never worked

what do i do.

View Replies !
Form Keeps Saying All Fields Need To Be Filled In
when i submit my form, it keeps saying all fields need to be filled in, but everything is filled in, could one of you experts please take a look at my code tell me where im going wrong. Code:

View Replies !
Pre-filled Form With Images
I have a form with about 25 text fields and 6 file upload fields (with the Browse button.) Currently I have the form submitted to a page, which is supposed to email a pre-filled form to my email. Anywho, Once I fill out the form I get an email with all the field prefilled but the 6 image fields. Here is the php code I use to send the pictures PHP Code:
...
$Photo1 = $_POST["Photo1"];
$Photo2 = $_POST["Photo2"];
$Photo3 = $_POST["Photo3"];
$Photo4 = $_POST["Photo4"];
$Photo5 = $_POST["Photo5"];
$Photo6 = $_POST["Photo6"];
...
$message .= 'Image1: <input type="text" name="Photo1" value="' . $Photo1 . '"><img

View Replies !
If Variable Filled In Then Print Something
I am trying to display some code only if a variable is filled in. How would I do this?
I have a mysql column called "img_2" which I'd like to show some code only if there is a value in img_2. So something like:

if "img_2" is filled in then
print
<img src=Â¥"img/{$row['img_2']}Â¥">

View Replies !
External Form That Is Pre-filled
I want to link to another page, and have a form on that page filled out with some data. For instance, a link to the main Google page with the search field filled with some text. I don't want to link to the search results; I just want to link to Google.com with the form filled.

View Replies !
Print A Filled-in Form
I've got a form that people can fill in, and if they press the 'submit' button, the form should be printed with the filled-in values instead of the input fields in the html(php) page.

To make things easier, a stylesheet for print might be used too. How could I achieve such a thing?

View Replies !
Rows And Columns Filled
I have to use <tr></tr> tags for the beginning and end of each row, but how would I put this into my results? The problem being that my results are part of a loop. This is what I have.

$result = mysql_query("select membername from whatever limit 0,10") ;
while ($row = mysql_fetch_array($result)){
$membername= $row["membername"];
$sql =mysql_query("SELECT * FROM images WHERE membername = '$membername' ");
$img_info = mysql_fetch_array($sql);
echo "<td>";
echo "<a href=photopage.php?profile=$membername>";
echo img_tag($img_info["img_file"], array("x"=>"100", "y"=>"100"));
echo "<br>";
echo "$memberrname";
echo "</a>";
echo "<td>";
}

View Replies !
2 Select Box Filled Dynamically
I can't figure out why the second box shows nothing if it works on the first one. First Box Code:

<select name="emp_econtact_pphone_type" id="emp_econtact_pphone_type">
<option>Choose One</option>

<?php do { ?>

<option value="<?php echo $row_phone['ptid']; ?>"><?php echo $row_phone['ptname']; ?></option>

<?php } while ($row_phone = mysql_fetch_array($phone)) ?>
</select>

Second Box Code:.

View Replies !
Transparent GIF
I am trying to resize transparent GIF images, so I was reading, and they say to use fopen, fread, and read the first 13 bytes... OK, so I read in a transparent gif, and the first 13 bytes... and echo it out to the screen, and I get this: GIF89a›&#65533;s&#65533;÷&#65533;&#65533;What am I supposed to do with that? they then say "allocate that color as transparent, and use imagecopy(); to set the transparency back."

View Replies !
Transparent .png
This isn't totally related to php, but I am using a php generated page that is using transparent .png's.

Anyway, when I view the page in Internet Explorer, the transparency within the png is replaced with grey?? But when I view it in Firefox it works fine?

View Replies !
How Do I Control Text Box Pre-Filled Entries
Can someone tell me how to control whether or not a text box is automatically pre-filled. In other words, on some web sites, when you visit them, the username and password automatically fills itself. But on other web sites you have to fill in the username and password each time you visit them.

There is one web site, Yahoo! dot com, where the username and password text boxes are never pre-filled. I have to type in my username and password for Yahoo! dot com each time I restart my browser. It didn't used to be that way. Yahoo!'s web site used to automatically pre-fill the username and password text boxes.

The web site that I'm working on uses cookies. I suppose that I could put a cookie $Name variable in a text box - but there may be a better way of doing it, though.

View Replies !
How Could I Get The Form Fields Filled From A Database?
One idea I have is to do a redirect, but it doesn't quite
work because it ends to an infinite loop cause the page
is redirecting to itself:

header("Location: " . $_SERVER['PHP_SELF'] .
"?field1=something&field2=something else");

That would bee neet. I just would create a string from the contents
I receive from the db and just redirect, but as I said, it doesn't
work easily. You have to use the apache rewrite, but I didn't quite
get it.

Another solution is to check if the request is not empty for the
particular field.

View Replies !
$_POST Empty, $HTTP_RAW_POST_DATA Filled
We receive a POST message being a multipart/mixed type. The
$HTTP_RAW_POST_DATA shows it perfectly. However, I expected the $_POST to be
filled as well, which is empty. We're using php 4.3.3.

View Replies !
2 Select Box Filled Dynamically With Do While Loop
I have two select boxes on the same page both filled dynamically and am using a do / while loop to put the information in. The first one works fine, but the second one is blank. I can't figure out why the second box shows nothing if it works on the first one. Code:

View Replies !
Transparent Image
Hi!

Here's a piece of code:

[begin]

<?php

Header('Content-type: image/png');

$sz = "";

$FileValue = 1000;

$i = strlen($FileValue);

for ( $j = 0; $j < 7-$i; $j++ )
{
$sz = $sz . "0";
}

$Img = imagecreate(56,13);

$Gold = imagecolorallocate($Img,148,128,100);

$Gray = imagecolorallocate($Img,32,32,32);

ImageFilledRectangle($Img,0,0,55,12,$Gray);

imagestring($Img,4,0,0,$sz.$FileValue,$Gold);

imagepng($Img);

ImageDestroy($Img);
?>

[end]

OK. Calling this script I have a png picture back.

Now I add imagecolortransparent($Img,$Gray); just before imagepng() and OK
again, I have a transparent picture back. But now, if I add:

$r = imagerotate($Img,90,0);

imagepng($r);

just after the imagecolortransparent() instruction seen above, I get a
rotated picture, but not transparent. How to solve that? I've used a plenty
of tricks, no one works.

View Replies !
Transparent GD Watermark.
Any one know what would be the best way to accomplish a transparent watermark on upload with GD that will work for Jpegs, Gifs and Pngs,  using only GD in php 4?

View Replies !
Resize Transparent PNG
I have a basic script to resize a transparent png image. Code:

$dimg = imagecreatetruecolor($newwidth, $newheight);
imagecolortransparent($dimg, imagecolorallocate($dimg,0,0,0));
imagealphablending($dimg, false);
imagecopyresampled($dimg, $simg, 0, 0, 0, 0, $newwidth, $newheight, $currwidth, $currheight);


Problem is that my nice drop shadows are lost in resize. Does anyone know how I can keep them ?

View Replies !
Transparent Background
i'll try to explain myself the best i can, here is the problem:

i have a html page and inside this i want to put an iframe that contains a php page. That's ok, i can do it and it works, but the problem is that i can't make that php document to have transparent background.

it turns white. Is it because of the iframe? the php document has transparent background, but when i see it inside the iframe it doesn't work.

View Replies !
Two Transparent Colours
I have an image that I am opening and then merging onto another image, and it has two colours which I wish to make transparent, but it is not working, can you please give me an example of how to do this thanks. When I say that it is not working, I mean that when I allocate the second one, the first one is no longer transparent.

View Replies !
User Input Validation & Filled Value Should Stay
I am intending to make a form on a page, on pushing submit the forms gets posted  onto itself so that it checks for empty fields and prompts user to get all fields filled, BUT the filled value should stay, I did this easily on ASP, but could not figure out in PHP. Code:

View Replies !
Transparent Overlay Watermark - On The Fly?
Is it possible to overlay a transparent watermark on an image -
dynamically?

I'd like the result to look like this example:
<http://www.cycletourist.com/temp/photo.php>

That is a bit of overkill, but you can see what I mean. The watermark
image (a png image) is included separately below the photo.

I tried using a class from phpclasses.org
<http://www.phpclasses.org/browse/package/1580.html...
but the result looks horrible. The transparency does not work.

I found one other method through Google,
<http://www.sitepoint.com/article/watermark-images-php>
but it did not work, either.

Can this kind of transparent overlay be done on the fly with GD lib?

View Replies !
Dynamically Transparent Gif's
Basically what i would like to do is dynamically set the transparency of a selection of images (GIF'S) depending on variables set in a My SQL Database. What i need to do is tint some jpg,s by setting the transparency of a solid blue gif which is set over the top of it in a table.

View Replies !
GD: Testing A Pixle To See If It's Transparent?
How would I determine if a pixel is 100% transparent on a given image?

View Replies !
Imagegettftext Transparent Holes
I created an image, made it transparent, drew a rounded rectangle on it and then wrote on it with imagegettftext - where the text is there are transparent holes.

$image = imageCreateTrueColor($width,$height);
imageSaveAlpha($image, true);
ImageAlphaBlending($image, false);

$transparentColor = imagecolorallocatealpha($image, 255-$r, 255-$g, 255-$b, 127);
imagefill($image, 0, 0, $transparentColor);

$background = imagecolorallocate($image, $br, $bg, $bb); .......

View Replies !
Find Out If An Image Is A Transparent Gif
Does anybody know if there's an easy way to find out if a given image is a transparent gif? (GIF89a)

View Replies !
Define The Transparent Color
I've made a script that takes images (in gif,jpg & png) and makes their thumbs in jpg format. Now, the problem is if I have a transparent gif when saved to jpg the part of the original picture that is transparent turns black in the new thumb. My question is: how can I define that the transparent part gets the color i want it to get (white is what i need) ?

Actually, I now what in theory should be done. I should change the r,g,b values of the color that has aplha=127 (and that's not a problem with imagecolorset()), but also I should change the alpha of that color to 0. how can that be done ? My quess is that that is the right way to do it.

View Replies !
Transparent Watermarks On Images
I'm using the code below to make a watermark and it's kinda working, but I want it semi-transparent as the PNG file is itself.

Is there an easy way of overlaying transparent images in the GD library, so that the original image is merged in such as way that it can be seen through the watermark? Code:

View Replies !
Make Thumbnail Transparent
I have a script that will upload an image, then create a thumbnail of that image. When I upload an image with a transparent background the normal sized image comes out with a transparent background, but the thumbnail image comes out with a black background. Code:

View Replies !
Transparent Text On Image?
Is it possible to place transparent text on an image? I want to display an image of some text in a fancy typeface, but superimpose text in a plain style, so that it can be copied and pasted; a bit like what you see in some PDF files, where the page image is visiable, the overlying text is not.

View Replies !
Make A Colour Transparent
I would like to do is grab an image, determine what colour is at a certain pixel (maybe 10, 10) and then set that colour to transparent for the whole image. Basically it is so that I can dynamically place an image on various backgrounds for previewing. I am not worried about perfection (anit-aliasing, matte, etc).

View Replies !
Form Processing - Checked If The User Filled Out Certain Field
I created a form and after submission it is checked if the user filled out certain field. If not he/she kan try a Try Again button and is returned to the page with the form.

I constructed the form so the different textfields after the user clicks Try Again still contain the details she previously filled out. This works fine with ordinary text input fields, but not at all with checkboxes and a textarea, presumably because these fields do not have a 'value' attribute that could contain the $textarea or $checkbox variables.
Hope I made myself clear.

View Replies !
Check To See If Users Have Filled In Required Fields On A Form?
is there a simple code that will check to see if users have filled in required fields on a form?

View Replies !
Add Transparent Copyright Text To Image
I need a way to add a transparent copyright message (e.g. copyright 2002 together with my company logo) to my photos on the fly. My photos come in many different formats, such as PNG, GIF and JPEG.

View Replies !
.htaccess Transparent SESHID And Sessions
just putting the finishing touches on a shopping site and have run into errors in the process when users are blocking cookies. i am using:

<IfModule mod_php4.c>
php_value session.use_trans_sid 0
</IfModule>

in my .htacess file to supress the PHPSESSID=22y3213etc. but it means that if a cookie isn't set the site fails to work properly.

if i remove that from my .htaccess the site works fine because the PHPSESSID is passed around evey page, but it knackers things for SEO purposes. Code:

View Replies !
GIF Resize Resample Transparent Fill
I am currently trying to create what I would think is simple. I want to create a image.php file and have it resize a 80 x 80 image to 29 x 29 with out losing the quality. When I try to have the gif image imagefill with the color white (255,255,255) it holds up and ends with a timeout. The gif images also have the black pixels if i don't try filling.

Does anyone know a simple script to just resize a gif/jpg file? All documentation has been pretty bad so this is first time posting.

View Replies !
Create Or Resize Transparent .png - Drop Shadow - GD IM
I've searched and d/l'd but cant seem to find a way of creating
a semi-transparent drop shadow for an image.

Let me say, be fore I go on, I *do not* want one of those scripts that
resizes your image a bit to the left and bottom, and then grafts a
shadow onto it. I want to use a full shadow (it would be about as big
as the image) and shift it a bit with CSS. So, I will have the image
sitting in a DIV which will have the shadow as a bg. This works fine
doing it manually.

So, I would like to find one of two alternatives:

1. (best) Create the shadow from given parameters(size, darkness,
spread, etc.) I will write the .png to a folder, I dont really need to
create it dynamically each time, but want the ability for the future
(galleries) and for when I'm in development and images are changing,
moving around, etc.

2. (will work) Take a pre-existing shadow and resize it as needed, but
has to keep the transparency.

View Replies !
How Do I Echo A Binary Array (transparent Pixel)
What am I doing wrong here? I want to display a transparent pixel...

<?
$transparent1x1 = array (71, 73, 70, 56, 57, 97, 1, 0, 1, 0, -128, 0,
0, 0, 0, 0, 0, 0, 0, 33, -7, 4, 1, 0, 0, 0, 0, 44, 0, 0, 0, 0, 1, 0,
1, 0, 0, 2, 2, 68, 1, 0, 59);
header("Content-type: " . image_type_to_mime_type (IMAGETYPE_GIF));
echo $transparent1x1;
?>

View Replies !
[GD]: Open Existing Image(url) & Set A Transparent Color
lets say i output an image like this:

$img = array('somedomain.com/foo.jpg');

<img src="$img[0]" alt="" />

but it has a white background and i want to strip the white background to be transparent

how do i do that and output it inline again?

View Replies !
Pressing Browser Back Button - Form Filled Data Disappeared
When filling out a web form on a php page that is submitted to a search
which lists the results based on the criteria provided (in the form), all
works fine and as expected.

However, when I press the back button to amend the form all of the search
criteria data has gone and I have to fill it all out again if I want to do a
similar search which is frustrating. (This does not actually happen in
Firefox browser but most of my users will be using IE). How can I prevent
this from happening?

Previously I made a post about avoiding "Page has expired" and the
conclusion I came to for that was not to use a "POST" which did the trick.
But now I want to retain the data I input?

View Replies !
Remove A Black Background From An Image To Make It Transparent Using GD
is it possible to remove a black background from an image to make it transparent using GD. for example. can i pass the radius of the moon to GD (as it is on the image) and have it slice the moon out so to speak leaving it on a transparent background.

View Replies !
Security - Detect If A Client Is Connecting Through A Proxy(inluding Transparent) Or Not.
I want to detect if a client is connecting through a proxy(inluding transparent) or not.  What measures can I take to authenticat the source of the request before I even ask for login details. $_SERVER['REMOTE_ADDRESS'] is the only thing I can think of using but surely it is not sufficient to trust its value.

View Replies !
Put Transparent Layer That Disable Page Element At The Time Of Processing Ajax
I have made web page in php with the help of ajax and javascript. I want to do whenever page processing for ajax for that time I want to put some transperent layer that will disable the back pages element.. I have seen one site but I dont remember.

View Replies !
Checking If A Multi-dim. Array Has Been "filled Out"
I have the following recursive function which is supposed to check wether a multi-dimensional array has any "blank spaces" in it. PHP Code:

View Replies !
Creating Image From Uploaded Image And Transparent PNG
Say the client wants to be able to change the image, but not the text treatment, and doesn't have the Photoshop knowledge to actually replace it and re-save it themself.

Is there anyway to use a PNG with the rounded edges, text treatment, and transparent center, have the client upload a standard rectangular-shaped image, and use PHP to layer the uploaded image underneath the transparent one, creating a new image file?

View Replies !

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