line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
1
|
|
|
1
|
|
1281
|
use Renard::Incunabula::Common::Setup; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
8
|
|
2
|
|
|
|
|
|
|
package Renard::Incunabula::Page::RenderedFromPNG; |
3
|
|
|
|
|
|
|
# ABSTRACT: Page generated from PNG data |
4
|
|
|
|
|
|
|
$Renard::Incunabula::Page::RenderedFromPNG::VERSION = '0.003'; |
5
|
1
|
|
|
1
|
|
786
|
use Moo; |
|
1
|
|
|
|
|
8629
|
|
|
1
|
|
|
|
|
9
|
|
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
with qw( |
8
|
|
|
|
|
|
|
Renard::Incunabula::Page::Role::CairoRenderableFromPNG |
9
|
|
|
|
|
|
|
Renard::Incunabula::Page::Role::BoundsFromCairoImageSurface |
10
|
|
|
|
|
|
|
); |
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
1; |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
__END__ |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
=pod |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
=encoding UTF-8 |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
=head1 NAME |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
Renard::Incunabula::Page::RenderedFromPNG - Page generated from PNG data |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
=head1 VERSION |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
version 0.003 |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
=head1 EXTENDS |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
=over 4 |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
=item * L<Moo::Object> |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
=back |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
=head1 CONSUMES |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
=over 4 |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
=item * L<Renard::Incunabula::Page::Role::Bounds> |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
=item * L<Renard::Incunabula::Page::Role::BoundsFromCairoImageSurface> |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
=item * L<Renard::Incunabula::Page::Role::CairoRenderable> |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
=item * L<Renard::Incunabula::Page::Role::CairoRenderableFromPNG> |
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
=back |
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
=head1 AUTHOR |
51
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
Project Renard |
53
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
=head1 COPYRIGHT AND LICENSE |
55
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
This software is copyright (c) 2017 by Project Renard. |
57
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
This is free software; you can redistribute it and/or modify it under |
59
|
|
|
|
|
|
|
the same terms as the Perl 5 programming language system itself. |
60
|
|
|
|
|
|
|
|
61
|
|
|
|
|
|
|
=cut |