Changeset 3675


Ignore:
Timestamp:
01/10/11 15:09:45 (13 years ago)
Author:
alexandrecorreia
Message:

Ticket #1379 - Assinando a applet de envio avancado com os dados do Expresso Livre

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2.2/filemanager/tp/dompdf/include/tcpdf_adapter.cls.php

    r3674 r3675  
    365365   * @param bool $fill Fills the circle if true    
    366366   */    
    367   function circle($x, $y, $r, $color, $width = null, $style = null, $fill = false); 
     367  function circle($x, $y, $r, $color, $width = null, $style = null, $fill = false){} 
    368368 
    369369  /** 
     
    380380   * @param int $h height (in pixels) 
    381381   */ 
    382   function image($img_url, $img_type, $x, $y, $w, $h); 
     382  function image($img_url, $img_type, $x, $y, $w, $h){} 
    383383 
    384384  /** 
     
    395395   * @param float $adjust word spacing adjustment 
    396396   */ 
    397   function text($x, $y, $text, $font, $size, $color = array(0,0,0), $adjust = 0); 
     397  function text($x, $y, $text, $font, $size, $color = array(0,0,0), $adjust = 0){} 
    398398 
    399399  /** 
     
    402402   * @param string $anchorname The name of the named destination 
    403403   */ 
    404   function add_named_dest($anchorname); 
     404  function add_named_dest($anchorname){} 
    405405 
    406406  /** 
     
    413413   * @param float  $height   The height of the link 
    414414   */ 
    415   function add_link($url, $x, $y, $width, $height); 
     415  function add_link($url, $x, $y, $width, $height){} 
    416416   
    417417  /** 
     
    424424   * @return float 
    425425   */ 
    426   function get_text_width($text, $font, $size, $spacing = 0); 
     426  function get_text_width($text, $font, $size, $spacing = 0){} 
    427427 
    428428  /** 
     
    433433   * @return float 
    434434   */ 
    435   function get_font_height($font, $size); 
     435  function get_font_height($font, $size){} 
    436436 
    437437   
     
    441441   * Subsequent drawing operations will appear on the new page. 
    442442   */ 
    443   function new_page(); 
     443  function new_page(){} 
    444444 
    445445  /** 
     
    449449   * @param array  $options associative array, 'Attachment' => 0 or 1, 'compress' => 1 or 0 
    450450   */ 
    451   function stream($filename, $options = null); 
     451  function stream($filename, $options = null){} 
    452452 
    453453  /** 
     
    457457   * @return string 
    458458   */ 
    459   function output($options = null); 
     459  function output($options = null){} 
    460460   
    461461} 
Note: See TracChangeset for help on using the changeset viewer.