Logo
JPG to ASCII Converter
Online Now: 1

A B C D E F G H I J K L M N O P Q R S T U V W X Y Z Snippets Functions Classes

Home | PHP Resources | MySQL Zipbase | Forums

Snippet Code
Take a JPG image, and convert it to ASCII code!
<html>
<head>
<title>Ascii</title>
<style>
body{
    line-height:1px;
    font-size:1px;
}
</style>
</head>
<body>
<?php
function getext($filename) {
    
$pos strrpos($filename,'.');
    
$str substr($filename$pos);
    return 
$str;
}
if(!isset(
$_POST['submit'])){
?>
<form action="<?echo $_SERVER['PHP_SELF'];?>" method="post">
    JPG img URL: <input type="text" name="image"><br>
    <input type="submit" name="submit" value="Create">
</form>
<?
}else{
    
$image $_POST['image'];
    
$ext getext($image);
    if(
$ext == ".jpg"){
        
$img ImageCreateFromJpeg($image);
    }
    else{
        echo
'Wrong File Type';
    }
    
$width imagesx($img);
    
$height imagesy($img);
    
    for(
$h=0;$h<$height;$h++){
        for(
$w=0;$w<=$width;$w++){
            
$rgb ImageColorAt($img$w$h);
            
$r = ($rgb >> 16) & 0xFF;
            
$g = ($rgb >> 8) & 0xFF;
            
$b $rgb 0xFF;
            if(
$w == $width){
                echo 
'<br>';
            }else{
                echo 
'<span style="color:rgb('.$r.','.$g.','.$b.');">#</span>';
            }
        }
    }
}
?> 
</body>
</html>
 
Snippet Comments

Add Your Comment

Kent UK
2010-07-17 00:00:00
Hi I wondered if anyone can help, I need the same function for Gif, BMP and PNG images. This code worked but I need the images in different formats now thanks Marget
CasTex
2009-11-23 00:00:00
Jpg is sometimes gives errors. Thats why I prefer png.
craig
2009-07-23 00:00:00
I keep getting a parse error for line 53. Is there a ; missing somewhere?
ed
2009-06-04 00:00:00
Solved. Needed to give it a php extension of course, not an html
Anonymous
2009-06-04 00:00:00
apparently php seems to have problems with the double 'greater than signs' in the lines as: $r = ($rgb >> 16) & 0xFF;, which makes it think the php code already stops
ed
2009-06-04 00:00:00
That would be 'fishhook open'?echo $_SERVER['PHP_SELF'];?fishhook closed behind teh url and that is an unknown url
ed
2009-06-04 00:00:00
That would be: behind the URl and that is reported as unknown
ed
2009-06-04 00:00:00
Interesting, too bad it does not work though: when pressing the 'Create' button. Th epost method calls for which is an unknown url
Anonymous
2009-05-09 00:00:00
seriously? you whine about people "taking credit" for this? wow...
Link for Mondrak
2009-03-23 00:00:00
Ach ! the link was stripped ! Click on Mondrak link. Sorry
Mondrak
2009-03-23 00:00:00
I create confusion in the 2 previous comments. To see what I meant see at where I put a living demo. Regards
Mondrak
2009-03-21 00:00:00
The code was filtered: substitute [ with < and ] with > [input type="submit" value=" JPEG img URL " disabled]
Mondrak
2009-03-21 00:00:00
Very nice code even though I've a couple of suggestions: First: instead of "JPEG img URL: " that is showed at 1 px per char I suggest to put the following code: Second: change the input type in "file" so you get a browse button as well. That's it ! Thanks again
Tyranic-Moron
2008-12-09 00:00:00
I think Guyblade means the echo 'br';, which is true. Don't need the if either, then.

Nice code otherwise!
guyblade
2008-12-08 00:00:00
Please move the "echo '';" outside the inner for loop. You don't need to do w*h integer comparisons when you know that it will always be the right time to place one after the innter loop completes.
petemayo
2008-12-08 00:00:00
Very nice!
I have been thinking about doing a script like this forever :)
Great for smaller files.
Too bad it takes so long to render, otherwise could do some cool javascript enlarging / reducing the image.
I bet CSS 3 could do some cool stuff with this as well, doing gradual color fades etc.
Dan
2008-12-08 00:00:00
Awesome....truly awesome. I cannot believe the results, just amazing. Thanks!
Stephen
2007-09-02 00:00:00
Wow! I can't believe such complex output can be achieved by such simple code!!
Travis
2007-06-20 00:00:00
I'm not sure what to say about this..... This crazy! I thought it would be just black and white, but I saw a color and the detail! Awesome!

Add Your Comment

 
Snippet Tools
Rate this Snippet:

Rate the difficulty level:

Request Snippet Update


Suggested Difficulty Level: Novice
Current Score: 3.22
Total votes: 408
Total Views: 28107

Other top snippets by admin:

1. Add (th, st, nd, rd, th) to the end of a number
2. Dynamic Page Content From Links
3. AJAX Quickie
4. Simple Image CAPTCHA
5. Logout Inactive User

Search

Input key terms:
User Panel

User name:

Password:

Register And Post Your Own Snippets

Snippets On Watch

1.  Auth Class with (2.85 of 86)

2.  Test Please Delete (2.9 of 29)

3.  Return all repeated (3.68 of 71)

4.  Convert an integer (3.33 of 70)

5.  URL Shortening for (2.78 of 51)

6.  Monthly Content Sorting (3.05 of 44)

7.  Show String Trimmed (3 of 64)

8.  Human readable file (2.03 of 69)

9.  Randomize array values (2.83 of 81)

10.  Create a recursive (3.39 of 54)

New Snippets

1.  Parse RFC822 date (0 of 0)

2.  Dynamic Image Uploading (5 of 1)

3.  Spam Filter (0 of 0)

4.  Is Multiple (0 of 0)

5.  Base64 Encode / (0 of 0)

6.  URL Encode / (0 of 0)

7.  temp openbills (0 of 0)

8.  Php Iban Validator (0 of 0)

9.  Mysql Table Builder (0 of 0)

10.  File size of (1.75 of 4)

11.  Mail from your (1 of 1)

12.  OddEven Class (0 of 0)

13.  Detect if a (1 of 1)

14.  MB CopyMCF-DIR :: (5 of 1)

15.  Upper/Lower Case Accented (0 of 0)

16.  Zodiac Signs (3 of 1)

17.  Really useful code (2.5 of 2)

18.  Calculate Central European (0 of 0)

19.  Email Attachment (4 of 1)

20.  ImageMagick Image Upload (0 of 0)

21.  convert plain html (2 of 2)

22.  Tag Builder (3.25 of 4)

23.  Get Inserted ID (4.33 of 3)

24.  Watermark An Image (3.33 of 3)

25.  Check Prime Numbers (1.5 of 8)

Home | Forum | Free PHP Web Hosting | Contact | Terms & Conditions |  
Donate
PHPSnips.com - ©2010