Sponsored Content
The Lounge What is on Your Mind? I want to be a white-hat hacker! Post 302586126 by ahamed101 on Friday 30th of December 2011 08:01:36 AM
Old 12-30-2011
Yeah... Try BackTrack... You should see few of their video's...
I am running BT5... an ubuntu derivative by these guys... they have quite a few tools to start you off...


--ahamed
This User Gave Thanks to ahamed101 For This Post:
 

2 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Certified Ethical Hacker

hello all, first of all i'm not sure this is correct place to post but i could not find a place about certificates and exams so this seemed most appropriate. i'm interested in CEH if it's any good and where to take exams, and any books you can forward me to. i do have one book but it's couple... (3 Replies)
Discussion started by: rookie
3 Replies

2. What is on Your Mind?

Hacker=Knowlegde Qoute

I don't know if anyone has seen this commercial, either on TV or on the internet, but it's an IBM Linux Prodigy commercial. Linux Prodigy 4Gf6hq8J_DQ At around 33 seconds there is a quote about collecting and sharing data. A couple of friends and I watched this and decided to try to create a... (0 Replies)
Discussion started by: Texasone
0 Replies
IMAGEDASHEDLINE(3)							 1							IMAGEDASHEDLINE(3)

imagedashedline - Draw a dashed line

SYNOPSIS
bool imagedashedline (resource $image, int $x1, int $y1, int $x2, int $y2, int $color) DESCRIPTION
This function is deprecated. Use combination of imagesetstyle(3) and imageline(3) instead. PARAMETERS
o $ image -An image resource, returned by one of the image creation functions, such as imagecreatetruecolor(3). o $x1 - Upper left x coordinate. o $y1 - Upper left y coordinate 0, 0 is the top left corner of the image. o $x2 - Bottom right x coordinate. o $y2 - Bottom right y coordinate. o $color - The fill color. A color identifier created with imagecolorallocate(3). RETURN VALUES
Always returns true EXAMPLES
Example #1 imagedashedline(3) example <?php // Create a 100x100 image $im = imagecreatetruecolor(100, 100); $white = imagecolorallocate($im, 0xFF, 0xFF, 0xFF); // Draw a vertical dashed line imagedashedline($im, 50, 25, 50, 75, $white); // Save the image imagepng($im, './dashedline.png'); imagedestroy($im); ?> The above example will output something similar to:[NOT DISPLAYABLE MEDIA]Output of example : imagedashedline() Example #2 Alternative to imagedashedline(3) <?php // Create a 100x100 image $im = imagecreatetruecolor(100, 100); $white = imagecolorallocate($im, 0xFF, 0xFF, 0xFF); // Define our style: First 4 pixels is white and the // next 4 is transparent. This creates the dashed line effect $style = Array( $white, $white, $white, $white, IMG_COLOR_TRANSPARENT, IMG_COLOR_TRANSPARENT, IMG_COLOR_TRANSPARENT, IMG_COLOR_TRANSPARENT ); imagesetstyle($im, $style); // Draw the dashed line imageline($im, 50, 25, 50, 75, IMG_COLOR_STYLED); // Save the image imagepng($im, './imageline.png'); imagedestroy($im); ?> SEE ALSO
imagesetstyle(3), imageline(3). PHP Documentation Group IMAGEDASHEDLINE(3)
All times are GMT -4. The time now is 01:43 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy