Your IP : 216.73.217.79


Current Path : /var/www/cesa.co.za/fpdf/samples/
Upload File :
Current File : /var/www/cesa.co.za/fpdf/samples/sample.batch.php

<?php

$urls = array(
              'http://247realmedia.com',
              'http://888.com',
              'http://abetterinternet.com',
              'http://adsense.google.com',
              'http://allwomencentral.com/?r=sub',
#              'http://aol.com', // take to long to process
              'http://www.articlehub.com/add.html',
              'http://aur.archlinux.org',
              'http://bbc.co.uk',
              'http://benews.net',
              'http://casalemedia.com',
              'http://cnn.com',
              'http://www.codeguru.com/register.php', 
              'http://cra-arc.gc.ca/menu-e.html',
              'http://crux.nu',
              'http://cs.wisc.edu/~ghost/',
              'http://distrowatch.com',
              'http://dmoz.org/cgi-bin/apply.cgi?submit=Proceed&where=Business%2FEmployment%2FCareers&id=&lk=&loc=', // Connect
              'http://download.com',
              'http://ebay.com',
              'http://ewizard.com',
              'http://exactsearch.net',
              'http://exitexchange.com',
              'http://ezinearticles.com/submit',
              'http://falkag.net',
              'http://fedora.redhat.com',
              'http://freebsd.org',
              'http://freewho.com/expired/index.php',
              'http://gentoo.org',
              'http://geocities.com',
              'http://www.getafreelancer.com/users/signup.php',
              'http://gmail.com',
              'http://go.com',
              'http://google.co.in',
              'http://google.com/about.html',
              'http://google.com/froogle',
              'http://google.com/services/',
              'http://google.fi/fi',
              'http://guru.com/pro/post_profile.cfm',
              'http://hamster.sazco.net',
              'http://www-128.ibm.com/developerworks/linux/library/l-proc.html',
              'http://hotmail.com',
              'http://indianrail.gov.in',
              'http://internet-optimizer.com',
              'http://jakpsatweb.cz/css/css-vertical-center-solution.html',
              'http://jobsearch.monsterindia.com/advanced_job_search.html',
              'http://johnlewis.com',
              'http://kubuntu.org',
              'http://lyrc.com.ar/en/add/add.php',
              'http://microsoft.com',
              'http://msn.com',
              'http://myblog.de',
              'http://myway.com',
              'http://mywebsearch.com',
              'http://net-offers.net',
              'http://netscape.com',
              'http://netvenda.com',
              'http://offeroptimizer.com',
              'http://onet.pl',
              'http://opensuse.org',
              'http://osnews.com',
              'http://papajohns.com',
              'http://partypoker.com',
              'http://passport.com',
              'http://php.net',
              'http://pilger.carlton.com',
              'http://priyank.one09.net',
              'http://python.org/~guido/',
              'http://realmedia.com',
              'http://rentacoder.com',
              'http://revenue.net',
              'http://rubixlinux.org',
              'http://sage.com/local/regionNorthAmerica.aspx',
              'http://searchscout.com',
              'http://search.ebay.in/ws/search/AdvSearch?sofindtype=13',
              'http://services.princetonreview.com/register.asp?RUN=%2FstudentTools%2FstudentTool%2Easp&RCN=auth&RDN=1&ALD=http%3A%2F%2Ftestprep%2Eprincetonreview%2Ecom',
              'http://smarty.php.net',
              'http://stallman.org',
              'http://stanton-finley.net/fedora_core_5_installation_notes.html',
              'http://thefacebook.com',
              'http://tickle.com',
              'http://trafficmp.com',
              'http://tufat.com',
              'http://ubuntu.com',
              'http://user.it.uu.se/~jan/html2ps.html',
              'http://vianet.com.pl',
              'http://website.in/domain.php',
              'http://whenu.com',
              'http://whitehouse.gov',
              'http://whois.org/',
              'http://en.wikipedia.org',
              'http://en.wikipedia.org/w/index.php?title=Spangenhelm&action=edit',
              'http://wolfram.com',
              'http://www.xe.com/ucc',
              'http://yahoo.com',
              'http://yahoomail.com',
              'http://edit.yahoo.com/config/eval_register',
              'http://zango.com'
              );


require_once(dirname(__FILE__).'/../config.inc.php');
require_once(dirname(__FILE__).'/../pipeline.class.php');

parse_config_file(dirname(__FILE__).'/../html2ps.config');

$g_config = array(
                  'cssmedia'     => 'screen',
                  'renderimages' => true,
                  'renderforms'  => true,
                  'renderlinks'  => true,
                  'mode'         => 'html',
                  'debugbox'     => false,
                  'draw_page_border' => false
                  );
require_once(dirname(__FILE__).'/../config.inc.php');
require_once(HTML2PS_DIR.'pipeline.class.php');
require_once(HTML2PS_DIR.'fetcher.url.class.php');
parse_config_file(HTML2PS_DIR.'html2ps.config');

$g_config = array(
                  'cssmedia'     => 'screen',
                  'renderimages' => true,
                  'renderforms'  => false,
                  'renderlinks'  => true,
                  'mode'         => 'html',
                  'debugbox'     => false,
                  'draw_page_border' => false
                  );

$media = Media::predefined('A4');
$media->set_landscape(false);
$media->set_margins(array('left'   => 0,
                          'right'  => 0,
                          'top'    => 0,
                          'bottom' => 0));
$media->set_pixels(1024);

$g_px_scale = mm2pt($media->width() - $media->margins['left'] - $media->margins['right']) / $media->pixels;
$g_pt_scale = $g_px_scale * 1.43; 


foreach($urls as $url) {
  $url_file = str_replace('http://' ,'', $url);
  $url_file = str_replace(':', '_', $url_file);
  $url_file = str_replace('/', '_', $url_file);
  $url_file = str_replace('.', '_', $url_file);

  $pipeline = new Pipeline;
  $pipeline->configure($g_config);
  $pipeline->fetchers[]     = new FetcherURL;
  $pipeline->data_filters[] = new DataFilterHTML2XHTML;
  $pipeline->parser         = new ParserXHTML;
  $pipeline->layout_engine  = new LayoutEngineDefault;
  $pipeline->output_driver  = new OutputDriverFPDF($media);
  $pipeline->destination    = new DestinationFile($url_file);


  if (!file_exists(dirname(__FILE__).'/../out/'.$url_file.'.pdf')) {
    print $url."\n";
    $pipeline->process($url, $media); 
  }
}