Looking for more information on how to do PHP the right way? Check out PHP: The Right Way

PHPUgly Podcast:
Episode #113: Excessive Frequency
Jul 23, 2018 @ 14:38:24

The PHPUgly podcast, hosted by Eric Van Johnson, John Congdon and Thomas Rideout, has posted their latest episode: Episode #113 - Excessive Frequency

This month the team discusses a Hacker Breaking Down 'Ocean's 8' Hacking Scenes | WIRED Brand Lab - YouTube

Other topics mentioned include the PHP RFC for object comparison and the mailing list post where Guido van Rossum announcing his resignation as leader of the Python language. You can listen to this latest episode either using the in-page audio player or by downloading the mp3 directly. If you enjoy the show, be sure to subscribe to their feed and follow them on Twitter.

tagged: phpugly podcast ep113 excessive frequency

Link: http://www.phpugly.com/113

.Net Magazine:
Create an SVG data visualization with PHP
Sep 13, 2011 @ 17:13:25

On the .net magazine site (yes, really) there's a recent post from Brian Suda about creating SVG images with PHP thanks to the GD functionality that's included in every release.

If you’re working online, then canvas springs to mind. It allows you to draw raster graphics quickly and easily. If you want, there are also plenty of image code libraries that can generate GIFs, JPEGs and PNGs on request. But what if your target isn't always online? What if you’re aiming for print? Then you could use a raster graphic, but it would need to be pretty large. A better solution is to create a vector-based image format from your code. This is where SVG (Scalable Vector Graphics) steps in.

He starts by explaining a bit about SVG and what it is for those that haven't worked with it before. He givesn an example of a poster from Wired showing circles with colors from their covers over the last 15 years. He shows how to do something similar with images of the .net magazine covers, pulling out the color frequency with the imagecolorat function. Toss in a bit of markup and some formatting of the color output and you'll get circles with concentric rings with the most prominent colors ending up the largest. You can see his result here.

tagged: svg tutorial gd image color frequency

Link:


Trending Topics: