1. Advertising
    y u no do it?

    Advertising (learn more)

    Advertise virtually anything here, with CPM banner ads, CPM email ads and CPC contextual links. You can target relevant areas of the site and show ads based on geographical location of the user if you wish.

    Starts at just $1 per CPM or $0.10 per CPC.

Fake Newspaper Ads - anyone know of a generator?

Discussion in 'Content Management' started by sarahk, Mar 31, 2006.

  1. #1
    I want to create a fun, fake newspaper ad and have the image on my site.

    I've seen tools to create images for Church billboards etc but not newspapers. Can anyone point me in the right direction?


    thanks

    Sarah
     
    sarahk, Mar 31, 2006 IP
  2. genkied

    genkied Active Member

    Messages:
    2,025
    Likes Received:
    39
    Best Answers:
    0
    Trophy Points:
    90
    #2
    way back in college i create a fake news paper in our fraternity website.. i use photoshop.
     
    genkied, Apr 1, 2006 IP
    sarahk likes this.
  3. balkanboy

    balkanboy Banned

    Messages:
    1,950
    Likes Received:
    245
    Best Answers:
    0
    Trophy Points:
    0
  4. TommyD

    TommyD Peon

    Messages:
    1,397
    Likes Received:
    76
    Best Answers:
    0
    Trophy Points:
    0
    #4
    TommyD, Apr 2, 2006 IP
  5. sarahk

    sarahk iTamer Staff

    Messages:
    28,621
    Likes Received:
    4,485
    Best Answers:
    123
    Trophy Points:
    665
    #5
    I'll check out balkanboy's suggestion. I was hoping for something with GD to make it look like a scrap of paper eg
     

    Attached Files:

    sarahk, Apr 2, 2006 IP
  6. comp71

    comp71 Active Member

    Messages:
    107
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    58
    #6
    I use photoshop as well, sounds like a funny idea.
     
    comp71, Apr 6, 2006 IP
  7. sarahk

    sarahk iTamer Staff

    Messages:
    28,621
    Likes Received:
    4,485
    Best Answers:
    123
    Trophy Points:
    665
    #7

    Attached Files:

    sarahk, Apr 6, 2006 IP
  8. Shoemoney

    Shoemoney $

    Messages:
    4,474
    Likes Received:
    588
    Best Answers:
    0
    Trophy Points:
    295
    #8
    sarah gimme a few mins ;)
     
    Shoemoney, Apr 6, 2006 IP
  9. Shoemoney

    Shoemoney $

    Messages:
    4,474
    Likes Received:
    588
    Best Answers:
    0
    Trophy Points:
    295
    #9
    any gueses on what font that is ?
     
    Shoemoney, Apr 6, 2006 IP
  10. sarahk

    sarahk iTamer Staff

    Messages:
    28,621
    Likes Received:
    4,485
    Best Answers:
    123
    Trophy Points:
    665
    #10

    Attached Files:

    sarahk, Apr 6, 2006 IP
    mcfox and genkied like this.
  11. genkied

    genkied Active Member

    Messages:
    2,025
    Likes Received:
    39
    Best Answers:
    0
    Trophy Points:
    90
    #11
    nice one sarah...hehehhe photoshop will takes a lot of time..
     
    genkied, Apr 7, 2006 IP
  12. Shoemoney

    Shoemoney $

    Messages:
    4,474
    Likes Received:
    588
    Best Answers:
    0
    Trophy Points:
    295
    #12
    I made it but tweaking to get the right font... any ideas?


    link here


    Just edit the line1 line2 line3

    http://www.shoemoney.com/sarak/news.php?line1=Hi%20SARAK%20FROM%20DP&line2=for%20sale%20one%20sarak%20for%20only&line3=599$%20while%20supplies%20last!!%20Call%20NOW!
     
    Shoemoney, Apr 7, 2006 IP
  13. sarahk

    sarahk iTamer Staff

    Messages:
    28,621
    Likes Received:
    4,485
    Best Answers:
    123
    Trophy Points:
    665
    #13
    I'm honored

    http://www.shoemoney.com/sarak/news.php?line1=66%20Bambina,%20Red&line2=tidy%20body,%20runs%20well,%201%20owner&line3=$599%205nz.com/4de1d9

    thanks!
     
    sarahk, Apr 7, 2006 IP
  14. Shoemoney

    Shoemoney $

    Messages:
    4,474
    Likes Received:
    588
    Best Answers:
    0
    Trophy Points:
    295
    #14
    here is the source... I really didnt have much time to work on it

    <?php
    $line1 = $_REQUEST['line1'];
    $line2 = $_REQUEST['line2'];
    $line3 = $_REQUEST['line3'];
    // Set the content-type
    header("Content-type: image/jpeg");
    // Create the image
    $im = @imagecreatefromjpeg ("news.jpg") or die("shit");
    
    $black = imagecolorallocate($im, 40, 40, 40);
    // The text to draw
    
    // Replace path by your own font path
    $font = '/home/websites/shoemoney/html/sarak/arial.ttf';
    
    // Add some shadow to the text
    // Add the text
    imagettftext($im, 16, 0, 110, 250, $black, $font, $line1);
    imagettftext($im, 12, 0, 100, 265, $black, $font, $line2);
    imagettftext($im, 12, 0, 80, 278, $black, $font, $line3);
    
    
    // Using imagejpeg() results in clearer text compared with imagejpeg()
    imagejpeg($im);
    imagedestroy($im);
    ?>
    PHP:
     
    Shoemoney, Apr 7, 2006 IP
    genkied likes this.
  15. Shoemoney

    Shoemoney $

    Messages:
    4,474
    Likes Received:
    588
    Best Answers:
    0
    Trophy Points:
    295
    #15
    or better yet here is the full source with image and font file

    Here

    I was more trying to help you get in the right direction with a working example. Let me know if you have any questions
     
    Shoemoney, Apr 7, 2006 IP