Linux sagir-us1.hostever.us 5.14.0-570.51.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Oct 8 09:41:34 EDT 2025 x86_64
LiteSpeed
Server IP : 104.247.108.91 & Your IP : 216.73.216.105
Domains : 74 Domain
User : georgeto
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
doc /
perl-GDGraph /
samples /
Delete
Unzip
Name
Size
Permission
Date
Action
Makefile
2.31
KB
-rw-r--r--
2013-06-26 12:19
error.pl
179
B
-rw-r--r--
2013-06-26 12:19
logo.gif
2.61
KB
-rw-r--r--
2013-06-22 21:40
logo.png
2.86
KB
-rw-r--r--
2013-06-20 21:01
make_index.pl
1.39
KB
-rw-r--r--
2021-12-22 15:41
rgb.txt
16.72
KB
-rw-r--r--
2013-06-20 21:01
sample11.pl
930
B
-rw-r--r--
2015-12-27 16:43
sample12.pl
895
B
-rw-r--r--
2015-12-27 16:43
sample13.pl
805
B
-rw-r--r--
2015-12-27 16:43
sample14.pl
2.45
KB
-rw-r--r--
2015-12-27 16:43
sample15.pl
999
B
-rw-r--r--
2015-12-27 16:43
sample16.pl
1.22
KB
-rw-r--r--
2015-12-27 16:43
sample17.pl
1.04
KB
-rw-r--r--
2015-12-27 16:43
sample18.pl
3.01
KB
-rw-r--r--
2015-12-27 16:43
sample19.pl
2.82
KB
-rw-r--r--
2015-12-27 16:43
sample1A.pl
1.08
KB
-rw-r--r--
2021-12-22 15:41
sample1B.pl
958
B
-rw-r--r--
2015-12-27 16:43
sample21.pl
705
B
-rw-r--r--
2015-12-27 16:43
sample22.pl
563
B
-rw-r--r--
2015-12-27 16:43
sample23.pl
2.69
KB
-rw-r--r--
2015-12-27 16:43
sample29.pl
732
B
-rw-r--r--
2015-12-27 16:43
sample31.pl
706
B
-rw-r--r--
2015-12-27 16:43
sample41.pl
807
B
-rw-r--r--
2015-12-27 16:43
sample42.dat
103
B
-rw-r--r--
2013-06-20 21:01
sample42.pl
974
B
-rw-r--r--
2015-12-27 16:43
sample51.pl
665
B
-rw-r--r--
2015-12-27 16:43
sample52.pl
873
B
-rw-r--r--
2015-12-27 16:43
sample53.pl
1.25
KB
-rw-r--r--
2015-12-27 16:43
sample54.dat
30.73
KB
-rw-r--r--
2013-06-20 21:01
sample54.pl
1.01
KB
-rw-r--r--
2015-12-27 16:43
sample55.pl
665
B
-rw-r--r--
2015-12-27 16:43
sample56.pl
1.16
KB
-rw-r--r--
2015-12-27 16:43
sample57.pl
579
B
-rw-r--r--
2015-12-27 16:43
sample58.pl
715
B
-rw-r--r--
2015-12-27 16:43
sample61.pl
1.33
KB
-rw-r--r--
2015-12-27 16:43
sample62.pl
838
B
-rw-r--r--
2015-12-27 16:43
sample63.pl
1.03
KB
-rw-r--r--
2015-12-27 16:43
sample64.pl
1.42
KB
-rw-r--r--
2021-12-22 15:41
sample71.pl
2.56
KB
-rw-r--r--
2015-12-27 16:43
sample72.pl
1.04
KB
-rw-r--r--
2015-12-27 16:43
sample91.pl
512
B
-rw-r--r--
2015-12-27 16:43
sample92.pl
616
B
-rw-r--r--
2015-12-27 16:43
sample93.pl
491
B
-rw-r--r--
2015-12-27 16:43
sample94.pl
685
B
-rw-r--r--
2015-12-27 16:43
sample95.pl
2.62
KB
-rw-r--r--
2015-12-27 16:43
save.pl
288
B
-rw-r--r--
2015-12-27 16:43
Save
Rename
# This Makefile requires GNU make. If you have anything else, it is very # likely that you won't be able to use this. Two pieces of advice: # # Get GNU make. It's free, and superior to many others # # Run the examples by hand, one by one, or do something like # # tcsh> foreach s (*.pl) # foreach> perl -I. -Mblib -Tw $s # foreach> end # # If you use an old version of GD that exports GIF, you will need to # have ImageMagick installed, or you need to provide another way to # convert logo.png to logo.gif. .SILENT: PERL = perl EXTRA_OPTS = OPTIONS = -I. -Mblib $(EXTRA_OPTS) -w EXT := $(shell perl $(OPTIONS) -MGD::Graph \ -e 'print scalar GD::Graph::export_format') # Samples # sample1? : bars # sample2? : area # sample3? : points # sample4? : linespoints # sample5? : lines # sample6? : mixed # sample7? : tricks and test cases # sample9? : pie SAMPLES := \ sample11 sample12 sample13 sample14 sample15 \ sample16 sample17 sample18 sample19 sample1A sample1B \ sample11-h sample12-h sample13-h sample14-h sample15-h \ sample16-h sample17-h sample18-h sample19-h sample1A-h sample1B-h\ sample21 sample22 sample23 \ sample31 \ sample41 sample42\ sample51 sample52 sample53 sample54 sample55 sample56 \ sample57 sample58 \ sample61 sample62 sample63 sample64 \ sample71 sample72 \ sample91 sample92 sample93 sample94 sample95 sample95-h IMAGES := $(SAMPLES:%=%.$(EXT)) all: $(IMAGES) echo "" echo These samples are both examples and test cases. Therefore echo some of them might look slightly unrealistic. info: $(PERL) $(OPTIONS) -le 'print "Perl ", $$]' $(PERL) $(OPTIONS) -MGD -le 'print "GD ", $$GD::VERSION' $(PERL) $(OPTIONS) -MGD::Text \ -le 'print "GD::Text ", $$GD::Text::VERSION' $(PERL) $(OPTIONS) -MGD::Graph \ -le 'print "GD::Graph ", $$GD::Graph::VERSION' $(PERL) $(OPTIONS) -le 'for (@INC) {print}' %.$(EXT) %-h.$(EXT): %.pl $(PERL) $(OPTIONS) $< # EXPERIMENTAL, for internal use only. Don't try to run this html: make_index.pl Makefile $(PERL) $(OPTIONS) make_index.pl $(EXT) # Requires ImageMagick to be installed logo.gif: logo.png convert logo.png logo.gif clean: rm -f $(IMAGES) logo.gif # Other dependencies sample14.$(EXT): logo.$(EXT) sample42.$(EXT): sample42.dat sample54.$(EXT): sample54.dat sample56.$(EXT): sample54.dat sample53.$(EXT): rgb.txt