mirror of
https://github.com/pdf2htmlEX/pdf2htmlEX.git
synced 2024-12-22 04:50:09 +00:00
Merge pull request #15 from stephengaito/staticBuild
Static build Remove the FontForge and Poppler Cairo sources from the main pdf2htmlEX source tree. Build both FontForge and Poppler statically and then link into pdf2htmlEX so there is no longer any need to locally install versions of FontForge or Poppler which are compatible with pdf2htmlEX (and so we reduce conflicts with any FontForge or Poppler libraries installed by the user).
This commit is contained in:
commit
ece34e216f
@ -44,6 +44,11 @@ cd fontforge
|
||||
--enable-python-scripting=3 \
|
||||
--disable-dependency-tracking \
|
||||
--disable-silent-rules \
|
||||
--disable-python-scripting \
|
||||
--disable-python-extension \
|
||||
--disable-shared \
|
||||
--enable-static \
|
||||
--with-pic \
|
||||
--without-x
|
||||
|
||||
# Apply any patches required for fontforge raw sources before we make
|
||||
|
@ -34,13 +34,13 @@ export PDF2HTMLEX_PREFIX=/usr/local
|
||||
|
||||
./buildScripts/buildPoppler || { echo 'buildPoppler FAILED' ; exit 1 ; }
|
||||
|
||||
./buildScripts/installPoppler || { echo 'installPoppler FAILED' ; exit 1 ; }
|
||||
#./buildScripts/installPoppler || { echo 'installPoppler FAILED' ; exit 1 ; }
|
||||
|
||||
./buildScripts/getFontforge || { echo 'getFontforge FAILED' ; exit 1 ; }
|
||||
|
||||
./buildScripts/buildFontforge || { echo 'buildFontforge FAILED' ; exit 1 ; }
|
||||
|
||||
./buildScripts/installFontforge || { echo 'installFontforge FAILED' ; exit 1 ; }
|
||||
#./buildScripts/installFontforge || { echo 'installFontforge FAILED' ; exit 1 ; }
|
||||
|
||||
./buildScripts/buildPdf2htmlEX || { echo 'buildPdf2htmlEX FAILED' ; exit 1 ; }
|
||||
|
||||
|
@ -11,6 +11,10 @@ echo ""
|
||||
cd poppler
|
||||
mkdir build
|
||||
cd build
|
||||
cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=$PDF2HTMLEX_PREFIX \
|
||||
-DENABLE_LIBOPENJPEG=none ..
|
||||
cmake \
|
||||
-DCMAKE_BUILD_TYPE=Release \
|
||||
-DBUILD_SHARED_LIBS:BOOL=OFF \
|
||||
-DCMAKE_INSTALL_PREFIX=$PDF2HTMLEX_PREFIX \
|
||||
-DENABLE_LIBOPENJPEG=none \
|
||||
..
|
||||
make $MAKE_PARALLEL
|
||||
|
@ -16,6 +16,8 @@ echo "Getting poppler version: $POPPLER_VERSION"
|
||||
|
||||
rm -rf $POPPLER_VERSION.tar.xz
|
||||
rm -rf poppler
|
||||
rm -rf poppler-data-0.4.9.tar.gz
|
||||
rm -rf poppler-data
|
||||
|
||||
wget https://poppler.freedesktop.org/$POPPLER_VERSION.tar.xz
|
||||
|
||||
|
674
pdf2htmlEX/3rdparty/poppler/COPYING3
vendored
674
pdf2htmlEX/3rdparty/poppler/COPYING3
vendored
@ -1,674 +0,0 @@
|
||||
GNU GENERAL PUBLIC LICENSE
|
||||
Version 3, 29 June 2007
|
||||
|
||||
Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
|
||||
Everyone is permitted to copy and distribute verbatim copies
|
||||
of this license document, but changing it is not allowed.
|
||||
|
||||
Preamble
|
||||
|
||||
The GNU General Public License is a free, copyleft license for
|
||||
software and other kinds of works.
|
||||
|
||||
The licenses for most software and other practical works are designed
|
||||
to take away your freedom to share and change the works. By contrast,
|
||||
the GNU General Public License is intended to guarantee your freedom to
|
||||
share and change all versions of a program--to make sure it remains free
|
||||
software for all its users. We, the Free Software Foundation, use the
|
||||
GNU General Public License for most of our software; it applies also to
|
||||
any other work released this way by its authors. You can apply it to
|
||||
your programs, too.
|
||||
|
||||
When we speak of free software, we are referring to freedom, not
|
||||
price. Our General Public Licenses are designed to make sure that you
|
||||
have the freedom to distribute copies of free software (and charge for
|
||||
them if you wish), that you receive source code or can get it if you
|
||||
want it, that you can change the software or use pieces of it in new
|
||||
free programs, and that you know you can do these things.
|
||||
|
||||
To protect your rights, we need to prevent others from denying you
|
||||
these rights or asking you to surrender the rights. Therefore, you have
|
||||
certain responsibilities if you distribute copies of the software, or if
|
||||
you modify it: responsibilities to respect the freedom of others.
|
||||
|
||||
For example, if you distribute copies of such a program, whether
|
||||
gratis or for a fee, you must pass on to the recipients the same
|
||||
freedoms that you received. You must make sure that they, too, receive
|
||||
or can get the source code. And you must show them these terms so they
|
||||
know their rights.
|
||||
|
||||
Developers that use the GNU GPL protect your rights with two steps:
|
||||
(1) assert copyright on the software, and (2) offer you this License
|
||||
giving you legal permission to copy, distribute and/or modify it.
|
||||
|
||||
For the developers' and authors' protection, the GPL clearly explains
|
||||
that there is no warranty for this free software. For both users' and
|
||||
authors' sake, the GPL requires that modified versions be marked as
|
||||
changed, so that their problems will not be attributed erroneously to
|
||||
authors of previous versions.
|
||||
|
||||
Some devices are designed to deny users access to install or run
|
||||
modified versions of the software inside them, although the manufacturer
|
||||
can do so. This is fundamentally incompatible with the aim of
|
||||
protecting users' freedom to change the software. The systematic
|
||||
pattern of such abuse occurs in the area of products for individuals to
|
||||
use, which is precisely where it is most unacceptable. Therefore, we
|
||||
have designed this version of the GPL to prohibit the practice for those
|
||||
products. If such problems arise substantially in other domains, we
|
||||
stand ready to extend this provision to those domains in future versions
|
||||
of the GPL, as needed to protect the freedom of users.
|
||||
|
||||
Finally, every program is threatened constantly by software patents.
|
||||
States should not allow patents to restrict development and use of
|
||||
software on general-purpose computers, but in those that do, we wish to
|
||||
avoid the special danger that patents applied to a free program could
|
||||
make it effectively proprietary. To prevent this, the GPL assures that
|
||||
patents cannot be used to render the program non-free.
|
||||
|
||||
The precise terms and conditions for copying, distribution and
|
||||
modification follow.
|
||||
|
||||
TERMS AND CONDITIONS
|
||||
|
||||
0. Definitions.
|
||||
|
||||
"This License" refers to version 3 of the GNU General Public License.
|
||||
|
||||
"Copyright" also means copyright-like laws that apply to other kinds of
|
||||
works, such as semiconductor masks.
|
||||
|
||||
"The Program" refers to any copyrightable work licensed under this
|
||||
License. Each licensee is addressed as "you". "Licensees" and
|
||||
"recipients" may be individuals or organizations.
|
||||
|
||||
To "modify" a work means to copy from or adapt all or part of the work
|
||||
in a fashion requiring copyright permission, other than the making of an
|
||||
exact copy. The resulting work is called a "modified version" of the
|
||||
earlier work or a work "based on" the earlier work.
|
||||
|
||||
A "covered work" means either the unmodified Program or a work based
|
||||
on the Program.
|
||||
|
||||
To "propagate" a work means to do anything with it that, without
|
||||
permission, would make you directly or secondarily liable for
|
||||
infringement under applicable copyright law, except executing it on a
|
||||
computer or modifying a private copy. Propagation includes copying,
|
||||
distribution (with or without modification), making available to the
|
||||
public, and in some countries other activities as well.
|
||||
|
||||
To "convey" a work means any kind of propagation that enables other
|
||||
parties to make or receive copies. Mere interaction with a user through
|
||||
a computer network, with no transfer of a copy, is not conveying.
|
||||
|
||||
An interactive user interface displays "Appropriate Legal Notices"
|
||||
to the extent that it includes a convenient and prominently visible
|
||||
feature that (1) displays an appropriate copyright notice, and (2)
|
||||
tells the user that there is no warranty for the work (except to the
|
||||
extent that warranties are provided), that licensees may convey the
|
||||
work under this License, and how to view a copy of this License. If
|
||||
the interface presents a list of user commands or options, such as a
|
||||
menu, a prominent item in the list meets this criterion.
|
||||
|
||||
1. Source Code.
|
||||
|
||||
The "source code" for a work means the preferred form of the work
|
||||
for making modifications to it. "Object code" means any non-source
|
||||
form of a work.
|
||||
|
||||
A "Standard Interface" means an interface that either is an official
|
||||
standard defined by a recognized standards body, or, in the case of
|
||||
interfaces specified for a particular programming language, one that
|
||||
is widely used among developers working in that language.
|
||||
|
||||
The "System Libraries" of an executable work include anything, other
|
||||
than the work as a whole, that (a) is included in the normal form of
|
||||
packaging a Major Component, but which is not part of that Major
|
||||
Component, and (b) serves only to enable use of the work with that
|
||||
Major Component, or to implement a Standard Interface for which an
|
||||
implementation is available to the public in source code form. A
|
||||
"Major Component", in this context, means a major essential component
|
||||
(kernel, window system, and so on) of the specific operating system
|
||||
(if any) on which the executable work runs, or a compiler used to
|
||||
produce the work, or an object code interpreter used to run it.
|
||||
|
||||
The "Corresponding Source" for a work in object code form means all
|
||||
the source code needed to generate, install, and (for an executable
|
||||
work) run the object code and to modify the work, including scripts to
|
||||
control those activities. However, it does not include the work's
|
||||
System Libraries, or general-purpose tools or generally available free
|
||||
programs which are used unmodified in performing those activities but
|
||||
which are not part of the work. For example, Corresponding Source
|
||||
includes interface definition files associated with source files for
|
||||
the work, and the source code for shared libraries and dynamically
|
||||
linked subprograms that the work is specifically designed to require,
|
||||
such as by intimate data communication or control flow between those
|
||||
subprograms and other parts of the work.
|
||||
|
||||
The Corresponding Source need not include anything that users
|
||||
can regenerate automatically from other parts of the Corresponding
|
||||
Source.
|
||||
|
||||
The Corresponding Source for a work in source code form is that
|
||||
same work.
|
||||
|
||||
2. Basic Permissions.
|
||||
|
||||
All rights granted under this License are granted for the term of
|
||||
copyright on the Program, and are irrevocable provided the stated
|
||||
conditions are met. This License explicitly affirms your unlimited
|
||||
permission to run the unmodified Program. The output from running a
|
||||
covered work is covered by this License only if the output, given its
|
||||
content, constitutes a covered work. This License acknowledges your
|
||||
rights of fair use or other equivalent, as provided by copyright law.
|
||||
|
||||
You may make, run and propagate covered works that you do not
|
||||
convey, without conditions so long as your license otherwise remains
|
||||
in force. You may convey covered works to others for the sole purpose
|
||||
of having them make modifications exclusively for you, or provide you
|
||||
with facilities for running those works, provided that you comply with
|
||||
the terms of this License in conveying all material for which you do
|
||||
not control copyright. Those thus making or running the covered works
|
||||
for you must do so exclusively on your behalf, under your direction
|
||||
and control, on terms that prohibit them from making any copies of
|
||||
your copyrighted material outside their relationship with you.
|
||||
|
||||
Conveying under any other circumstances is permitted solely under
|
||||
the conditions stated below. Sublicensing is not allowed; section 10
|
||||
makes it unnecessary.
|
||||
|
||||
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
|
||||
|
||||
No covered work shall be deemed part of an effective technological
|
||||
measure under any applicable law fulfilling obligations under article
|
||||
11 of the WIPO copyright treaty adopted on 20 December 1996, or
|
||||
similar laws prohibiting or restricting circumvention of such
|
||||
measures.
|
||||
|
||||
When you convey a covered work, you waive any legal power to forbid
|
||||
circumvention of technological measures to the extent such circumvention
|
||||
is effected by exercising rights under this License with respect to
|
||||
the covered work, and you disclaim any intention to limit operation or
|
||||
modification of the work as a means of enforcing, against the work's
|
||||
users, your or third parties' legal rights to forbid circumvention of
|
||||
technological measures.
|
||||
|
||||
4. Conveying Verbatim Copies.
|
||||
|
||||
You may convey verbatim copies of the Program's source code as you
|
||||
receive it, in any medium, provided that you conspicuously and
|
||||
appropriately publish on each copy an appropriate copyright notice;
|
||||
keep intact all notices stating that this License and any
|
||||
non-permissive terms added in accord with section 7 apply to the code;
|
||||
keep intact all notices of the absence of any warranty; and give all
|
||||
recipients a copy of this License along with the Program.
|
||||
|
||||
You may charge any price or no price for each copy that you convey,
|
||||
and you may offer support or warranty protection for a fee.
|
||||
|
||||
5. Conveying Modified Source Versions.
|
||||
|
||||
You may convey a work based on the Program, or the modifications to
|
||||
produce it from the Program, in the form of source code under the
|
||||
terms of section 4, provided that you also meet all of these conditions:
|
||||
|
||||
a) The work must carry prominent notices stating that you modified
|
||||
it, and giving a relevant date.
|
||||
|
||||
b) The work must carry prominent notices stating that it is
|
||||
released under this License and any conditions added under section
|
||||
7. This requirement modifies the requirement in section 4 to
|
||||
"keep intact all notices".
|
||||
|
||||
c) You must license the entire work, as a whole, under this
|
||||
License to anyone who comes into possession of a copy. This
|
||||
License will therefore apply, along with any applicable section 7
|
||||
additional terms, to the whole of the work, and all its parts,
|
||||
regardless of how they are packaged. This License gives no
|
||||
permission to license the work in any other way, but it does not
|
||||
invalidate such permission if you have separately received it.
|
||||
|
||||
d) If the work has interactive user interfaces, each must display
|
||||
Appropriate Legal Notices; however, if the Program has interactive
|
||||
interfaces that do not display Appropriate Legal Notices, your
|
||||
work need not make them do so.
|
||||
|
||||
A compilation of a covered work with other separate and independent
|
||||
works, which are not by their nature extensions of the covered work,
|
||||
and which are not combined with it such as to form a larger program,
|
||||
in or on a volume of a storage or distribution medium, is called an
|
||||
"aggregate" if the compilation and its resulting copyright are not
|
||||
used to limit the access or legal rights of the compilation's users
|
||||
beyond what the individual works permit. Inclusion of a covered work
|
||||
in an aggregate does not cause this License to apply to the other
|
||||
parts of the aggregate.
|
||||
|
||||
6. Conveying Non-Source Forms.
|
||||
|
||||
You may convey a covered work in object code form under the terms
|
||||
of sections 4 and 5, provided that you also convey the
|
||||
machine-readable Corresponding Source under the terms of this License,
|
||||
in one of these ways:
|
||||
|
||||
a) Convey the object code in, or embodied in, a physical product
|
||||
(including a physical distribution medium), accompanied by the
|
||||
Corresponding Source fixed on a durable physical medium
|
||||
customarily used for software interchange.
|
||||
|
||||
b) Convey the object code in, or embodied in, a physical product
|
||||
(including a physical distribution medium), accompanied by a
|
||||
written offer, valid for at least three years and valid for as
|
||||
long as you offer spare parts or customer support for that product
|
||||
model, to give anyone who possesses the object code either (1) a
|
||||
copy of the Corresponding Source for all the software in the
|
||||
product that is covered by this License, on a durable physical
|
||||
medium customarily used for software interchange, for a price no
|
||||
more than your reasonable cost of physically performing this
|
||||
conveying of source, or (2) access to copy the
|
||||
Corresponding Source from a network server at no charge.
|
||||
|
||||
c) Convey individual copies of the object code with a copy of the
|
||||
written offer to provide the Corresponding Source. This
|
||||
alternative is allowed only occasionally and noncommercially, and
|
||||
only if you received the object code with such an offer, in accord
|
||||
with subsection 6b.
|
||||
|
||||
d) Convey the object code by offering access from a designated
|
||||
place (gratis or for a charge), and offer equivalent access to the
|
||||
Corresponding Source in the same way through the same place at no
|
||||
further charge. You need not require recipients to copy the
|
||||
Corresponding Source along with the object code. If the place to
|
||||
copy the object code is a network server, the Corresponding Source
|
||||
may be on a different server (operated by you or a third party)
|
||||
that supports equivalent copying facilities, provided you maintain
|
||||
clear directions next to the object code saying where to find the
|
||||
Corresponding Source. Regardless of what server hosts the
|
||||
Corresponding Source, you remain obligated to ensure that it is
|
||||
available for as long as needed to satisfy these requirements.
|
||||
|
||||
e) Convey the object code using peer-to-peer transmission, provided
|
||||
you inform other peers where the object code and Corresponding
|
||||
Source of the work are being offered to the general public at no
|
||||
charge under subsection 6d.
|
||||
|
||||
A separable portion of the object code, whose source code is excluded
|
||||
from the Corresponding Source as a System Library, need not be
|
||||
included in conveying the object code work.
|
||||
|
||||
A "User Product" is either (1) a "consumer product", which means any
|
||||
tangible personal property which is normally used for personal, family,
|
||||
or household purposes, or (2) anything designed or sold for incorporation
|
||||
into a dwelling. In determining whether a product is a consumer product,
|
||||
doubtful cases shall be resolved in favor of coverage. For a particular
|
||||
product received by a particular user, "normally used" refers to a
|
||||
typical or common use of that class of product, regardless of the status
|
||||
of the particular user or of the way in which the particular user
|
||||
actually uses, or expects or is expected to use, the product. A product
|
||||
is a consumer product regardless of whether the product has substantial
|
||||
commercial, industrial or non-consumer uses, unless such uses represent
|
||||
the only significant mode of use of the product.
|
||||
|
||||
"Installation Information" for a User Product means any methods,
|
||||
procedures, authorization keys, or other information required to install
|
||||
and execute modified versions of a covered work in that User Product from
|
||||
a modified version of its Corresponding Source. The information must
|
||||
suffice to ensure that the continued functioning of the modified object
|
||||
code is in no case prevented or interfered with solely because
|
||||
modification has been made.
|
||||
|
||||
If you convey an object code work under this section in, or with, or
|
||||
specifically for use in, a User Product, and the conveying occurs as
|
||||
part of a transaction in which the right of possession and use of the
|
||||
User Product is transferred to the recipient in perpetuity or for a
|
||||
fixed term (regardless of how the transaction is characterized), the
|
||||
Corresponding Source conveyed under this section must be accompanied
|
||||
by the Installation Information. But this requirement does not apply
|
||||
if neither you nor any third party retains the ability to install
|
||||
modified object code on the User Product (for example, the work has
|
||||
been installed in ROM).
|
||||
|
||||
The requirement to provide Installation Information does not include a
|
||||
requirement to continue to provide support service, warranty, or updates
|
||||
for a work that has been modified or installed by the recipient, or for
|
||||
the User Product in which it has been modified or installed. Access to a
|
||||
network may be denied when the modification itself materially and
|
||||
adversely affects the operation of the network or violates the rules and
|
||||
protocols for communication across the network.
|
||||
|
||||
Corresponding Source conveyed, and Installation Information provided,
|
||||
in accord with this section must be in a format that is publicly
|
||||
documented (and with an implementation available to the public in
|
||||
source code form), and must require no special password or key for
|
||||
unpacking, reading or copying.
|
||||
|
||||
7. Additional Terms.
|
||||
|
||||
"Additional permissions" are terms that supplement the terms of this
|
||||
License by making exceptions from one or more of its conditions.
|
||||
Additional permissions that are applicable to the entire Program shall
|
||||
be treated as though they were included in this License, to the extent
|
||||
that they are valid under applicable law. If additional permissions
|
||||
apply only to part of the Program, that part may be used separately
|
||||
under those permissions, but the entire Program remains governed by
|
||||
this License without regard to the additional permissions.
|
||||
|
||||
When you convey a copy of a covered work, you may at your option
|
||||
remove any additional permissions from that copy, or from any part of
|
||||
it. (Additional permissions may be written to require their own
|
||||
removal in certain cases when you modify the work.) You may place
|
||||
additional permissions on material, added by you to a covered work,
|
||||
for which you have or can give appropriate copyright permission.
|
||||
|
||||
Notwithstanding any other provision of this License, for material you
|
||||
add to a covered work, you may (if authorized by the copyright holders of
|
||||
that material) supplement the terms of this License with terms:
|
||||
|
||||
a) Disclaiming warranty or limiting liability differently from the
|
||||
terms of sections 15 and 16 of this License; or
|
||||
|
||||
b) Requiring preservation of specified reasonable legal notices or
|
||||
author attributions in that material or in the Appropriate Legal
|
||||
Notices displayed by works containing it; or
|
||||
|
||||
c) Prohibiting misrepresentation of the origin of that material, or
|
||||
requiring that modified versions of such material be marked in
|
||||
reasonable ways as different from the original version; or
|
||||
|
||||
d) Limiting the use for publicity purposes of names of licensors or
|
||||
authors of the material; or
|
||||
|
||||
e) Declining to grant rights under trademark law for use of some
|
||||
trade names, trademarks, or service marks; or
|
||||
|
||||
f) Requiring indemnification of licensors and authors of that
|
||||
material by anyone who conveys the material (or modified versions of
|
||||
it) with contractual assumptions of liability to the recipient, for
|
||||
any liability that these contractual assumptions directly impose on
|
||||
those licensors and authors.
|
||||
|
||||
All other non-permissive additional terms are considered "further
|
||||
restrictions" within the meaning of section 10. If the Program as you
|
||||
received it, or any part of it, contains a notice stating that it is
|
||||
governed by this License along with a term that is a further
|
||||
restriction, you may remove that term. If a license document contains
|
||||
a further restriction but permits relicensing or conveying under this
|
||||
License, you may add to a covered work material governed by the terms
|
||||
of that license document, provided that the further restriction does
|
||||
not survive such relicensing or conveying.
|
||||
|
||||
If you add terms to a covered work in accord with this section, you
|
||||
must place, in the relevant source files, a statement of the
|
||||
additional terms that apply to those files, or a notice indicating
|
||||
where to find the applicable terms.
|
||||
|
||||
Additional terms, permissive or non-permissive, may be stated in the
|
||||
form of a separately written license, or stated as exceptions;
|
||||
the above requirements apply either way.
|
||||
|
||||
8. Termination.
|
||||
|
||||
You may not propagate or modify a covered work except as expressly
|
||||
provided under this License. Any attempt otherwise to propagate or
|
||||
modify it is void, and will automatically terminate your rights under
|
||||
this License (including any patent licenses granted under the third
|
||||
paragraph of section 11).
|
||||
|
||||
However, if you cease all violation of this License, then your
|
||||
license from a particular copyright holder is reinstated (a)
|
||||
provisionally, unless and until the copyright holder explicitly and
|
||||
finally terminates your license, and (b) permanently, if the copyright
|
||||
holder fails to notify you of the violation by some reasonable means
|
||||
prior to 60 days after the cessation.
|
||||
|
||||
Moreover, your license from a particular copyright holder is
|
||||
reinstated permanently if the copyright holder notifies you of the
|
||||
violation by some reasonable means, this is the first time you have
|
||||
received notice of violation of this License (for any work) from that
|
||||
copyright holder, and you cure the violation prior to 30 days after
|
||||
your receipt of the notice.
|
||||
|
||||
Termination of your rights under this section does not terminate the
|
||||
licenses of parties who have received copies or rights from you under
|
||||
this License. If your rights have been terminated and not permanently
|
||||
reinstated, you do not qualify to receive new licenses for the same
|
||||
material under section 10.
|
||||
|
||||
9. Acceptance Not Required for Having Copies.
|
||||
|
||||
You are not required to accept this License in order to receive or
|
||||
run a copy of the Program. Ancillary propagation of a covered work
|
||||
occurring solely as a consequence of using peer-to-peer transmission
|
||||
to receive a copy likewise does not require acceptance. However,
|
||||
nothing other than this License grants you permission to propagate or
|
||||
modify any covered work. These actions infringe copyright if you do
|
||||
not accept this License. Therefore, by modifying or propagating a
|
||||
covered work, you indicate your acceptance of this License to do so.
|
||||
|
||||
10. Automatic Licensing of Downstream Recipients.
|
||||
|
||||
Each time you convey a covered work, the recipient automatically
|
||||
receives a license from the original licensors, to run, modify and
|
||||
propagate that work, subject to this License. You are not responsible
|
||||
for enforcing compliance by third parties with this License.
|
||||
|
||||
An "entity transaction" is a transaction transferring control of an
|
||||
organization, or substantially all assets of one, or subdividing an
|
||||
organization, or merging organizations. If propagation of a covered
|
||||
work results from an entity transaction, each party to that
|
||||
transaction who receives a copy of the work also receives whatever
|
||||
licenses to the work the party's predecessor in interest had or could
|
||||
give under the previous paragraph, plus a right to possession of the
|
||||
Corresponding Source of the work from the predecessor in interest, if
|
||||
the predecessor has it or can get it with reasonable efforts.
|
||||
|
||||
You may not impose any further restrictions on the exercise of the
|
||||
rights granted or affirmed under this License. For example, you may
|
||||
not impose a license fee, royalty, or other charge for exercise of
|
||||
rights granted under this License, and you may not initiate litigation
|
||||
(including a cross-claim or counterclaim in a lawsuit) alleging that
|
||||
any patent claim is infringed by making, using, selling, offering for
|
||||
sale, or importing the Program or any portion of it.
|
||||
|
||||
11. Patents.
|
||||
|
||||
A "contributor" is a copyright holder who authorizes use under this
|
||||
License of the Program or a work on which the Program is based. The
|
||||
work thus licensed is called the contributor's "contributor version".
|
||||
|
||||
A contributor's "essential patent claims" are all patent claims
|
||||
owned or controlled by the contributor, whether already acquired or
|
||||
hereafter acquired, that would be infringed by some manner, permitted
|
||||
by this License, of making, using, or selling its contributor version,
|
||||
but do not include claims that would be infringed only as a
|
||||
consequence of further modification of the contributor version. For
|
||||
purposes of this definition, "control" includes the right to grant
|
||||
patent sublicenses in a manner consistent with the requirements of
|
||||
this License.
|
||||
|
||||
Each contributor grants you a non-exclusive, worldwide, royalty-free
|
||||
patent license under the contributor's essential patent claims, to
|
||||
make, use, sell, offer for sale, import and otherwise run, modify and
|
||||
propagate the contents of its contributor version.
|
||||
|
||||
In the following three paragraphs, a "patent license" is any express
|
||||
agreement or commitment, however denominated, not to enforce a patent
|
||||
(such as an express permission to practice a patent or covenant not to
|
||||
sue for patent infringement). To "grant" such a patent license to a
|
||||
party means to make such an agreement or commitment not to enforce a
|
||||
patent against the party.
|
||||
|
||||
If you convey a covered work, knowingly relying on a patent license,
|
||||
and the Corresponding Source of the work is not available for anyone
|
||||
to copy, free of charge and under the terms of this License, through a
|
||||
publicly available network server or other readily accessible means,
|
||||
then you must either (1) cause the Corresponding Source to be so
|
||||
available, or (2) arrange to deprive yourself of the benefit of the
|
||||
patent license for this particular work, or (3) arrange, in a manner
|
||||
consistent with the requirements of this License, to extend the patent
|
||||
license to downstream recipients. "Knowingly relying" means you have
|
||||
actual knowledge that, but for the patent license, your conveying the
|
||||
covered work in a country, or your recipient's use of the covered work
|
||||
in a country, would infringe one or more identifiable patents in that
|
||||
country that you have reason to believe are valid.
|
||||
|
||||
If, pursuant to or in connection with a single transaction or
|
||||
arrangement, you convey, or propagate by procuring conveyance of, a
|
||||
covered work, and grant a patent license to some of the parties
|
||||
receiving the covered work authorizing them to use, propagate, modify
|
||||
or convey a specific copy of the covered work, then the patent license
|
||||
you grant is automatically extended to all recipients of the covered
|
||||
work and works based on it.
|
||||
|
||||
A patent license is "discriminatory" if it does not include within
|
||||
the scope of its coverage, prohibits the exercise of, or is
|
||||
conditioned on the non-exercise of one or more of the rights that are
|
||||
specifically granted under this License. You may not convey a covered
|
||||
work if you are a party to an arrangement with a third party that is
|
||||
in the business of distributing software, under which you make payment
|
||||
to the third party based on the extent of your activity of conveying
|
||||
the work, and under which the third party grants, to any of the
|
||||
parties who would receive the covered work from you, a discriminatory
|
||||
patent license (a) in connection with copies of the covered work
|
||||
conveyed by you (or copies made from those copies), or (b) primarily
|
||||
for and in connection with specific products or compilations that
|
||||
contain the covered work, unless you entered into that arrangement,
|
||||
or that patent license was granted, prior to 28 March 2007.
|
||||
|
||||
Nothing in this License shall be construed as excluding or limiting
|
||||
any implied license or other defenses to infringement that may
|
||||
otherwise be available to you under applicable patent law.
|
||||
|
||||
12. No Surrender of Others' Freedom.
|
||||
|
||||
If conditions are imposed on you (whether by court order, agreement or
|
||||
otherwise) that contradict the conditions of this License, they do not
|
||||
excuse you from the conditions of this License. If you cannot convey a
|
||||
covered work so as to satisfy simultaneously your obligations under this
|
||||
License and any other pertinent obligations, then as a consequence you may
|
||||
not convey it at all. For example, if you agree to terms that obligate you
|
||||
to collect a royalty for further conveying from those to whom you convey
|
||||
the Program, the only way you could satisfy both those terms and this
|
||||
License would be to refrain entirely from conveying the Program.
|
||||
|
||||
13. Use with the GNU Affero General Public License.
|
||||
|
||||
Notwithstanding any other provision of this License, you have
|
||||
permission to link or combine any covered work with a work licensed
|
||||
under version 3 of the GNU Affero General Public License into a single
|
||||
combined work, and to convey the resulting work. The terms of this
|
||||
License will continue to apply to the part which is the covered work,
|
||||
but the special requirements of the GNU Affero General Public License,
|
||||
section 13, concerning interaction through a network will apply to the
|
||||
combination as such.
|
||||
|
||||
14. Revised Versions of this License.
|
||||
|
||||
The Free Software Foundation may publish revised and/or new versions of
|
||||
the GNU General Public License from time to time. Such new versions will
|
||||
be similar in spirit to the present version, but may differ in detail to
|
||||
address new problems or concerns.
|
||||
|
||||
Each version is given a distinguishing version number. If the
|
||||
Program specifies that a certain numbered version of the GNU General
|
||||
Public License "or any later version" applies to it, you have the
|
||||
option of following the terms and conditions either of that numbered
|
||||
version or of any later version published by the Free Software
|
||||
Foundation. If the Program does not specify a version number of the
|
||||
GNU General Public License, you may choose any version ever published
|
||||
by the Free Software Foundation.
|
||||
|
||||
If the Program specifies that a proxy can decide which future
|
||||
versions of the GNU General Public License can be used, that proxy's
|
||||
public statement of acceptance of a version permanently authorizes you
|
||||
to choose that version for the Program.
|
||||
|
||||
Later license versions may give you additional or different
|
||||
permissions. However, no additional obligations are imposed on any
|
||||
author or copyright holder as a result of your choosing to follow a
|
||||
later version.
|
||||
|
||||
15. Disclaimer of Warranty.
|
||||
|
||||
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
|
||||
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
|
||||
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
|
||||
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
|
||||
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
||||
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
|
||||
IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
|
||||
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
|
||||
|
||||
16. Limitation of Liability.
|
||||
|
||||
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
||||
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
|
||||
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
|
||||
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
|
||||
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
|
||||
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
|
||||
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
|
||||
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
|
||||
SUCH DAMAGES.
|
||||
|
||||
17. Interpretation of Sections 15 and 16.
|
||||
|
||||
If the disclaimer of warranty and limitation of liability provided
|
||||
above cannot be given local legal effect according to their terms,
|
||||
reviewing courts shall apply local law that most closely approximates
|
||||
an absolute waiver of all civil liability in connection with the
|
||||
Program, unless a warranty or assumption of liability accompanies a
|
||||
copy of the Program in return for a fee.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
|
||||
How to Apply These Terms to Your New Programs
|
||||
|
||||
If you develop a new program, and you want it to be of the greatest
|
||||
possible use to the public, the best way to achieve this is to make it
|
||||
free software which everyone can redistribute and change under these terms.
|
||||
|
||||
To do so, attach the following notices to the program. It is safest
|
||||
to attach them to the start of each source file to most effectively
|
||||
state the exclusion of warranty; and each file should have at least
|
||||
the "copyright" line and a pointer to where the full notice is found.
|
||||
|
||||
<one line to give the program's name and a brief idea of what it does.>
|
||||
Copyright (C) <year> <name of author>
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
Also add information on how to contact you by electronic and paper mail.
|
||||
|
||||
If the program does terminal interaction, make it output a short
|
||||
notice like this when it starts in an interactive mode:
|
||||
|
||||
<program> Copyright (C) <year> <name of author>
|
||||
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
|
||||
This is free software, and you are welcome to redistribute it
|
||||
under certain conditions; type `show c' for details.
|
||||
|
||||
The hypothetical commands `show w' and `show c' should show the appropriate
|
||||
parts of the General Public License. Of course, your program's commands
|
||||
might be different; for a GUI interface, you would use an "about box".
|
||||
|
||||
You should also get your employer (if you work as a programmer) or school,
|
||||
if any, to sign a "copyright disclaimer" for the program, if necessary.
|
||||
For more information on this, and how to apply and follow the GNU GPL, see
|
||||
<http://www.gnu.org/licenses/>.
|
||||
|
||||
The GNU General Public License does not permit incorporating your program
|
||||
into proprietary programs. If your program is a subroutine library, you
|
||||
may consider it more useful to permit linking proprietary applications with
|
||||
the library. If this is what you want to do, use the GNU Lesser General
|
||||
Public License instead of this License. But first, please read
|
||||
<http://www.gnu.org/philosophy/why-not-lgpl.html>.
|
856
pdf2htmlEX/3rdparty/poppler/git/CairoFontEngine.cc
vendored
856
pdf2htmlEX/3rdparty/poppler/git/CairoFontEngine.cc
vendored
@ -1,856 +0,0 @@
|
||||
//========================================================================
|
||||
//
|
||||
// CairoFontEngine.cc
|
||||
//
|
||||
// Copyright 2003 Glyph & Cog, LLC
|
||||
// Copyright 2004 Red Hat, Inc
|
||||
//
|
||||
//========================================================================
|
||||
|
||||
//========================================================================
|
||||
//
|
||||
// Modified under the Poppler project - http://poppler.freedesktop.org
|
||||
//
|
||||
// All changes made under the Poppler project to this file are licensed
|
||||
// under GPL version 2 or later
|
||||
//
|
||||
// Copyright (C) 2005-2007 Jeff Muizelaar <jeff@infidigm.net>
|
||||
// Copyright (C) 2005, 2006 Kristian Høgsberg <krh@redhat.com>
|
||||
// Copyright (C) 2005 Martin Kretzschmar <martink@gnome.org>
|
||||
// Copyright (C) 2005, 2009, 2012, 2013, 2015, 2017-2019 Albert Astals Cid <aacid@kde.org>
|
||||
// Copyright (C) 2006, 2007, 2010, 2011 Carlos Garcia Campos <carlosgc@gnome.org>
|
||||
// Copyright (C) 2007 Koji Otani <sho@bbr.jp>
|
||||
// Copyright (C) 2008, 2009 Chris Wilson <chris@chris-wilson.co.uk>
|
||||
// Copyright (C) 2008, 2012, 2014, 2016, 2017 Adrian Johnson <ajohnson@redneon.com>
|
||||
// Copyright (C) 2009 Darren Kenny <darren.kenny@sun.com>
|
||||
// Copyright (C) 2010 Suzuki Toshiya <mpsuzuki@hiroshima-u.ac.jp>
|
||||
// Copyright (C) 2010 Jan Kümmel <jan+freedesktop@snorc.org>
|
||||
// Copyright (C) 2012 Hib Eris <hib@hiberis.nl>
|
||||
// Copyright (C) 2013 Thomas Freitag <Thomas.Freitag@alfa.de>
|
||||
// Copyright (C) 2015, 2016 Jason Crain <jason@aquaticape.us>
|
||||
// Copyright (C) 2018 Adam Reichold <adam.reichold@t-online.de>
|
||||
// Copyright (C) 2019 Christian Persch <chpe@src.gnome.org>
|
||||
//
|
||||
// To see a description of the changes please see the Changelog file that
|
||||
// came with your tarball or type make ChangeLog if you are building from git
|
||||
//
|
||||
//========================================================================
|
||||
|
||||
#include <poppler-config.h>
|
||||
|
||||
#include <string.h>
|
||||
#include "CairoFontEngine.h"
|
||||
#include "CairoOutputDev.h"
|
||||
#include "GlobalParams.h"
|
||||
#include <fofi/FoFiTrueType.h>
|
||||
#include <fofi/FoFiType1C.h>
|
||||
#include "goo/gfile.h"
|
||||
#include "Error.h"
|
||||
#include "XRef.h"
|
||||
#include "Gfx.h"
|
||||
#include "Page.h"
|
||||
|
||||
#if defined(HAVE_FCNTL_H) && defined(HAVE_SYS_MMAN_H) && defined(HAVE_SYS_STAT_H)
|
||||
#include <fcntl.h>
|
||||
#include <sys/stat.h>
|
||||
#include <sys/mman.h>
|
||||
#define CAN_CHECK_OPEN_FACES 1
|
||||
#endif
|
||||
|
||||
//------------------------------------------------------------------------
|
||||
// CairoFont
|
||||
//------------------------------------------------------------------------
|
||||
|
||||
CairoFont::CairoFont(Ref refA,
|
||||
cairo_font_face_t *cairo_font_faceA,
|
||||
int *codeToGIDA,
|
||||
unsigned int codeToGIDLenA,
|
||||
bool substituteA,
|
||||
bool printingA) : ref(refA),
|
||||
cairo_font_face(cairo_font_faceA),
|
||||
codeToGID(codeToGIDA),
|
||||
codeToGIDLen(codeToGIDLenA),
|
||||
substitute(substituteA),
|
||||
printing(printingA) { }
|
||||
|
||||
CairoFont::~CairoFont() {
|
||||
cairo_font_face_destroy (cairo_font_face);
|
||||
gfree(codeToGID);
|
||||
}
|
||||
|
||||
bool
|
||||
CairoFont::matches(Ref &other, bool printingA) {
|
||||
return (other == ref);
|
||||
}
|
||||
|
||||
cairo_font_face_t *
|
||||
CairoFont::getFontFace(void) {
|
||||
return cairo_font_face;
|
||||
}
|
||||
|
||||
unsigned long
|
||||
CairoFont::getGlyph(CharCode code,
|
||||
const Unicode *u, int uLen) {
|
||||
FT_UInt gid;
|
||||
|
||||
if (codeToGID && code < codeToGIDLen) {
|
||||
gid = (FT_UInt)codeToGID[code];
|
||||
} else {
|
||||
gid = (FT_UInt)code;
|
||||
}
|
||||
return gid;
|
||||
}
|
||||
|
||||
double
|
||||
CairoFont::getSubstitutionCorrection(GfxFont *gfxFont)
|
||||
{
|
||||
double w1, w2, w3;
|
||||
CharCode code;
|
||||
const char *name;
|
||||
|
||||
// for substituted fonts: adjust the font matrix -- compare the
|
||||
// width of 'm' in the original font and the substituted font
|
||||
if (isSubstitute() && !gfxFont->isCIDFont()) {
|
||||
for (code = 0; code < 256; ++code) {
|
||||
if ((name = ((Gfx8BitFont *)gfxFont)->getCharName(code)) &&
|
||||
name[0] == 'm' && name[1] == '\0') {
|
||||
break;
|
||||
}
|
||||
}
|
||||
if (code < 256) {
|
||||
w1 = ((Gfx8BitFont *)gfxFont)->getWidth(code);
|
||||
{
|
||||
cairo_matrix_t m;
|
||||
cairo_matrix_init_identity(&m);
|
||||
cairo_font_options_t *options = cairo_font_options_create();
|
||||
cairo_font_options_set_hint_style(options, CAIRO_HINT_STYLE_NONE);
|
||||
cairo_font_options_set_hint_metrics(options, CAIRO_HINT_METRICS_OFF);
|
||||
cairo_scaled_font_t *scaled_font = cairo_scaled_font_create(cairo_font_face, &m, &m, options);
|
||||
|
||||
cairo_text_extents_t extents;
|
||||
cairo_scaled_font_text_extents(scaled_font, "m", &extents);
|
||||
|
||||
cairo_scaled_font_destroy(scaled_font);
|
||||
cairo_font_options_destroy(options);
|
||||
w2 = extents.x_advance;
|
||||
}
|
||||
w3 = ((Gfx8BitFont *)gfxFont)->getWidth(0);
|
||||
if (!gfxFont->isSymbolic() && w2 > 0 && w1 > w3) {
|
||||
// if real font is substantially narrower than substituted
|
||||
// font, reduce the font size accordingly
|
||||
if (w1 > 0.01 && w1 < 0.9 * w2) {
|
||||
w1 /= w2;
|
||||
return w1;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
return 1.0;
|
||||
}
|
||||
|
||||
//------------------------------------------------------------------------
|
||||
// CairoFreeTypeFont
|
||||
//------------------------------------------------------------------------
|
||||
|
||||
static cairo_user_data_key_t _ft_cairo_key;
|
||||
|
||||
static void
|
||||
_ft_done_face_uncached (void *closure)
|
||||
{
|
||||
FT_Face face = (FT_Face) closure;
|
||||
FT_Done_Face (face);
|
||||
}
|
||||
|
||||
static bool
|
||||
_ft_new_face_uncached (FT_Library lib,
|
||||
const char *filename,
|
||||
char *font_data,
|
||||
int font_data_len,
|
||||
FT_Face *face_out,
|
||||
cairo_font_face_t **font_face_out)
|
||||
{
|
||||
FT_Face face;
|
||||
cairo_font_face_t *font_face;
|
||||
|
||||
if (font_data == nullptr) {
|
||||
if (FT_New_Face (lib, filename, 0, &face))
|
||||
return false;
|
||||
} else {
|
||||
if (FT_New_Memory_Face (lib, (unsigned char *)font_data, font_data_len, 0, &face))
|
||||
return false;
|
||||
}
|
||||
|
||||
font_face = cairo_ft_font_face_create_for_ft_face (face,
|
||||
FT_LOAD_NO_HINTING |
|
||||
FT_LOAD_NO_BITMAP);
|
||||
if (cairo_font_face_set_user_data (font_face,
|
||||
&_ft_cairo_key,
|
||||
face,
|
||||
_ft_done_face_uncached))
|
||||
{
|
||||
_ft_done_face_uncached (face);
|
||||
cairo_font_face_destroy (font_face);
|
||||
return false;
|
||||
}
|
||||
|
||||
*face_out = face;
|
||||
*font_face_out = font_face;
|
||||
return true;
|
||||
}
|
||||
|
||||
#ifdef CAN_CHECK_OPEN_FACES
|
||||
static struct _ft_face_data {
|
||||
struct _ft_face_data *prev, *next, **head;
|
||||
|
||||
int fd;
|
||||
unsigned long hash;
|
||||
size_t size;
|
||||
unsigned char *bytes;
|
||||
|
||||
FT_Library lib;
|
||||
FT_Face face;
|
||||
cairo_font_face_t *font_face;
|
||||
} *_ft_open_faces;
|
||||
|
||||
static unsigned long
|
||||
_djb_hash (const unsigned char *bytes, size_t len)
|
||||
{
|
||||
unsigned long hash = 5381;
|
||||
while (len--) {
|
||||
unsigned char c = *bytes++;
|
||||
hash *= 33;
|
||||
hash ^= c;
|
||||
}
|
||||
return hash;
|
||||
}
|
||||
|
||||
static bool
|
||||
_ft_face_data_equal (struct _ft_face_data *a, struct _ft_face_data *b)
|
||||
{
|
||||
if (a->lib != b->lib)
|
||||
return false;
|
||||
if (a->size != b->size)
|
||||
return false;
|
||||
if (a->hash != b->hash)
|
||||
return false;
|
||||
|
||||
return memcmp (a->bytes, b->bytes, a->size) == 0;
|
||||
}
|
||||
|
||||
static void
|
||||
_ft_done_face (void *closure)
|
||||
{
|
||||
struct _ft_face_data *data = (struct _ft_face_data *) closure;
|
||||
|
||||
if (data->next)
|
||||
data->next->prev = data->prev;
|
||||
if (data->prev)
|
||||
data->prev->next = data->next;
|
||||
else
|
||||
_ft_open_faces = data->next;
|
||||
|
||||
if (data->fd != -1) {
|
||||
#if defined(__SUNPRO_CC) && defined(__sun) && defined(__SVR4)
|
||||
munmap ((char*)data->bytes, data->size);
|
||||
#else
|
||||
munmap (data->bytes, data->size);
|
||||
#endif
|
||||
close (data->fd);
|
||||
} else {
|
||||
gfree (data->bytes);
|
||||
}
|
||||
|
||||
FT_Done_Face (data->face);
|
||||
gfree (data);
|
||||
}
|
||||
|
||||
static bool
|
||||
_ft_new_face (FT_Library lib,
|
||||
const char *filename,
|
||||
char *font_data,
|
||||
int font_data_len,
|
||||
FT_Face *face_out,
|
||||
cairo_font_face_t **font_face_out)
|
||||
{
|
||||
struct _ft_face_data *l;
|
||||
struct stat st;
|
||||
struct _ft_face_data tmpl;
|
||||
|
||||
tmpl.fd = -1;
|
||||
|
||||
if (font_data == nullptr) {
|
||||
/* if we fail to mmap the file, just pass it to FreeType instead */
|
||||
tmpl.fd = openFileDescriptor (filename, O_RDONLY);
|
||||
if (tmpl.fd == -1)
|
||||
return _ft_new_face_uncached (lib, filename, font_data, font_data_len, face_out, font_face_out);
|
||||
|
||||
if (fstat (tmpl.fd, &st) == -1) {
|
||||
close (tmpl.fd);
|
||||
return _ft_new_face_uncached (lib, filename, font_data, font_data_len, face_out, font_face_out);
|
||||
}
|
||||
|
||||
tmpl.bytes = (unsigned char *) mmap (nullptr, st.st_size,
|
||||
PROT_READ, MAP_PRIVATE,
|
||||
tmpl.fd, 0);
|
||||
if (tmpl.bytes == MAP_FAILED) {
|
||||
close (tmpl.fd);
|
||||
return _ft_new_face_uncached (lib, filename, font_data, font_data_len, face_out, font_face_out);
|
||||
}
|
||||
tmpl.size = st.st_size;
|
||||
} else {
|
||||
tmpl.bytes = (unsigned char*) font_data;
|
||||
tmpl.size = font_data_len;
|
||||
}
|
||||
|
||||
/* check to see if this is a duplicate of any of the currently open fonts */
|
||||
tmpl.lib = lib;
|
||||
tmpl.hash = _djb_hash (tmpl.bytes, tmpl.size);
|
||||
|
||||
for (l = _ft_open_faces; l; l = l->next) {
|
||||
if (_ft_face_data_equal (l, &tmpl)) {
|
||||
if (tmpl.fd != -1) {
|
||||
#if defined(__SUNPRO_CC) && defined(__sun) && defined(__SVR4)
|
||||
munmap ((char*)tmpl.bytes, tmpl.size);
|
||||
#else
|
||||
munmap (tmpl.bytes, tmpl.size);
|
||||
#endif
|
||||
close (tmpl.fd);
|
||||
} else {
|
||||
gfree (tmpl.bytes);
|
||||
}
|
||||
*face_out = l->face;
|
||||
*font_face_out = cairo_font_face_reference (l->font_face);
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
/* not a dup, open and insert into list */
|
||||
if (FT_New_Memory_Face (lib,
|
||||
(FT_Byte *) tmpl.bytes, tmpl.size,
|
||||
0, &tmpl.face))
|
||||
{
|
||||
if (tmpl.fd != -1) {
|
||||
#if defined(__SUNPRO_CC) && defined(__sun) && defined(__SVR4)
|
||||
munmap ((char*)tmpl.bytes, tmpl.size);
|
||||
#else
|
||||
munmap (tmpl.bytes, tmpl.size);
|
||||
#endif
|
||||
|
||||
close (tmpl.fd);
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
l = (struct _ft_face_data *) gmallocn (1, sizeof (struct _ft_face_data));
|
||||
*l = tmpl;
|
||||
l->prev = nullptr;
|
||||
l->next = _ft_open_faces;
|
||||
if (_ft_open_faces)
|
||||
_ft_open_faces->prev = l;
|
||||
_ft_open_faces = l;
|
||||
|
||||
l->font_face = cairo_ft_font_face_create_for_ft_face (tmpl.face,
|
||||
FT_LOAD_NO_HINTING |
|
||||
FT_LOAD_NO_BITMAP);
|
||||
if (cairo_font_face_set_user_data (l->font_face,
|
||||
&_ft_cairo_key,
|
||||
l,
|
||||
_ft_done_face))
|
||||
{
|
||||
cairo_font_face_destroy (l->font_face);
|
||||
_ft_done_face (l);
|
||||
return false;
|
||||
}
|
||||
|
||||
*face_out = l->face;
|
||||
*font_face_out = l->font_face;
|
||||
return true;
|
||||
}
|
||||
#else
|
||||
#define _ft_new_face _ft_new_face_uncached
|
||||
#endif
|
||||
|
||||
CairoFreeTypeFont::CairoFreeTypeFont(Ref refA,
|
||||
cairo_font_face_t *cairo_font_faceA,
|
||||
int *codeToGIDA,
|
||||
unsigned int codeToGIDLenA,
|
||||
bool substituteA) : CairoFont(refA,
|
||||
cairo_font_faceA,
|
||||
codeToGIDA,
|
||||
codeToGIDLenA,
|
||||
substituteA,
|
||||
true) { }
|
||||
|
||||
CairoFreeTypeFont::~CairoFreeTypeFont() { }
|
||||
|
||||
CairoFreeTypeFont *CairoFreeTypeFont::create(GfxFont *gfxFont, XRef *xref,
|
||||
FT_Library lib, bool useCIDs) {
|
||||
GooString *fileName;
|
||||
const char *fileNameC;
|
||||
char *font_data;
|
||||
int font_data_len;
|
||||
int i, n;
|
||||
GfxFontType fontType;
|
||||
GfxFontLoc *fontLoc;
|
||||
char **enc;
|
||||
const char *name;
|
||||
FoFiTrueType *ff;
|
||||
FoFiType1C *ff1c;
|
||||
Ref ref;
|
||||
FT_Face face;
|
||||
cairo_font_face_t *font_face;
|
||||
|
||||
int *codeToGID;
|
||||
unsigned int codeToGIDLen;
|
||||
|
||||
codeToGID = nullptr;
|
||||
codeToGIDLen = 0;
|
||||
font_data = nullptr;
|
||||
font_data_len = 0;
|
||||
fileName = nullptr;
|
||||
fileNameC = nullptr;
|
||||
|
||||
bool substitute = false;
|
||||
|
||||
ref = *gfxFont->getID();
|
||||
fontType = gfxFont->getType();
|
||||
|
||||
if (!(fontLoc = gfxFont->locateFont(xref, nullptr))) {
|
||||
error(errSyntaxError, -1, "Couldn't find a font for '{0:s}'",
|
||||
gfxFont->getName() ? gfxFont->getName()->c_str()
|
||||
: "(unnamed)");
|
||||
goto err2;
|
||||
}
|
||||
|
||||
// embedded font
|
||||
if (fontLoc->locType == gfxFontLocEmbedded) {
|
||||
font_data = gfxFont->readEmbFontFile(xref, &font_data_len);
|
||||
if (nullptr == font_data)
|
||||
goto err2;
|
||||
|
||||
// external font
|
||||
} else { // gfxFontLocExternal
|
||||
fileName = fontLoc->path;
|
||||
fontType = fontLoc->fontType;
|
||||
substitute = true;
|
||||
}
|
||||
|
||||
if (fileName != nullptr) {
|
||||
fileNameC = fileName->c_str();
|
||||
}
|
||||
|
||||
switch (fontType) {
|
||||
case fontType1:
|
||||
case fontType1C:
|
||||
case fontType1COT:
|
||||
if (! _ft_new_face (lib, fileNameC, font_data, font_data_len, &face, &font_face)) {
|
||||
error(errSyntaxError, -1, "could not create type1 face");
|
||||
goto err2;
|
||||
}
|
||||
|
||||
enc = ((Gfx8BitFont *)gfxFont)->getEncoding();
|
||||
|
||||
codeToGID = (int *)gmallocn(256, sizeof(int));
|
||||
codeToGIDLen = 256;
|
||||
for (i = 0; i < 256; ++i) {
|
||||
codeToGID[i] = 0;
|
||||
if ((name = enc[i])) {
|
||||
codeToGID[i] = FT_Get_Name_Index(face, (char*)name);
|
||||
if (codeToGID[i] == 0) {
|
||||
Unicode u;
|
||||
u = globalParams->mapNameToUnicodeText (name);
|
||||
codeToGID[i] = FT_Get_Char_Index (face, u);
|
||||
}
|
||||
if (codeToGID[i] == 0) {
|
||||
name = GfxFont::getAlternateName(name);
|
||||
if (name) {
|
||||
codeToGID[i] = FT_Get_Name_Index(face, (char*)name);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
break;
|
||||
case fontCIDType2:
|
||||
case fontCIDType2OT:
|
||||
codeToGID = nullptr;
|
||||
n = 0;
|
||||
if (((GfxCIDFont *)gfxFont)->getCIDToGID()) {
|
||||
n = ((GfxCIDFont *)gfxFont)->getCIDToGIDLen();
|
||||
if (n) {
|
||||
codeToGID = (int *)gmallocn(n, sizeof(int));
|
||||
memcpy(codeToGID, ((GfxCIDFont *)gfxFont)->getCIDToGID(),
|
||||
n * sizeof(int));
|
||||
}
|
||||
} else {
|
||||
if (font_data != nullptr) {
|
||||
ff = FoFiTrueType::make(font_data, font_data_len);
|
||||
} else {
|
||||
ff = FoFiTrueType::load(fileNameC);
|
||||
}
|
||||
if (! ff)
|
||||
goto err2;
|
||||
codeToGID = ((GfxCIDFont *)gfxFont)->getCodeToGIDMap(ff, &n);
|
||||
delete ff;
|
||||
}
|
||||
codeToGIDLen = n;
|
||||
/* Fall through */
|
||||
case fontTrueType:
|
||||
case fontTrueTypeOT:
|
||||
if (font_data != nullptr) {
|
||||
ff = FoFiTrueType::make(font_data, font_data_len);
|
||||
} else {
|
||||
ff = FoFiTrueType::load(fileNameC);
|
||||
}
|
||||
if (! ff) {
|
||||
error(errSyntaxError, -1, "failed to load truetype font\n");
|
||||
goto err2;
|
||||
}
|
||||
/* This might be set already for the CIDType2 case */
|
||||
if (fontType == fontTrueType || fontType == fontTrueTypeOT) {
|
||||
codeToGID = ((Gfx8BitFont *)gfxFont)->getCodeToGIDMap(ff);
|
||||
codeToGIDLen = 256;
|
||||
}
|
||||
delete ff;
|
||||
if (! _ft_new_face (lib, fileNameC, font_data, font_data_len, &face, &font_face)) {
|
||||
error(errSyntaxError, -1, "could not create truetype face\n");
|
||||
goto err2;
|
||||
}
|
||||
break;
|
||||
|
||||
case fontCIDType0:
|
||||
case fontCIDType0C:
|
||||
|
||||
codeToGID = nullptr;
|
||||
codeToGIDLen = 0;
|
||||
|
||||
if (!useCIDs)
|
||||
{
|
||||
if (font_data != nullptr) {
|
||||
ff1c = FoFiType1C::make(font_data, font_data_len);
|
||||
} else {
|
||||
ff1c = FoFiType1C::load(fileNameC);
|
||||
}
|
||||
if (ff1c) {
|
||||
codeToGID = ff1c->getCIDToGIDMap((int *)&codeToGIDLen);
|
||||
delete ff1c;
|
||||
}
|
||||
}
|
||||
|
||||
if (! _ft_new_face (lib, fileNameC, font_data, font_data_len, &face, &font_face)) {
|
||||
error(errSyntaxError, -1, "could not create cid face\n");
|
||||
goto err2;
|
||||
}
|
||||
break;
|
||||
|
||||
case fontCIDType0COT:
|
||||
codeToGID = nullptr;
|
||||
n = 0;
|
||||
if (((GfxCIDFont *)gfxFont)->getCIDToGID()) {
|
||||
n = ((GfxCIDFont *)gfxFont)->getCIDToGIDLen();
|
||||
if (n) {
|
||||
codeToGID = (int *)gmallocn(n, sizeof(int));
|
||||
memcpy(codeToGID, ((GfxCIDFont *)gfxFont)->getCIDToGID(),
|
||||
n * sizeof(int));
|
||||
}
|
||||
}
|
||||
codeToGIDLen = n;
|
||||
|
||||
if (!codeToGID) {
|
||||
if (!useCIDs) {
|
||||
if (font_data != nullptr) {
|
||||
ff = FoFiTrueType::make(font_data, font_data_len);
|
||||
} else {
|
||||
ff = FoFiTrueType::load(fileNameC);
|
||||
}
|
||||
if (ff) {
|
||||
if (ff->isOpenTypeCFF()) {
|
||||
codeToGID = ff->getCIDToGIDMap((int *)&codeToGIDLen);
|
||||
}
|
||||
delete ff;
|
||||
}
|
||||
}
|
||||
}
|
||||
if (! _ft_new_face (lib, fileNameC, font_data, font_data_len, &face, &font_face)) {
|
||||
error(errSyntaxError, -1, "could not create cid (OT) face\n");
|
||||
goto err2;
|
||||
}
|
||||
break;
|
||||
|
||||
default:
|
||||
fprintf (stderr, "font type %d not handled\n", (int)fontType);
|
||||
goto err2;
|
||||
break;
|
||||
}
|
||||
|
||||
delete fontLoc;
|
||||
return new CairoFreeTypeFont(ref,
|
||||
font_face,
|
||||
codeToGID, codeToGIDLen,
|
||||
substitute);
|
||||
|
||||
err2:
|
||||
/* hmm? */
|
||||
delete fontLoc;
|
||||
gfree (codeToGID);
|
||||
gfree (font_data);
|
||||
fprintf (stderr, "some font thing failed\n");
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
//------------------------------------------------------------------------
|
||||
// CairoType3Font
|
||||
//------------------------------------------------------------------------
|
||||
|
||||
static const cairo_user_data_key_t type3_font_key = {0};
|
||||
|
||||
typedef struct _type3_font_info {
|
||||
GfxFont *font;
|
||||
PDFDoc *doc;
|
||||
CairoFontEngine *fontEngine;
|
||||
bool printing;
|
||||
XRef *xref;
|
||||
} type3_font_info_t;
|
||||
|
||||
static void
|
||||
_free_type3_font_info(void *closure)
|
||||
{
|
||||
type3_font_info_t *info = (type3_font_info_t *) closure;
|
||||
|
||||
info->font->decRefCnt();
|
||||
free (info);
|
||||
}
|
||||
|
||||
static cairo_status_t
|
||||
_init_type3_glyph (cairo_scaled_font_t *scaled_font,
|
||||
cairo_t *cr,
|
||||
cairo_font_extents_t *extents)
|
||||
{
|
||||
type3_font_info_t *info;
|
||||
GfxFont *font;
|
||||
|
||||
info = (type3_font_info_t *)
|
||||
cairo_font_face_get_user_data (cairo_scaled_font_get_font_face (scaled_font),
|
||||
&type3_font_key);
|
||||
font = info->font;
|
||||
const double *mat = font->getFontBBox();
|
||||
extents->ascent = mat[3]; /* y2 */
|
||||
extents->descent = -mat[3]; /* -y1 */
|
||||
extents->height = extents->ascent + extents->descent;
|
||||
extents->max_x_advance = mat[2] - mat[1]; /* x2 - x1 */
|
||||
extents->max_y_advance = 0;
|
||||
|
||||
return CAIRO_STATUS_SUCCESS;
|
||||
}
|
||||
|
||||
static cairo_status_t
|
||||
_render_type3_glyph (cairo_scaled_font_t *scaled_font,
|
||||
unsigned long glyph,
|
||||
cairo_t *cr,
|
||||
cairo_text_extents_t *metrics)
|
||||
{
|
||||
Dict *charProcs;
|
||||
Object charProc;
|
||||
CairoOutputDev *output_dev;
|
||||
cairo_matrix_t matrix, invert_y_axis;
|
||||
const double *mat;
|
||||
double wx, wy;
|
||||
PDFRectangle box;
|
||||
type3_font_info_t *info;
|
||||
GfxFont *font;
|
||||
Dict *resDict;
|
||||
Gfx *gfx;
|
||||
|
||||
info = (type3_font_info_t *)
|
||||
cairo_font_face_get_user_data (cairo_scaled_font_get_font_face (scaled_font),
|
||||
&type3_font_key);
|
||||
|
||||
font = info->font;
|
||||
resDict = ((Gfx8BitFont *)font)->getResources();
|
||||
charProcs = ((Gfx8BitFont *)(info->font))->getCharProcs();
|
||||
if (!charProcs)
|
||||
return CAIRO_STATUS_USER_FONT_ERROR;
|
||||
|
||||
if ((int)glyph >= charProcs->getLength())
|
||||
return CAIRO_STATUS_USER_FONT_ERROR;
|
||||
|
||||
mat = font->getFontMatrix();
|
||||
matrix.xx = mat[0];
|
||||
matrix.yx = mat[1];
|
||||
matrix.xy = mat[2];
|
||||
matrix.yy = mat[3];
|
||||
matrix.x0 = mat[4];
|
||||
matrix.y0 = mat[5];
|
||||
cairo_matrix_init_scale (&invert_y_axis, 1, -1);
|
||||
cairo_matrix_multiply (&matrix, &matrix, &invert_y_axis);
|
||||
cairo_transform (cr, &matrix);
|
||||
|
||||
output_dev = new CairoOutputDev();
|
||||
output_dev->setCairo(cr);
|
||||
output_dev->setPrinting(info->printing);
|
||||
|
||||
mat = font->getFontBBox();
|
||||
box.x1 = mat[0];
|
||||
box.y1 = mat[1];
|
||||
box.x2 = mat[2];
|
||||
box.y2 = mat[3];
|
||||
gfx = new Gfx(info->doc, output_dev, resDict, &box, nullptr);
|
||||
output_dev->startDoc(info->doc, info->fontEngine);
|
||||
output_dev->startPage (1, gfx->getState(), gfx->getXRef());
|
||||
output_dev->setInType3Char(true);
|
||||
charProc = charProcs->getVal(glyph);
|
||||
gfx->display(&charProc);
|
||||
|
||||
output_dev->getType3GlyphWidth (&wx, &wy);
|
||||
cairo_matrix_transform_distance (&matrix, &wx, &wy);
|
||||
metrics->x_advance = wx;
|
||||
metrics->y_advance = wy;
|
||||
if (output_dev->hasType3GlyphBBox()) {
|
||||
double *bbox = output_dev->getType3GlyphBBox();
|
||||
|
||||
cairo_matrix_transform_point (&matrix, &bbox[0], &bbox[1]);
|
||||
cairo_matrix_transform_point (&matrix, &bbox[2], &bbox[3]);
|
||||
metrics->x_bearing = bbox[0];
|
||||
metrics->y_bearing = bbox[1];
|
||||
metrics->width = bbox[2] - bbox[0];
|
||||
metrics->height = bbox[3] - bbox[1];
|
||||
}
|
||||
|
||||
delete gfx;
|
||||
delete output_dev;
|
||||
|
||||
return CAIRO_STATUS_SUCCESS;
|
||||
}
|
||||
|
||||
|
||||
CairoType3Font *CairoType3Font::create(GfxFont *gfxFont, PDFDoc *doc,
|
||||
CairoFontEngine *fontEngine,
|
||||
bool printing, XRef *xref) {
|
||||
type3_font_info_t *info;
|
||||
cairo_font_face_t *font_face;
|
||||
Ref ref;
|
||||
int *codeToGID;
|
||||
unsigned int codeToGIDLen;
|
||||
int i, j;
|
||||
char **enc;
|
||||
Dict *charProcs;
|
||||
char *name;
|
||||
|
||||
charProcs = ((Gfx8BitFont *)gfxFont)->getCharProcs();
|
||||
info = (type3_font_info_t *) malloc(sizeof(*info));
|
||||
ref = *gfxFont->getID();
|
||||
font_face = cairo_user_font_face_create();
|
||||
cairo_user_font_face_set_init_func (font_face, _init_type3_glyph);
|
||||
cairo_user_font_face_set_render_glyph_func (font_face, _render_type3_glyph);
|
||||
gfxFont->incRefCnt();
|
||||
info->font = gfxFont;
|
||||
info->doc = doc;
|
||||
info->fontEngine = fontEngine;
|
||||
info->printing = printing;
|
||||
info->xref = xref;
|
||||
|
||||
cairo_font_face_set_user_data (font_face, &type3_font_key, (void *) info, _free_type3_font_info);
|
||||
|
||||
enc = ((Gfx8BitFont *)gfxFont)->getEncoding();
|
||||
codeToGID = (int *)gmallocn(256, sizeof(int));
|
||||
codeToGIDLen = 256;
|
||||
for (i = 0; i < 256; ++i) {
|
||||
codeToGID[i] = 0;
|
||||
if (charProcs && (name = enc[i])) {
|
||||
for (j = 0; j < charProcs->getLength(); j++) {
|
||||
if (strcmp(name, charProcs->getKey(j)) == 0) {
|
||||
codeToGID[i] = j;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return new CairoType3Font(ref, font_face, codeToGID, codeToGIDLen, printing, xref);
|
||||
}
|
||||
|
||||
CairoType3Font::CairoType3Font(Ref refA,
|
||||
cairo_font_face_t *cairo_font_faceA,
|
||||
int *codeToGIDA,
|
||||
unsigned int codeToGIDLenA,
|
||||
bool printingA, XRef *xref) : CairoFont(refA,
|
||||
cairo_font_faceA,
|
||||
codeToGIDA,
|
||||
codeToGIDLenA,
|
||||
false,
|
||||
printingA)
|
||||
{ }
|
||||
|
||||
CairoType3Font::~CairoType3Font() { }
|
||||
|
||||
bool
|
||||
CairoType3Font::matches(Ref &other, bool printingA) {
|
||||
return (other == ref && printing == printingA);
|
||||
}
|
||||
|
||||
|
||||
//------------------------------------------------------------------------
|
||||
// CairoFontEngine
|
||||
//------------------------------------------------------------------------
|
||||
|
||||
#define fontEngineLocker() std::unique_lock<std::recursive_mutex> locker(mutex)
|
||||
|
||||
CairoFontEngine::CairoFontEngine(FT_Library libA) {
|
||||
int i;
|
||||
|
||||
lib = libA;
|
||||
for (i = 0; i < cairoFontCacheSize; ++i) {
|
||||
fontCache[i] = nullptr;
|
||||
}
|
||||
|
||||
FT_Int major, minor, patch;
|
||||
// as of FT 2.1.8, CID fonts are indexed by CID instead of GID
|
||||
FT_Library_Version(lib, &major, &minor, &patch);
|
||||
useCIDs = major > 2 ||
|
||||
(major == 2 && (minor > 1 || (minor == 1 && patch > 7)));
|
||||
}
|
||||
|
||||
CairoFontEngine::~CairoFontEngine() {
|
||||
int i;
|
||||
|
||||
for (i = 0; i < cairoFontCacheSize; ++i) {
|
||||
if (fontCache[i])
|
||||
delete fontCache[i];
|
||||
}
|
||||
}
|
||||
|
||||
CairoFont *
|
||||
CairoFontEngine::getFont(GfxFont *gfxFont, PDFDoc *doc, bool printing, XRef *xref) {
|
||||
int i, j;
|
||||
Ref ref;
|
||||
CairoFont *font;
|
||||
GfxFontType fontType;
|
||||
|
||||
fontEngineLocker();
|
||||
ref = *gfxFont->getID();
|
||||
|
||||
for (i = 0; i < cairoFontCacheSize; ++i) {
|
||||
font = fontCache[i];
|
||||
if (font && font->matches(ref, printing)) {
|
||||
for (j = i; j > 0; --j) {
|
||||
fontCache[j] = fontCache[j-1];
|
||||
}
|
||||
fontCache[0] = font;
|
||||
return font;
|
||||
}
|
||||
}
|
||||
|
||||
fontType = gfxFont->getType();
|
||||
if (fontType == fontType3)
|
||||
font = CairoType3Font::create (gfxFont, doc, this, printing, xref);
|
||||
else
|
||||
font = CairoFreeTypeFont::create (gfxFont, xref, lib, useCIDs);
|
||||
|
||||
//XXX: if font is null should we still insert it into the cache?
|
||||
if (fontCache[cairoFontCacheSize - 1]) {
|
||||
delete fontCache[cairoFontCacheSize - 1];
|
||||
}
|
||||
for (j = cairoFontCacheSize - 1; j > 0; --j) {
|
||||
fontCache[j] = fontCache[j-1];
|
||||
}
|
||||
fontCache[0] = font;
|
||||
return font;
|
||||
}
|
128
pdf2htmlEX/3rdparty/poppler/git/CairoFontEngine.h
vendored
128
pdf2htmlEX/3rdparty/poppler/git/CairoFontEngine.h
vendored
@ -1,128 +0,0 @@
|
||||
//========================================================================
|
||||
//
|
||||
// CairoFontEngine.h
|
||||
//
|
||||
// Copyright 2003 Glyph & Cog, LLC
|
||||
// Copyright 2004 Red Hat, Inc
|
||||
//
|
||||
//========================================================================
|
||||
|
||||
//========================================================================
|
||||
//
|
||||
// Modified under the Poppler project - http://poppler.freedesktop.org
|
||||
//
|
||||
// All changes made under the Poppler project to this file are licensed
|
||||
// under GPL version 2 or later
|
||||
//
|
||||
// Copyright (C) 2005, 2006 Kristian Høgsberg <krh@redhat.com>
|
||||
// Copyright (C) 2005, 2018, 2019 Albert Astals Cid <aacid@kde.org>
|
||||
// Copyright (C) 2006, 2007 Jeff Muizelaar <jeff@infidigm.net>
|
||||
// Copyright (C) 2006, 2010 Carlos Garcia Campos <carlosgc@gnome.org>
|
||||
// Copyright (C) 2008, 2017 Adrian Johnson <ajohnson@redneon.com>
|
||||
// Copyright (C) 2013 Thomas Freitag <Thomas.Freitag@alfa.de>
|
||||
// Copyright (C) 2018 Adam Reichold <adam.reichold@t-online.de>
|
||||
//
|
||||
// To see a description of the changes please see the Changelog file that
|
||||
// came with your tarball or type make ChangeLog if you are building from git
|
||||
//
|
||||
//========================================================================
|
||||
|
||||
#ifndef CAIROFONTENGINE_H
|
||||
#define CAIROFONTENGINE_H
|
||||
|
||||
#include <mutex>
|
||||
|
||||
#include "poppler-config.h"
|
||||
#include <cairo-ft.h>
|
||||
|
||||
#include "GfxFont.h"
|
||||
#include "PDFDoc.h"
|
||||
|
||||
class CairoFontEngine;
|
||||
|
||||
class CairoFont {
|
||||
public:
|
||||
CairoFont(Ref ref,
|
||||
cairo_font_face_t *face,
|
||||
int *codeToGID,
|
||||
unsigned int codeToGIDLen,
|
||||
bool substitute,
|
||||
bool printing);
|
||||
virtual ~CairoFont();
|
||||
CairoFont(const CairoFont &) = delete;
|
||||
CairoFont& operator=(const CairoFont &other) = delete;
|
||||
|
||||
virtual bool matches(Ref &other, bool printing);
|
||||
cairo_font_face_t *getFontFace(void);
|
||||
unsigned long getGlyph(CharCode code, const Unicode *u, int uLen);
|
||||
double getSubstitutionCorrection(GfxFont *gfxFont);
|
||||
|
||||
bool isSubstitute() { return substitute; }
|
||||
protected:
|
||||
Ref ref;
|
||||
cairo_font_face_t *cairo_font_face;
|
||||
|
||||
int *codeToGID;
|
||||
unsigned int codeToGIDLen;
|
||||
|
||||
bool substitute;
|
||||
bool printing;
|
||||
};
|
||||
|
||||
//------------------------------------------------------------------------
|
||||
|
||||
class CairoFreeTypeFont : public CairoFont {
|
||||
public:
|
||||
static CairoFreeTypeFont *create(GfxFont *gfxFont, XRef *xref, FT_Library lib, bool useCIDs);
|
||||
~CairoFreeTypeFont();
|
||||
|
||||
private:
|
||||
CairoFreeTypeFont(Ref ref, cairo_font_face_t *cairo_font_face,
|
||||
int *codeToGID, unsigned int codeToGIDLen, bool substitute);
|
||||
};
|
||||
|
||||
//------------------------------------------------------------------------
|
||||
|
||||
class CairoType3Font : public CairoFont {
|
||||
public:
|
||||
static CairoType3Font *create(GfxFont *gfxFont, PDFDoc *doc,
|
||||
CairoFontEngine *fontEngine,
|
||||
bool printing, XRef *xref);
|
||||
~CairoType3Font();
|
||||
|
||||
bool matches(Ref &other, bool printing) override;
|
||||
|
||||
private:
|
||||
CairoType3Font(Ref ref,
|
||||
cairo_font_face_t *cairo_font_face,
|
||||
int *codeToGID, unsigned int codeToGIDLen,
|
||||
bool printing, XRef *xref);
|
||||
};
|
||||
|
||||
//------------------------------------------------------------------------
|
||||
|
||||
#define cairoFontCacheSize 64
|
||||
|
||||
//------------------------------------------------------------------------
|
||||
// CairoFontEngine
|
||||
//------------------------------------------------------------------------
|
||||
|
||||
class CairoFontEngine {
|
||||
public:
|
||||
|
||||
// Create a font engine.
|
||||
CairoFontEngine(FT_Library libA);
|
||||
~CairoFontEngine();
|
||||
CairoFontEngine(const CairoFontEngine &) = delete;
|
||||
CairoFontEngine& operator=(const CairoFontEngine &other) = delete;
|
||||
|
||||
CairoFont *getFont(GfxFont *gfxFont, PDFDoc *doc, bool printing, XRef *xref);
|
||||
|
||||
private:
|
||||
CairoFont *fontCache[cairoFontCacheSize];
|
||||
FT_Library lib;
|
||||
bool useCIDs;
|
||||
mutable std::recursive_mutex mutex;
|
||||
};
|
||||
|
||||
#endif
|
3573
pdf2htmlEX/3rdparty/poppler/git/CairoOutputDev.cc
vendored
3573
pdf2htmlEX/3rdparty/poppler/git/CairoOutputDev.cc
vendored
File diff suppressed because it is too large
Load Diff
525
pdf2htmlEX/3rdparty/poppler/git/CairoOutputDev.h
vendored
525
pdf2htmlEX/3rdparty/poppler/git/CairoOutputDev.h
vendored
@ -1,525 +0,0 @@
|
||||
//========================================================================
|
||||
//
|
||||
// CairoOutputDev.h
|
||||
//
|
||||
// Copyright 2003 Glyph & Cog, LLC
|
||||
// Copyright 2004 Red Hat, INC
|
||||
//
|
||||
//========================================================================
|
||||
|
||||
//========================================================================
|
||||
//
|
||||
// Modified under the Poppler project - http://poppler.freedesktop.org
|
||||
//
|
||||
// All changes made under the Poppler project to this file are licensed
|
||||
// under GPL version 2 or later
|
||||
//
|
||||
// Copyright (C) 2005-2008 Jeff Muizelaar <jeff@infidigm.net>
|
||||
// Copyright (C) 2005, 2006 Kristian Høgsberg <krh@redhat.com>
|
||||
// Copyright (C) 2005 Nickolay V. Shmyrev <nshmyrev@yandex.ru>
|
||||
// Copyright (C) 2006-2011, 2013 Carlos Garcia Campos <carlosgc@gnome.org>
|
||||
// Copyright (C) 2008, 2009, 2011-2017 Adrian Johnson <ajohnson@redneon.com>
|
||||
// Copyright (C) 2008 Michael Vrable <mvrable@cs.ucsd.edu>
|
||||
// Copyright (C) 2010-2013 Thomas Freitag <Thomas.Freitag@alfa.de>
|
||||
// Copyright (C) 2015 Suzuki Toshiya <mpsuzuki@hiroshima-u.ac.jp>
|
||||
// Copyright (C) 2016 Jason Crain <jason@aquaticape.us>
|
||||
// Copyright (C) 2018, 2019 Albert Astals Cid <aacid@kde.org>
|
||||
// Copyright (C) 2018 Klarälvdalens Datakonsult AB, a KDAB Group company, <info@kdab.com>. Work sponsored by the LiMux project of the city of Munich
|
||||
//
|
||||
// To see a description of the changes please see the Changelog file that
|
||||
// came with your tarball or type make ChangeLog if you are building from git
|
||||
//
|
||||
//========================================================================
|
||||
|
||||
#ifndef CAIROOUTPUTDEV_H
|
||||
#define CAIROOUTPUTDEV_H
|
||||
|
||||
#include <cairo-ft.h>
|
||||
#include "OutputDev.h"
|
||||
#include "TextOutputDev.h"
|
||||
#include "GfxState.h"
|
||||
|
||||
class PDFDoc;
|
||||
class GfxState;
|
||||
class GfxPath;
|
||||
class Gfx8BitFont;
|
||||
struct GfxRGB;
|
||||
class CairoFontEngine;
|
||||
class CairoFont;
|
||||
|
||||
//------------------------------------------------------------------------
|
||||
|
||||
//------------------------------------------------------------------------
|
||||
// CairoImage
|
||||
//------------------------------------------------------------------------
|
||||
class CairoImage {
|
||||
public:
|
||||
// Constructor.
|
||||
CairoImage (double x1, double y1, double x2, double y2);
|
||||
|
||||
// Destructor.
|
||||
~CairoImage ();
|
||||
|
||||
CairoImage(const CairoImage &) = delete;
|
||||
CairoImage& operator=(const CairoImage &) = delete;
|
||||
|
||||
// Set the image cairo surface
|
||||
void setImage (cairo_surface_t *image);
|
||||
|
||||
// Get the image cairo surface
|
||||
cairo_surface_t *getImage () const { return image; }
|
||||
|
||||
// Get the image rectangle
|
||||
void getRect (double *xa1, double *ya1, double *xa2, double *ya2)
|
||||
{ *xa1 = x1; *ya1 = y1; *xa2 = x2; *ya2 = y2; }
|
||||
|
||||
private:
|
||||
cairo_surface_t *image; // image cairo surface
|
||||
double x1, y1; // upper left corner
|
||||
double x2, y2; // lower right corner
|
||||
};
|
||||
|
||||
|
||||
//------------------------------------------------------------------------
|
||||
// CairoOutputDev
|
||||
//------------------------------------------------------------------------
|
||||
|
||||
class CairoOutputDev: public OutputDev {
|
||||
public:
|
||||
|
||||
// Constructor.
|
||||
CairoOutputDev();
|
||||
|
||||
// Destructor.
|
||||
virtual ~CairoOutputDev();
|
||||
|
||||
//----- get info about output device
|
||||
|
||||
// Does this device use upside-down coordinates?
|
||||
// (Upside-down means (0,0) is the top left corner of the page.)
|
||||
bool upsideDown() override { return true; }
|
||||
|
||||
// Does this device use drawChar() or drawString()?
|
||||
bool useDrawChar() override { return true; }
|
||||
|
||||
// Does this device use tilingPatternFill()? If this returns false,
|
||||
// tiling pattern fills will be reduced to a series of other drawing
|
||||
// operations.
|
||||
bool useTilingPatternFill() override { return true; }
|
||||
|
||||
// Does this device use functionShadedFill(), axialShadedFill(), and
|
||||
// radialShadedFill()? If this returns false, these shaded fills
|
||||
// will be reduced to a series of other drawing operations.
|
||||
#if CAIRO_VERSION >= CAIRO_VERSION_ENCODE(1, 12, 0)
|
||||
bool useShadedFills(int type) override { return type <= 7; }
|
||||
#else
|
||||
bool useShadedFills(int type) override { return type > 1 && type < 4; }
|
||||
#endif
|
||||
|
||||
// Does this device use FillColorStop()?
|
||||
bool useFillColorStop() override { return true; }
|
||||
|
||||
// Does this device use beginType3Char/endType3Char? Otherwise,
|
||||
// text in Type 3 fonts will be drawn with drawChar/drawString.
|
||||
bool interpretType3Chars() override { return false; }
|
||||
|
||||
// Does this device need to clip pages to the crop box even when the
|
||||
// box is the crop box?
|
||||
bool needClipToCropBox() override { return true; }
|
||||
|
||||
//----- initialization and control
|
||||
|
||||
// Start a page.
|
||||
void startPage(int pageNum, GfxState *state, XRef *xref) override;
|
||||
|
||||
// End a page.
|
||||
void endPage() override;
|
||||
|
||||
//----- save/restore graphics state
|
||||
void saveState(GfxState *state) override;
|
||||
void restoreState(GfxState *state) override;
|
||||
|
||||
//----- update graphics state
|
||||
void updateAll(GfxState *state) override;
|
||||
void setDefaultCTM(const double *ctm) override;
|
||||
void updateCTM(GfxState *state, double m11, double m12,
|
||||
double m21, double m22, double m31, double m32) override;
|
||||
void updateLineDash(GfxState *state) override;
|
||||
void updateFlatness(GfxState *state) override;
|
||||
void updateLineJoin(GfxState *state) override;
|
||||
void updateLineCap(GfxState *state) override;
|
||||
void updateMiterLimit(GfxState *state) override;
|
||||
void updateLineWidth(GfxState *state) override;
|
||||
void updateFillColor(GfxState *state) override;
|
||||
void updateStrokeColor(GfxState *state) override;
|
||||
void updateFillOpacity(GfxState *state) override;
|
||||
void updateStrokeOpacity(GfxState *state) override;
|
||||
void updateFillColorStop(GfxState *state, double offset) override;
|
||||
void updateBlendMode(GfxState *state) override;
|
||||
|
||||
//----- update text state
|
||||
void updateFont(GfxState *state) override;
|
||||
|
||||
//----- path painting
|
||||
void stroke(GfxState *state) override;
|
||||
void fill(GfxState *state) override;
|
||||
void eoFill(GfxState *state) override;
|
||||
void clipToStrokePath(GfxState *state) override;
|
||||
bool tilingPatternFill(GfxState *state, Gfx *gfx, Catalog *cat, Object *str,
|
||||
const double *pmat, int paintType, int tilingType, Dict *resDict,
|
||||
const double *mat, const double *bbox,
|
||||
int x0, int y0, int x1, int y1,
|
||||
double xStep, double yStep) override;
|
||||
#if CAIRO_VERSION >= CAIRO_VERSION_ENCODE(1, 12, 0)
|
||||
bool functionShadedFill(GfxState *state, GfxFunctionShading *shading) override;
|
||||
#endif
|
||||
bool axialShadedFill(GfxState *state, GfxAxialShading *shading, double tMin, double tMax) override;
|
||||
bool axialShadedSupportExtend(GfxState *state, GfxAxialShading *shading) override;
|
||||
bool radialShadedFill(GfxState *state, GfxRadialShading *shading, double sMin, double sMax) override;
|
||||
bool radialShadedSupportExtend(GfxState *state, GfxRadialShading *shading) override;
|
||||
#if CAIRO_VERSION >= CAIRO_VERSION_ENCODE(1, 12, 0)
|
||||
bool gouraudTriangleShadedFill(GfxState *state, GfxGouraudTriangleShading *shading) override;
|
||||
bool patchMeshShadedFill(GfxState *state, GfxPatchMeshShading *shading) override;
|
||||
#endif
|
||||
|
||||
//----- path clipping
|
||||
void clip(GfxState *state) override;
|
||||
void eoClip(GfxState *state) override;
|
||||
|
||||
//----- text drawing
|
||||
void beginString(GfxState *state, const GooString *s) override;
|
||||
void endString(GfxState *state) override;
|
||||
void drawChar(GfxState *state, double x, double y,
|
||||
double dx, double dy,
|
||||
double originX, double originY,
|
||||
CharCode code, int nBytes, const Unicode *u, int uLen) override;
|
||||
void beginActualText(GfxState *state, const GooString *text) override;
|
||||
void endActualText(GfxState *state) override;
|
||||
|
||||
bool beginType3Char(GfxState *state, double x, double y,
|
||||
double dx, double dy,
|
||||
CharCode code, const Unicode *u, int uLen) override;
|
||||
void endType3Char(GfxState *state) override;
|
||||
void beginTextObject(GfxState *state) override;
|
||||
void endTextObject(GfxState *state) override;
|
||||
|
||||
//----- image drawing
|
||||
void drawImageMask(GfxState *state, Object *ref, Stream *str,
|
||||
int width, int height, bool invert, bool interpolate,
|
||||
bool inlineImg) override;
|
||||
void setSoftMaskFromImageMask(GfxState *state,
|
||||
Object *ref, Stream *str,
|
||||
int width, int height, bool invert,
|
||||
bool inlineImg, double *baseMatrix) override;
|
||||
void unsetSoftMaskFromImageMask(GfxState *state, double *baseMatrix) override;
|
||||
void drawImageMaskPrescaled(GfxState *state, Object *ref, Stream *str,
|
||||
int width, int height, bool invert, bool interpolate,
|
||||
bool inlineImg);
|
||||
void drawImageMaskRegular(GfxState *state, Object *ref, Stream *str,
|
||||
int width, int height, bool invert, bool interpolate,
|
||||
bool inlineImg);
|
||||
|
||||
void drawImage(GfxState *state, Object *ref, Stream *str,
|
||||
int width, int height, GfxImageColorMap *colorMap,
|
||||
bool interpolate, const int *maskColors, bool inlineImg) override;
|
||||
void drawSoftMaskedImage(GfxState *state, Object *ref, Stream *str,
|
||||
int width, int height,
|
||||
GfxImageColorMap *colorMap,
|
||||
bool interpolate,
|
||||
Stream *maskStr,
|
||||
int maskWidth, int maskHeight,
|
||||
GfxImageColorMap *maskColorMap,
|
||||
bool maskInterpolate) override;
|
||||
|
||||
void drawMaskedImage(GfxState *state, Object *ref, Stream *str,
|
||||
int width, int height,
|
||||
GfxImageColorMap *colorMap,
|
||||
bool interpolate,
|
||||
Stream *maskStr,
|
||||
int maskWidth, int maskHeight,
|
||||
bool maskInvert, bool maskInterpolate) override;
|
||||
|
||||
//----- transparency groups and soft masks
|
||||
void beginTransparencyGroup(GfxState * /*state*/, const double * /*bbox*/,
|
||||
GfxColorSpace * /*blendingColorSpace*/,
|
||||
bool /*isolated*/, bool /*knockout*/,
|
||||
bool /*forSoftMask*/) override;
|
||||
void endTransparencyGroup(GfxState * /*state*/) override;
|
||||
void popTransparencyGroup();
|
||||
void paintTransparencyGroup(GfxState * /*state*/, const double * /*bbox*/) override;
|
||||
void setSoftMask(GfxState * /*state*/, const double * /*bbox*/, bool /*alpha*/,
|
||||
Function * /*transferFunc*/, GfxColor * /*backdropColor*/) override;
|
||||
void clearSoftMask(GfxState * /*state*/) override;
|
||||
|
||||
//----- Type 3 font operators
|
||||
void type3D0(GfxState *state, double wx, double wy) override;
|
||||
void type3D1(GfxState *state, double wx, double wy,
|
||||
double llx, double lly, double urx, double ury) override;
|
||||
|
||||
//----- special access
|
||||
|
||||
// Called to indicate that a new PDF document has been loaded.
|
||||
void startDoc(PDFDoc *docA, CairoFontEngine *fontEngine = nullptr);
|
||||
|
||||
bool isReverseVideo() { return false; }
|
||||
|
||||
void setCairo (cairo_t *cr);
|
||||
void setTextPage (TextPage *text);
|
||||
void setPrinting (bool printingA) { printing = printingA; needFontUpdate = true; }
|
||||
void setAntialias(cairo_antialias_t antialias);
|
||||
|
||||
void setInType3Char(bool inType3CharA) { inType3Char = inType3CharA; }
|
||||
void getType3GlyphWidth (double *wx, double *wy) { *wx = t3_glyph_wx; *wy = t3_glyph_wy; }
|
||||
bool hasType3GlyphBBox () { return t3_glyph_has_bbox; }
|
||||
double *getType3GlyphBBox () { return t3_glyph_bbox; }
|
||||
|
||||
protected:
|
||||
void doPath(cairo_t *cairo, GfxState *state, const GfxPath *path);
|
||||
cairo_surface_t *downscaleSurface(cairo_surface_t *orig_surface);
|
||||
void getScaledSize(const cairo_matrix_t *matrix,
|
||||
int orig_width, int orig_height,
|
||||
int *scaledWidth, int *scaledHeight);
|
||||
cairo_filter_t getFilterForSurface(cairo_surface_t *image,
|
||||
bool interpolate);
|
||||
bool getStreamData (Stream *str, char **buffer, int *length);
|
||||
void setMimeData(GfxState *state, Stream *str, Object *ref,
|
||||
GfxImageColorMap *colorMap, cairo_surface_t *image, int height);
|
||||
void fillToStrokePathClip(GfxState *state);
|
||||
void alignStrokeCoords(const GfxSubpath *subpath, int i, double *x, double *y);
|
||||
#if CAIRO_VERSION >= CAIRO_VERSION_ENCODE(1, 14, 0)
|
||||
bool setMimeDataForJBIG2Globals (Stream *str, cairo_surface_t *image);
|
||||
#endif
|
||||
#if CAIRO_VERSION >= CAIRO_VERSION_ENCODE(1, 15, 10)
|
||||
bool setMimeDataForCCITTParams(Stream *str, cairo_surface_t *image, int height);
|
||||
#endif
|
||||
static void setContextAntialias(cairo_t *cr, cairo_antialias_t antialias);
|
||||
|
||||
GfxRGB fill_color, stroke_color;
|
||||
cairo_pattern_t *fill_pattern, *stroke_pattern;
|
||||
double fill_opacity;
|
||||
double stroke_opacity;
|
||||
bool stroke_adjust;
|
||||
bool adjusted_stroke_width;
|
||||
bool align_stroke_coords;
|
||||
CairoFont *currentFont;
|
||||
XRef *xref;
|
||||
|
||||
struct StrokePathClip {
|
||||
GfxPath *path;
|
||||
cairo_matrix_t ctm;
|
||||
double line_width;
|
||||
double *dashes;
|
||||
int dash_count;
|
||||
double dash_offset;
|
||||
cairo_line_cap_t cap;
|
||||
cairo_line_join_t join;
|
||||
double miter;
|
||||
int ref_count;
|
||||
} *strokePathClip;
|
||||
|
||||
PDFDoc *doc; // the current document
|
||||
|
||||
static FT_Library ft_lib;
|
||||
static bool ft_lib_initialized;
|
||||
|
||||
CairoFontEngine *fontEngine;
|
||||
bool fontEngine_owner;
|
||||
|
||||
cairo_t *cairo;
|
||||
cairo_matrix_t orig_matrix;
|
||||
bool needFontUpdate; // set when the font needs to be updated
|
||||
bool printing;
|
||||
bool use_show_text_glyphs;
|
||||
bool text_matrix_valid;
|
||||
cairo_glyph_t *glyphs;
|
||||
int glyphCount;
|
||||
cairo_text_cluster_t *clusters;
|
||||
int clusterCount;
|
||||
char *utf8;
|
||||
int utf8Count;
|
||||
int utf8Max;
|
||||
cairo_path_t *textClipPath;
|
||||
bool inUncoloredPattern; // inside a uncolored pattern (PaintType = 2)
|
||||
bool inType3Char; // inside a Type 3 CharProc
|
||||
double t3_glyph_wx, t3_glyph_wy;
|
||||
bool t3_glyph_has_bbox;
|
||||
double t3_glyph_bbox[4];
|
||||
cairo_antialias_t antialias;
|
||||
bool prescaleImages;
|
||||
|
||||
TextPage *textPage; // text for the current page
|
||||
ActualText *actualText;
|
||||
|
||||
cairo_pattern_t *group;
|
||||
cairo_pattern_t *shape;
|
||||
cairo_pattern_t *mask;
|
||||
cairo_matrix_t mask_matrix;
|
||||
cairo_t *cairo_shape;
|
||||
int knockoutCount;
|
||||
struct ColorSpaceStack {
|
||||
bool knockout;
|
||||
GfxColorSpace *cs;
|
||||
cairo_matrix_t group_matrix;
|
||||
struct ColorSpaceStack *next;
|
||||
} * groupColorSpaceStack;
|
||||
|
||||
struct MaskStack {
|
||||
cairo_pattern_t *mask;
|
||||
cairo_matrix_t mask_matrix;
|
||||
struct MaskStack *next;
|
||||
} *maskStack;
|
||||
|
||||
};
|
||||
|
||||
//------------------------------------------------------------------------
|
||||
// CairoImageOutputDev
|
||||
//------------------------------------------------------------------------
|
||||
|
||||
//XXX: this should ideally not inherit from CairoOutputDev but use it instead perhaps
|
||||
class CairoImageOutputDev: public CairoOutputDev {
|
||||
public:
|
||||
|
||||
// Constructor.
|
||||
CairoImageOutputDev();
|
||||
|
||||
// Destructor.
|
||||
virtual ~CairoImageOutputDev();
|
||||
|
||||
//----- get info about output device
|
||||
|
||||
// Does this device use upside-down coordinates?
|
||||
// (Upside-down means (0,0) is the top left corner of the page.)
|
||||
bool upsideDown() override { return true; }
|
||||
|
||||
// Does this device use drawChar() or drawString()?
|
||||
bool useDrawChar() override { return false; }
|
||||
|
||||
// Does this device use tilingPatternFill()? If this returns false,
|
||||
// tiling pattern fills will be reduced to a series of other drawing
|
||||
// operations.
|
||||
bool useTilingPatternFill() override { return true; }
|
||||
|
||||
// Does this device use functionShadedFill(), axialShadedFill(), and
|
||||
// radialShadedFill()? If this returns false, these shaded fills
|
||||
// will be reduced to a series of other drawing operations.
|
||||
#if CAIRO_VERSION >= CAIRO_VERSION_ENCODE(1, 11, 2)
|
||||
bool useShadedFills(int type) override { return type <= 7; }
|
||||
#else
|
||||
bool useShadedFills(int type) override { return type < 4; }
|
||||
#endif
|
||||
|
||||
// Does this device use FillColorStop()?
|
||||
bool useFillColorStop() override { return false; }
|
||||
|
||||
// Does this device use beginType3Char/endType3Char? Otherwise,
|
||||
// text in Type 3 fonts will be drawn with drawChar/drawString.
|
||||
bool interpretType3Chars() override { return false; }
|
||||
|
||||
// Does this device need non-text content?
|
||||
bool needNonText() override { return true; }
|
||||
|
||||
//----- save/restore graphics state
|
||||
void saveState(GfxState *state) override { }
|
||||
void restoreState(GfxState *state) override { }
|
||||
|
||||
//----- update graphics state
|
||||
void updateAll(GfxState *state) override { }
|
||||
void setDefaultCTM(const double *ctm) override { }
|
||||
void updateCTM(GfxState *state, double m11, double m12,
|
||||
double m21, double m22, double m31, double m32) override { }
|
||||
void updateLineDash(GfxState *state) override { }
|
||||
void updateFlatness(GfxState *state) override { }
|
||||
void updateLineJoin(GfxState *state) override { }
|
||||
void updateLineCap(GfxState *state) override { }
|
||||
void updateMiterLimit(GfxState *state) override { }
|
||||
void updateLineWidth(GfxState *state) override { }
|
||||
void updateFillColor(GfxState *state) override { }
|
||||
void updateStrokeColor(GfxState *state) override { }
|
||||
void updateFillOpacity(GfxState *state) override { }
|
||||
void updateStrokeOpacity(GfxState *state) override { }
|
||||
void updateBlendMode(GfxState *state) override { }
|
||||
|
||||
//----- update text state
|
||||
void updateFont(GfxState *state) override { }
|
||||
|
||||
//----- path painting
|
||||
void stroke(GfxState *state) override { }
|
||||
void fill(GfxState *state) override { }
|
||||
void eoFill(GfxState *state) override { }
|
||||
void clipToStrokePath(GfxState *state) override { }
|
||||
bool tilingPatternFill(GfxState *state, Gfx *gfx, Catalog *cat, Object *str,
|
||||
const double *pmat, int paintType, int tilingType, Dict *resDict,
|
||||
const double *mat, const double *bbox,
|
||||
int x0, int y0, int x1, int y1,
|
||||
double xStep, double yStep) override { return true; }
|
||||
bool axialShadedFill(GfxState *state,
|
||||
GfxAxialShading *shading,
|
||||
double tMin, double tMax) override { return true; }
|
||||
bool radialShadedFill(GfxState *state,
|
||||
GfxRadialShading *shading,
|
||||
double sMin, double sMax) override { return true; }
|
||||
|
||||
//----- path clipping
|
||||
void clip(GfxState *state) override { }
|
||||
void eoClip(GfxState *state) override { }
|
||||
|
||||
//----- image drawing
|
||||
void drawImageMask(GfxState *state, Object *ref, Stream *str,
|
||||
int width, int height, bool invert,
|
||||
bool interpolate, bool inlineImg) override;
|
||||
void drawImage(GfxState *state, Object *ref, Stream *str,
|
||||
int width, int height, GfxImageColorMap *colorMap,
|
||||
bool interpolate, const int *maskColors, bool inlineImg) override;
|
||||
void drawSoftMaskedImage(GfxState *state, Object *ref, Stream *str,
|
||||
int width, int height,
|
||||
GfxImageColorMap *colorMap,
|
||||
bool interpolate,
|
||||
Stream *maskStr,
|
||||
int maskWidth, int maskHeight,
|
||||
GfxImageColorMap *maskColorMap,
|
||||
bool maskInterpolate) override;
|
||||
void drawMaskedImage(GfxState *state, Object *ref, Stream *str,
|
||||
int width, int height,
|
||||
GfxImageColorMap *colorMap,
|
||||
bool interpolate,
|
||||
Stream *maskStr,
|
||||
int maskWidth, int maskHeight,
|
||||
bool maskInvert, bool maskInterpolate) override;
|
||||
void setSoftMaskFromImageMask(GfxState *state, Object *ref, Stream *str,
|
||||
int width, int height, bool invert,
|
||||
bool inlineImg, double *baseMatrix) override;
|
||||
void unsetSoftMaskFromImageMask(GfxState *state, double *baseMatrix) override {}
|
||||
|
||||
|
||||
//----- transparency groups and soft masks
|
||||
void beginTransparencyGroup(GfxState * /*state*/, const double * /*bbox*/,
|
||||
GfxColorSpace * /*blendingColorSpace*/,
|
||||
bool /*isolated*/, bool /*knockout*/,
|
||||
bool /*forSoftMask*/) override {}
|
||||
void endTransparencyGroup(GfxState * /*state*/) override {}
|
||||
void paintTransparencyGroup(GfxState * /*state*/, const double * /*bbox*/) override {}
|
||||
void setSoftMask(GfxState * /*state*/, const double * /*bbox*/, bool /*alpha*/,
|
||||
Function * /*transferFunc*/, GfxColor * /*backdropColor*/) override {}
|
||||
void clearSoftMask(GfxState * /*state*/) override {}
|
||||
|
||||
//----- Image list
|
||||
// By default images are not rendred
|
||||
void setImageDrawDecideCbk(bool (*cbk)(int img_id, void *data),
|
||||
void *data) { imgDrawCbk = cbk; imgDrawCbkData = data; }
|
||||
// Iterate through list of images.
|
||||
int getNumImages() const { return numImages; }
|
||||
CairoImage *getImage(int i) const { return images[i]; }
|
||||
|
||||
private:
|
||||
void saveImage(CairoImage *image);
|
||||
void getBBox(GfxState *state, int width, int height,
|
||||
double *x1, double *y1, double *x2, double *y2);
|
||||
|
||||
CairoImage **images;
|
||||
int numImages;
|
||||
int size;
|
||||
bool (*imgDrawCbk)(int img_id, void *data);
|
||||
void *imgDrawCbkData;
|
||||
};
|
||||
|
||||
#endif
|
379
pdf2htmlEX/3rdparty/poppler/git/CairoRescaleBox.cc
vendored
379
pdf2htmlEX/3rdparty/poppler/git/CairoRescaleBox.cc
vendored
@ -1,379 +0,0 @@
|
||||
/* -*- Mode: c; c-basic-offset: 4; tab-width: 8; indent-tabs-mode: t; -*- */
|
||||
/*
|
||||
* Copyright © 2009 Mozilla Corporation
|
||||
*
|
||||
* Permission to use, copy, modify, distribute, and sell this software and its
|
||||
* documentation for any purpose is hereby granted without fee, provided that
|
||||
* the above copyright notice appear in all copies and that both that
|
||||
* copyright notice and this permission notice appear in supporting
|
||||
* documentation, and that the name of Mozilla Corporation not be used in
|
||||
* advertising or publicity pertaining to distribution of the software without
|
||||
* specific, written prior permission. Mozilla Corporation makes no
|
||||
* representations about the suitability of this software for any purpose. It
|
||||
* is provided "as is" without express or implied warranty.
|
||||
*
|
||||
* MOZILLA CORPORATION DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
|
||||
* INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT
|
||||
* SHALL MOZILLA CORPORATION BE LIABLE FOR ANY SPECIAL, INDIRECT OR
|
||||
* CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
||||
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
||||
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
||||
* OF THIS SOFTWARE.
|
||||
*
|
||||
* Author: Jeff Muizelaar, Mozilla Corp.
|
||||
*/
|
||||
|
||||
//========================================================================
|
||||
//
|
||||
// Modified under the Poppler project - http://poppler.freedesktop.org
|
||||
//
|
||||
// All changes made under the Poppler project to this file are licensed
|
||||
// under GPL version 2 or later
|
||||
//
|
||||
// Copyright (C) 2012 Hib Eris <hib@hiberis.nl>
|
||||
// Copyright (C) 2012, 2017 Adrian Johnson <ajohnson@redneon.com>
|
||||
// Copyright (C) 2018 Adam Reichold <adam.reichold@t-online.de>
|
||||
// Copyright (C) 2019 Albert Astals Cid <aacid@kde.org>
|
||||
// Copyright (C) 2019 Marek Kasik <mkasik@redhat.com>
|
||||
//
|
||||
// To see a description of the changes please see the Changelog file that
|
||||
// came with your tarball or type make ChangeLog if you are building from git
|
||||
//
|
||||
//========================================================================
|
||||
|
||||
|
||||
/* This implements a box filter that supports non-integer box sizes */
|
||||
|
||||
#include <poppler-config.h>
|
||||
|
||||
#include <cstdint>
|
||||
#include <stdint.h>
|
||||
#include <stdio.h>
|
||||
#include <assert.h>
|
||||
#include <stdlib.h>
|
||||
#include <math.h>
|
||||
#include "goo/gmem.h"
|
||||
#include "CairoRescaleBox.h"
|
||||
|
||||
|
||||
/* we work in fixed point where 1. == 1 << 24 */
|
||||
#define FIXED_SHIFT 24
|
||||
|
||||
|
||||
static void downsample_row_box_filter (
|
||||
int start, int width,
|
||||
uint32_t *src, const uint32_t *src_limit, uint32_t *dest,
|
||||
const int coverage[], int pixel_coverage)
|
||||
{
|
||||
/* we need an array of the pixel contribution of each destination pixel on the boundaries.
|
||||
* we invert the value to get the value on the other size of the box */
|
||||
/*
|
||||
|
||||
value = a * contribution * 1/box_size
|
||||
value += a * 1/box_size
|
||||
value += a * 1/box_size
|
||||
value += a * 1/box_size
|
||||
value += a * (1 - contribution) * 1/box_size
|
||||
a * (1/box_size - contribution * 1/box_size)
|
||||
|
||||
box size is constant
|
||||
|
||||
|
||||
value = a * contribution_a * 1/box_size + b * contribution_b * 1/box_size
|
||||
contribution_b = (1 - contribution_a)
|
||||
= (1 - contribution_a_next)
|
||||
*/
|
||||
|
||||
/* box size = ceil(src_width/dest_width) */
|
||||
int x = 0;
|
||||
|
||||
/* skip to start */
|
||||
/* XXX: it might be possible to do this directly instead of iteratively, however
|
||||
* the iterative solution is simple */
|
||||
while (x < start && src < src_limit)
|
||||
{
|
||||
int box = 1 << FIXED_SHIFT;
|
||||
int start_coverage = coverage[x];
|
||||
box -= start_coverage;
|
||||
src++;
|
||||
while (box >= pixel_coverage && src < src_limit)
|
||||
{
|
||||
src++;
|
||||
box -= pixel_coverage;
|
||||
}
|
||||
x++;
|
||||
}
|
||||
|
||||
while (x < start + width && src < src_limit)
|
||||
{
|
||||
uint32_t a = 0;
|
||||
uint32_t r = 0;
|
||||
uint32_t g = 0;
|
||||
uint32_t b = 0;
|
||||
int box = 1 << FIXED_SHIFT;
|
||||
int start_coverage = coverage[x];
|
||||
|
||||
a = ((*src >> 24) & 0xff) * start_coverage;
|
||||
r = ((*src >> 16) & 0xff) * start_coverage;
|
||||
g = ((*src >> 8) & 0xff) * start_coverage;
|
||||
b = ((*src >> 0) & 0xff) * start_coverage;
|
||||
src++;
|
||||
x++;
|
||||
box -= start_coverage;
|
||||
|
||||
while (box >= pixel_coverage && src < src_limit)
|
||||
{
|
||||
a += ((*src >> 24) & 0xff) * pixel_coverage;
|
||||
r += ((*src >> 16) & 0xff) * pixel_coverage;
|
||||
g += ((*src >> 8) & 0xff) * pixel_coverage;
|
||||
b += ((*src >> 0) & 0xff) * pixel_coverage;
|
||||
src++;
|
||||
|
||||
box -= pixel_coverage;
|
||||
}
|
||||
|
||||
/* multiply by whatever is leftover
|
||||
* this ensures that we don't bias down.
|
||||
* i.e. start_coverage + n*pixel_coverage + box == 1 << 24 */
|
||||
if (box > 0 && src < src_limit)
|
||||
{
|
||||
a += ((*src >> 24) & 0xff) * box;
|
||||
r += ((*src >> 16) & 0xff) * box;
|
||||
g += ((*src >> 8) & 0xff) * box;
|
||||
b += ((*src >> 0) & 0xff) * box;
|
||||
}
|
||||
|
||||
a >>= FIXED_SHIFT;
|
||||
r >>= FIXED_SHIFT;
|
||||
g >>= FIXED_SHIFT;
|
||||
b >>= FIXED_SHIFT;
|
||||
|
||||
*dest = (a << 24) | (r << 16) | (g << 8) | b;
|
||||
dest++;
|
||||
}
|
||||
}
|
||||
|
||||
static void downsample_columns_box_filter (
|
||||
int n,
|
||||
int start_coverage,
|
||||
int pixel_coverage,
|
||||
uint32_t *src, uint32_t *dest)
|
||||
{
|
||||
int stride = n;
|
||||
while (n--) {
|
||||
uint32_t a = 0;
|
||||
uint32_t r = 0;
|
||||
uint32_t g = 0;
|
||||
uint32_t b = 0;
|
||||
uint32_t *column_src = src;
|
||||
int box = 1 << FIXED_SHIFT;
|
||||
|
||||
a = ((*column_src >> 24) & 0xff) * start_coverage;
|
||||
r = ((*column_src >> 16) & 0xff) * start_coverage;
|
||||
g = ((*column_src >> 8) & 0xff) * start_coverage;
|
||||
b = ((*column_src >> 0) & 0xff) * start_coverage;
|
||||
column_src += stride;
|
||||
box -= start_coverage;
|
||||
|
||||
while (box >= pixel_coverage)
|
||||
{
|
||||
a += ((*column_src >> 24) & 0xff) * pixel_coverage;
|
||||
r += ((*column_src >> 16) & 0xff) * pixel_coverage;
|
||||
g += ((*column_src >> 8) & 0xff) * pixel_coverage;
|
||||
b += ((*column_src >> 0) & 0xff) * pixel_coverage;
|
||||
column_src += stride;
|
||||
box -= pixel_coverage;
|
||||
}
|
||||
|
||||
if (box > 0) {
|
||||
a += ((*column_src >> 24) & 0xff) * box;
|
||||
r += ((*column_src >> 16) & 0xff) * box;
|
||||
g += ((*column_src >> 8) & 0xff) * box;
|
||||
b += ((*column_src >> 0) & 0xff) * box;
|
||||
}
|
||||
|
||||
a >>= FIXED_SHIFT;
|
||||
r >>= FIXED_SHIFT;
|
||||
g >>= FIXED_SHIFT;
|
||||
b >>= FIXED_SHIFT;
|
||||
|
||||
*dest = (a << 24) | (r << 16) | (g << 8) | b;
|
||||
dest++;
|
||||
src++;
|
||||
}
|
||||
}
|
||||
|
||||
static int compute_coverage (int coverage[], int src_length, int dest_length)
|
||||
{
|
||||
int i;
|
||||
/* num = src_length/dest_length
|
||||
total = sum(pixel) / num
|
||||
|
||||
pixel * 1/num == pixel * dest_length / src_length
|
||||
*/
|
||||
/* the average contribution of each source pixel */
|
||||
int ratio = ((1 << 24)*(long long int)dest_length)/src_length;
|
||||
/* because ((1 << 24)*(long long int)dest_length) won't always be divisible by src_length
|
||||
* we'll need someplace to put the other bits.
|
||||
*
|
||||
* We want to ensure a + n*ratio < 1<<24
|
||||
*
|
||||
* 1<<24
|
||||
* */
|
||||
|
||||
double scale = (double)src_length/dest_length;
|
||||
|
||||
/* for each destination pixel compute the coverage of the left most pixel included in the box */
|
||||
/* I have a proof of this, which this margin is too narrow to contain */
|
||||
for (i=0; i<dest_length; i++)
|
||||
{
|
||||
double left_side = i*scale;
|
||||
double right_side = (i+1)*scale;
|
||||
double right_fract = right_side - floor (right_side);
|
||||
double left_fract = ceil (left_side) - left_side;
|
||||
int overage;
|
||||
/* find out how many source pixels will be used to fill the box */
|
||||
int count = floor (right_side) - ceil (left_side);
|
||||
/* what's the maximum value this expression can become?
|
||||
floor((i+1)*scale) - ceil(i*scale)
|
||||
|
||||
(i+1)*scale - i*scale == scale
|
||||
|
||||
since floor((i+1)*scale) <= (i+1)*scale
|
||||
and ceil(i*scale) >= i*scale
|
||||
|
||||
floor((i+1)*scale) - ceil(i*scale) <= scale
|
||||
|
||||
further since: floor((i+1)*scale) - ceil(i*scale) is an integer
|
||||
|
||||
therefore:
|
||||
floor((i+1)*scale) - ceil(i*scale) <= floor(scale)
|
||||
*/
|
||||
|
||||
if (left_fract == 0.)
|
||||
count--;
|
||||
|
||||
/* compute how much the right-most pixel contributes */
|
||||
overage = ratio*(right_fract);
|
||||
|
||||
/* the remainder is the amount that the left-most pixel
|
||||
* contributes */
|
||||
coverage[i] = (1<<24) - (count * ratio + overage);
|
||||
}
|
||||
|
||||
return ratio;
|
||||
}
|
||||
|
||||
|
||||
bool CairoRescaleBox::downScaleImage(unsigned orig_width, unsigned orig_height,
|
||||
signed scaled_width, signed scaled_height,
|
||||
unsigned short int start_column, unsigned short int start_row,
|
||||
unsigned short int width, unsigned short int height,
|
||||
cairo_surface_t *dest_surface) {
|
||||
int pixel_coverage_x, pixel_coverage_y;
|
||||
int dest_y;
|
||||
int src_y = 0;
|
||||
uint32_t *scanline;
|
||||
int *x_coverage = nullptr;
|
||||
int *y_coverage = nullptr;
|
||||
uint32_t *temp_buf = nullptr;
|
||||
bool retval = false;
|
||||
unsigned int *dest;
|
||||
int dst_stride;
|
||||
|
||||
dest = reinterpret_cast<unsigned int *>(cairo_image_surface_get_data (dest_surface));
|
||||
dst_stride = cairo_image_surface_get_stride (dest_surface);
|
||||
|
||||
scanline = (uint32_t*)gmallocn (orig_width, sizeof(int));
|
||||
|
||||
x_coverage = (int *)gmallocn (orig_width, sizeof(int));
|
||||
y_coverage = (int *)gmallocn (orig_height, sizeof(int));
|
||||
|
||||
/* we need to allocate enough room for ceil(src_height/dest_height)+1
|
||||
Example:
|
||||
src_height = 140
|
||||
dest_height = 50
|
||||
src_height/dest_height = 2.8
|
||||
|
||||
|-------------| 2.8 pixels
|
||||
|----|----|----|----| 4 pixels
|
||||
need to sample 3 pixels
|
||||
|
||||
|-------------| 2.8 pixels
|
||||
|----|----|----|----| 4 pixels
|
||||
need to sample 4 pixels
|
||||
*/
|
||||
|
||||
temp_buf = (uint32_t *)gmallocn3 ((orig_height + scaled_height-1)/scaled_height+1, scaled_width, sizeof(uint32_t));
|
||||
|
||||
if (!x_coverage || !y_coverage || !scanline || !temp_buf)
|
||||
goto cleanup;
|
||||
|
||||
pixel_coverage_x = compute_coverage (x_coverage, orig_width, scaled_width);
|
||||
pixel_coverage_y = compute_coverage (y_coverage, orig_height, scaled_height);
|
||||
|
||||
assert (width + start_column <= scaled_width);
|
||||
|
||||
|
||||
|
||||
/* skip the rows at the beginning */
|
||||
for (dest_y = 0; dest_y < start_row; dest_y++)
|
||||
{
|
||||
int box = 1 << FIXED_SHIFT;
|
||||
int start_coverage_y = y_coverage[dest_y];
|
||||
box -= start_coverage_y;
|
||||
src_y++;
|
||||
while (box >= pixel_coverage_y)
|
||||
{
|
||||
box -= pixel_coverage_y;
|
||||
src_y++;
|
||||
}
|
||||
}
|
||||
|
||||
for (; dest_y < start_row + height; dest_y++)
|
||||
{
|
||||
int columns = 0;
|
||||
int box = 1 << FIXED_SHIFT;
|
||||
int start_coverage_y = y_coverage[dest_y];
|
||||
|
||||
getRow(src_y, scanline);
|
||||
downsample_row_box_filter (start_column, width, scanline, scanline + orig_width, temp_buf + width * columns, x_coverage, pixel_coverage_x);
|
||||
columns++;
|
||||
src_y++;
|
||||
box -= start_coverage_y;
|
||||
|
||||
while (box >= pixel_coverage_y)
|
||||
{
|
||||
getRow(src_y, scanline);
|
||||
downsample_row_box_filter (start_column, width, scanline, scanline + orig_width, temp_buf + width * columns, x_coverage, pixel_coverage_x);
|
||||
columns++;
|
||||
src_y++;
|
||||
box -= pixel_coverage_y;
|
||||
}
|
||||
|
||||
/* downsample any leftovers */
|
||||
if (box > 0)
|
||||
{
|
||||
getRow(src_y, scanline);
|
||||
downsample_row_box_filter (start_column, width, scanline, scanline + orig_width, temp_buf + width * columns, x_coverage, pixel_coverage_x);
|
||||
columns++;
|
||||
}
|
||||
|
||||
/* now scale the rows we just downsampled in the y direction */
|
||||
downsample_columns_box_filter (width, start_coverage_y, pixel_coverage_y, temp_buf, dest);
|
||||
dest += dst_stride / 4;
|
||||
|
||||
// assert(width*columns <= ((orig_height + scaled_height-1)/scaled_height+1) * width);
|
||||
}
|
||||
// assert (src_y<=orig_height);
|
||||
|
||||
retval = true;
|
||||
|
||||
cleanup:
|
||||
free (x_coverage);
|
||||
free (y_coverage);
|
||||
free (temp_buf);
|
||||
free (scanline);
|
||||
|
||||
return retval;
|
||||
}
|
@ -1,64 +0,0 @@
|
||||
/*
|
||||
* Copyright © 2009 Mozilla Corporation
|
||||
*
|
||||
* Permission to use, copy, modify, distribute, and sell this software and its
|
||||
* documentation for any purpose is hereby granted without fee, provided that
|
||||
* the above copyright notice appear in all copies and that both that
|
||||
* copyright notice and this permission notice appear in supporting
|
||||
* documentation, and that the name of Mozilla Corporation not be used in
|
||||
* advertising or publicity pertaining to distribution of the software without
|
||||
* specific, written prior permission. Mozilla Corporation makes no
|
||||
* representations about the suitability of this software for any purpose. It
|
||||
* is provided "as is" without express or implied warranty.
|
||||
*
|
||||
* MOZILLA CORPORATION DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
|
||||
* INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT
|
||||
* SHALL MOZILLA CORPORATION BE LIABLE FOR ANY SPECIAL, INDIRECT OR
|
||||
* CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
||||
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
||||
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
||||
* OF THIS SOFTWARE.
|
||||
*
|
||||
* Author: Jeff Muizelaar, Mozilla Corp.
|
||||
*/
|
||||
|
||||
//========================================================================
|
||||
//
|
||||
// Modified under the Poppler project - http://poppler.freedesktop.org
|
||||
//
|
||||
// All changes made under the Poppler project to this file are licensed
|
||||
// under GPL version 2 or later
|
||||
//
|
||||
// Copyright (C) 2012 Adrian Johnson <ajohnson@redneon.com>
|
||||
// Copyright (C) 2018 Albert Astals Cid <aacid@kde.org>
|
||||
//
|
||||
// To see a description of the changes please see the Changelog file that
|
||||
// came with your tarball or type make ChangeLog if you are building from git
|
||||
//
|
||||
//========================================================================
|
||||
|
||||
#ifndef CAIRO_RESCALE_BOX_H
|
||||
#define CAIRO_RESCALE_BOX_H
|
||||
|
||||
#include <cairo.h>
|
||||
|
||||
class CairoRescaleBox {
|
||||
public:
|
||||
|
||||
CairoRescaleBox() {};
|
||||
virtual ~CairoRescaleBox() {};
|
||||
|
||||
CairoRescaleBox(const CairoRescaleBox &) = delete;
|
||||
CairoRescaleBox& operator=(const CairoRescaleBox &) = delete;
|
||||
|
||||
virtual bool downScaleImage(unsigned orig_width, unsigned orig_height,
|
||||
signed scaled_width, signed scaled_height,
|
||||
unsigned short int start_column, unsigned short int start_row,
|
||||
unsigned short int width, unsigned short int height,
|
||||
cairo_surface_t *dest_surface);
|
||||
|
||||
virtual void getRow(int row_num, uint32_t *row_data) = 0;
|
||||
|
||||
};
|
||||
|
||||
#endif /* CAIRO_RESCALE_BOX_H */
|
@ -20,30 +20,35 @@ add_custom_target(dist
|
||||
find_package(PkgConfig)
|
||||
|
||||
|
||||
pkg_check_modules(POPPLER REQUIRED poppler>=0.81.0)
|
||||
include_directories(${POPPLER_INCLUDE_DIRS})
|
||||
link_directories(${POPPLER_LIBRARY_DIRS})
|
||||
set(PDF2HTMLEX_LIBS ${PDF2HTMLEX_LIBS} ${POPPLER_LIBRARIES})
|
||||
# SINCE we have a very intimate relationship with a particular version of
|
||||
# poppler... we explicitly describe the poppler include and library
|
||||
# paths.
|
||||
#
|
||||
include_directories(
|
||||
../poppler/build/poppler
|
||||
../poppler/build
|
||||
../poppler/poppler
|
||||
../poppler
|
||||
)
|
||||
#
|
||||
# The following order is critical as the glib functions use functions
|
||||
# located in the main poppler library
|
||||
#
|
||||
set(POPPLER_LIBRARIES ${POPPLER_LIBRARIES}
|
||||
${CMAKE_SOURCE_DIR}/../poppler/build/glib/libpoppler-glib.a
|
||||
${CMAKE_SOURCE_DIR}/../poppler/build/libpoppler.a
|
||||
)
|
||||
|
||||
if(ENABLE_SVG)
|
||||
pkg_check_modules(CAIRO REQUIRED cairo>=1.10.0)
|
||||
message("Trying to locate cairo-svg...")
|
||||
message("-- Trying to locate cairo-svg...")
|
||||
find_path(CAIRO_SVG_INCLUDE_PATH cairo-svg.h PATHS ${CAIRO_INCLUDE_DIRS} NO_DEFAULT_PATH)
|
||||
if(CAIRO_SVG_INCLUDE_PATH)
|
||||
message("-- found cairo-svg...")
|
||||
include_directories(${CAIRO_INCLUDE_DIRS})
|
||||
link_directories(${CAIRO_LIBRARY_DIRS})
|
||||
set(PDF2HTMLEX_LIBS ${PDF2HTMLEX_LIBS} ${CAIRO_LIBRARIES})
|
||||
set(ENABLE_SVG 1)
|
||||
set(CAIROOUTPUTDEV_PATH 3rdparty/poppler/git)
|
||||
include_directories(${CAIROOUTPUTDEV_PATH})
|
||||
set(PDF2HTMLEX_SRC ${PDF2HTMLEX_SRC}
|
||||
${CAIROOUTPUTDEV_PATH}/CairoFontEngine.h
|
||||
${CAIROOUTPUTDEV_PATH}/CairoFontEngine.cc
|
||||
${CAIROOUTPUTDEV_PATH}/CairoRescaleBox.h
|
||||
${CAIROOUTPUTDEV_PATH}/CairoRescaleBox.cc
|
||||
${CAIROOUTPUTDEV_PATH}/CairoOutputDev.h
|
||||
${CAIROOUTPUTDEV_PATH}/CairoOutputDev.cc
|
||||
)
|
||||
else()
|
||||
message(FATAL_ERROR "Error: no SVG support found in Cairo")
|
||||
endif()
|
||||
@ -54,13 +59,44 @@ if(ENABLE_SVG)
|
||||
set(PDF2HTMLEX_LIBS ${PDF2HTMLEX_LIBS} ${FREETYPE_LIBRARIES})
|
||||
endif()
|
||||
|
||||
# fontforge starts using pkg-config 'correctly' since 2.0.0
|
||||
#pkg_check_modules(FONTFORGE REQUIRED libfontforge>=2.0.20170731)
|
||||
pkg_check_modules(FONTFORGE REQUIRED libfontforge>=2.0.0)
|
||||
# SINCE we have a very intimate relationship with a particular version of
|
||||
# fontforge... we explicitly describe the fontforge include and library
|
||||
# paths.
|
||||
#
|
||||
include_directories(
|
||||
../fontforge/fontforge
|
||||
../fontforge
|
||||
../fontforge/build/inc
|
||||
../fontforge/inc
|
||||
)
|
||||
#
|
||||
include_directories(${FONTFORGE_INCLUDE_DIRS})
|
||||
link_directories(${FONTFORGE_LIBRARY_DIRS})
|
||||
set(FONTFORGE_LIBRARIES ${FONTFORGE_LIBRARIES} -lgutils)
|
||||
set(PDF2HTMLEX_LIBS ${PDF2HTMLEX_LIBS} ${FONTFORGE_LIBRARIES})
|
||||
set(FONTFORGE_LIBRARIES ${FONTFORGE_LIBRARIES}
|
||||
${CMAKE_SOURCE_DIR}/../fontforge/fontforge/.libs/libfontforge.a
|
||||
${CMAKE_SOURCE_DIR}/../fontforge/Unicode/.libs/libgunicode.a
|
||||
${CMAKE_SOURCE_DIR}/../fontforge/gutils/.libs/libgutils.a
|
||||
)
|
||||
|
||||
set(PDF2HTMLEX_LIBS ${PDF2HTMLEX_LIBS}
|
||||
${POPPLER_LIBRARIES}
|
||||
${FONTFORGE_LIBRARIES}
|
||||
-lfreetype
|
||||
-lfontconfig
|
||||
-ljpeg
|
||||
-lz
|
||||
-llcms2
|
||||
-lpng
|
||||
-lz
|
||||
-llcms2
|
||||
-pthread
|
||||
-lspiro
|
||||
-luninameslist
|
||||
-lm
|
||||
-lxml2
|
||||
-lglib-2.0
|
||||
-lgio-2.0
|
||||
)
|
||||
|
||||
# debug build flags (overwrite default cmake debug flags)
|
||||
set(CMAKE_C_FLAGS_DEBUG "-ggdb -pg")
|
||||
|
@ -21,18 +21,18 @@
|
||||
#include "ffw.h" // needed for:
|
||||
#include "gfile.h" // FindProgDir
|
||||
#include "fontforge-version-extras.h" // FONTFORGE_GIT_VERSION
|
||||
#include "fontforge-20190801/autowidth.h" // FVRemoveKerns
|
||||
#include "fontforge-20190801/bitmapchar.h" // SFReplaceEncodingBDFProps
|
||||
#include "fontforge-20190801/cvimages.h" // FVImportImages
|
||||
#include "fontforge-20190801/encoding.h" // (helpful as we have a name conflict)
|
||||
#include "fontforge-20190801/fvfonts.h" // SFFindSlot
|
||||
#include "fontforge-20190801/namelist.h" // UniFromName
|
||||
#include "fontforge-20190801/savefont.h" // GenerateScript
|
||||
#include "fontforge-20190801/splineorder2.h" // SFConvertToOrder2
|
||||
#include "fontforge-20190801/splineutil.h" // AltUniFree
|
||||
#include "fontforge-20190801/splineutil2.h" // SplineFontNew
|
||||
#include "fontforge-20190801/start.h" // InitSimpleStuff
|
||||
#include "fontforge-20190801/tottf.h" // SFDefaultOS2Info
|
||||
#include "fontforge/autowidth.h" // FVRemoveKerns
|
||||
#include "fontforge/bitmapchar.h" // SFReplaceEncodingBDFProps
|
||||
#include "fontforge/cvimages.h" // FVImportImages
|
||||
#include "fontforge/encoding.h" // (helpful as we have a name conflict)
|
||||
#include "fontforge/fvfonts.h" // SFFindSlot
|
||||
#include "fontforge/namelist.h" // UniFromName
|
||||
#include "fontforge/savefont.h" // GenerateScript
|
||||
#include "fontforge/splineorder2.h" // SFConvertToOrder2
|
||||
#include "fontforge/splineutil.h" // AltUniFree
|
||||
#include "fontforge/splineutil2.h" // SplineFontNew
|
||||
#include "fontforge/start.h" // InitSimpleStuff
|
||||
#include "fontforge/tottf.h" // SFDefaultOS2Info
|
||||
|
||||
static real EPS=1e-6;
|
||||
|
||||
|
@ -1,26 +0,0 @@
|
||||
# FontForge: the missing headers
|
||||
|
||||
The FontForge header files in this directory are taken from the
|
||||
FontForge-20190801 release.
|
||||
|
||||
They are headers which are not usually installed by the FontForge make
|
||||
system.
|
||||
|
||||
|
||||
## Required headers
|
||||
|
||||
- `autowidth.h` required for FVRemoveKerns
|
||||
- `bitmapchar.h` required for SFReplaceEncodingBDFProps
|
||||
- `cvimages.h` required for FVImportImages
|
||||
- `fvfonts.h` required for SFFindSlot
|
||||
- `namelist.h` required for UniFromName
|
||||
- `savefont.h` required for GenerateScript
|
||||
- `splineorder2.h` required for SFConvertToOrder2
|
||||
- `splineutil.h` required for AltUniFree
|
||||
- `splineutil2.h` required for SplineFontNew
|
||||
- `start.h` required for InitSimpleStuff
|
||||
- `tottf.h` required for SFDefaultOS2Info
|
||||
|
||||
## Helpful headers
|
||||
|
||||
- `encoding.h` conflicts with an existing header in the src/util directory.
|
@ -1,81 +0,0 @@
|
||||
#ifndef FONTFORGE_AUTOWIDTH_H
|
||||
#define FONTFORGE_AUTOWIDTH_H
|
||||
|
||||
#include "baseviews.h"
|
||||
#include "splinefont.h"
|
||||
|
||||
struct charone {
|
||||
real lbearing, rmax;
|
||||
real newl, newr;
|
||||
int baseserif, lefttops, righttops; /* serif zones which affect this character */
|
||||
SplineChar *sc;
|
||||
int base, top; /* bottom of character, number of decimation zones we've got */
|
||||
short *ledge;
|
||||
short *redge;
|
||||
struct charpair *asleft;
|
||||
struct charpair *asright;
|
||||
};
|
||||
|
||||
struct charpair {
|
||||
struct charone *left, *right;
|
||||
struct charpair *nextasleft, *nextasright;
|
||||
int base, top;
|
||||
short *distances;
|
||||
short visual;
|
||||
};
|
||||
|
||||
typedef struct widthinfo {
|
||||
real spacing; /* desired spacing between letters */
|
||||
real decimation;
|
||||
real serifsize;
|
||||
real seriflength;
|
||||
real caph;
|
||||
real descent;
|
||||
real xheight;
|
||||
real n_stem_exterior_width, n_stem_interior_width;
|
||||
real current_I_spacing;
|
||||
int serifs[4][2]; /* Four serif zones: descent, baseline, xheight, cap */
|
||||
int lcnt, rcnt; /* count of left and right chars respectively */
|
||||
int real_lcnt, real_rcnt; /* what the user asked for. We might add I */
|
||||
int tcnt; /* sum of r+l cnt */
|
||||
int pcnt; /* pair count, often r*l cnt */
|
||||
int l_Ipos, r_Ipos;
|
||||
struct charone **left, **right;
|
||||
struct charpair **pairs;
|
||||
int space_guess;
|
||||
int threshold;
|
||||
SplineFont *sf;
|
||||
FontViewBase *fv;
|
||||
int layer;
|
||||
unsigned int done: 1;
|
||||
unsigned int autokern: 1;
|
||||
unsigned int onlynegkerns: 1;
|
||||
struct lookup_subtable *subtable;
|
||||
} WidthInfo;
|
||||
|
||||
#define NOTREACHED -9999.0
|
||||
|
||||
extern struct charone *AW_MakeCharOne(SplineChar *sc);
|
||||
extern void AW_InitCharPairs(WidthInfo *wi);
|
||||
extern void AW_FreeCharList(struct charone **list);
|
||||
extern void AW_FreeCharPairs(struct charpair **list, int cnt);
|
||||
extern void AW_ScriptSerifChecker(WidthInfo *wi);
|
||||
extern int AW_ReadKernPairFile(char *fn,WidthInfo *wi);
|
||||
extern void AW_BuildCharPairs(WidthInfo *wi);
|
||||
extern void AW_AutoKern(WidthInfo *wi);
|
||||
extern void AW_AutoWidth(WidthInfo *wi);
|
||||
extern void AW_FindFontParameters(WidthInfo *wi);
|
||||
extern void AW_KernRemoveBelowThreshold(SplineFont *sf,int threshold);
|
||||
|
||||
extern SplineFont *aw_old_sf;
|
||||
extern int aw_old_spaceguess;
|
||||
|
||||
extern int AutoKernScript(FontViewBase *fv, int spacing, int threshold, struct lookup_subtable *sub, char *kernfile);
|
||||
extern int AutoWidthScript(FontViewBase *fv, int spacing);
|
||||
extern int KernThreshold(SplineFont *sf, int cnt);
|
||||
extern real SFGuessItalicAngle(SplineFont *sf);
|
||||
extern void FVRemoveKerns(FontViewBase *fv);
|
||||
extern void FVRemoveVKerns(FontViewBase *fv);
|
||||
extern void FVVKernFromHKern(FontViewBase *fv);
|
||||
|
||||
#endif /* FONTFORGE_AUTOWIDTH_H */
|
@ -1,24 +0,0 @@
|
||||
#ifndef FONTFORGE_BITMAPCHAR_H
|
||||
#define FONTFORGE_BITMAPCHAR_H
|
||||
|
||||
#include "splinefont.h"
|
||||
#include "uiinterface.h"
|
||||
|
||||
extern BDFChar *BDFMakeChar(BDFFont *bdf, EncMap *map, int enc);
|
||||
extern BDFChar *BDFMakeGID(BDFFont *bdf, int gid);
|
||||
extern BDFProperties *BdfPropsCopy(BDFProperties *props, int cnt);
|
||||
extern const char *BdfPropHasString(BDFFont *font, const char *key, const char *def);
|
||||
extern int BdfPropHasInt(BDFFont *font, const char *key, int def);
|
||||
extern int IsUnsignedBDFKey(const char *key);
|
||||
extern void BCClearAll(BDFChar *bc);
|
||||
extern void BDFDefaultProps(BDFFont *bdf, EncMap *map, int res);
|
||||
extern void Default_Properties(BDFFont *bdf, EncMap *map, char *onlyme);
|
||||
extern void Default_XLFD(BDFFont *bdf, EncMap *map, int res);
|
||||
extern void def_Charset_Enc(EncMap *map, char *reg, char *enc);
|
||||
extern void FF_SetBCInterface(struct bc_interface *bci);
|
||||
extern void SFReplaceEncodingBDFProps(SplineFont *sf, EncMap *map);
|
||||
extern void SFReplaceFontnameBDFProps(SplineFont *sf);
|
||||
extern void XLFD_CreateComponents(BDFFont *font, EncMap *map, int res, struct xlfd_components *components);
|
||||
extern void XLFD_GetComponents(const char *xlfd, struct xlfd_components *components);
|
||||
|
||||
#endif /* FONTFORGE_BITMAPCHAR_H */
|
@ -1,22 +0,0 @@
|
||||
#ifndef FONTFORGE_CVIMAGES_H
|
||||
#define FONTFORGE_CVIMAGES_H
|
||||
|
||||
#include "baseviews.h"
|
||||
#include "gimage.h"
|
||||
#include "sd.h"
|
||||
#include "splinefont.h"
|
||||
|
||||
extern GImage *ImageAlterClut(GImage *image);
|
||||
extern int FVImportImages(FontViewBase *fv, char *path, int format, int toback, int flags);
|
||||
extern int FVImportImageTemplate(FontViewBase *fv, char *path, int format, int toback, int flags);
|
||||
extern void SCAddScaleImage(SplineChar *sc, GImage *image, int doclear, int layer);
|
||||
extern void SCAppendEntityLayers(SplineChar *sc, Entity *ent);
|
||||
extern void SCImportFig(SplineChar *sc, int layer, char *path, int doclear);
|
||||
extern void SCImportGlif(SplineChar *sc, int layer, char *path, char *memory, int memlen, int doclear);
|
||||
extern void SCImportPDFFile(SplineChar *sc, int layer, FILE *pdf, int doclear, int flags);
|
||||
extern void SCImportPlateFile(SplineChar *sc, int layer, FILE *plate, int doclear);
|
||||
extern void SCImportPSFile(SplineChar *sc, int layer, FILE *ps, int doclear, int flags);
|
||||
extern void SCImportSVG(SplineChar *sc, int layer, char *path, char *memory, int memlen, int doclear);
|
||||
extern void SCInsertImage(SplineChar *sc, GImage *image, real scale, real yoff, real xoff, int layer);
|
||||
|
||||
#endif /* FONTFORGE_CVIMAGES_H */
|
@ -1,85 +0,0 @@
|
||||
#ifndef FONTFORGE_ENCODING_H
|
||||
#define FONTFORGE_ENCODING_H
|
||||
|
||||
#include "baseviews.h"
|
||||
#include "splinefont.h"
|
||||
|
||||
struct cidaltuni {
|
||||
struct cidaltuni *next;
|
||||
int uni;
|
||||
int cid;
|
||||
};
|
||||
|
||||
struct cidmap {
|
||||
char *registry, *ordering;
|
||||
int supplement, maxsupple;
|
||||
int cidmax; /* Max cid found in the charset */
|
||||
int namemax; /* Max cid with useful info */
|
||||
uint32 *unicode;
|
||||
char **name;
|
||||
struct cidaltuni *alts;
|
||||
struct cidmap *next;
|
||||
};
|
||||
|
||||
extern struct cidmap *cidmaps;
|
||||
|
||||
extern void DeleteEncoding(Encoding *me);
|
||||
extern void EncodingFree(Encoding *item);
|
||||
extern void RemoveMultiples(Encoding *item);
|
||||
extern char *ParseEncodingFile(char *filename, char *encodingname);
|
||||
extern char *SFEncodingName(SplineFont *sf, EncMap *map);
|
||||
extern const char *FindUnicharName(void);
|
||||
extern EncMap *CompactEncMap(EncMap *map, SplineFont *sf);
|
||||
extern EncMap *EncMapFromEncoding(SplineFont *sf, Encoding *enc);
|
||||
extern Encoding *FindOrMakeEncoding(const char *name);
|
||||
extern Encoding *_FindOrMakeEncoding(const char *name, int make_it);
|
||||
extern int32 EncFromName(const char *name, enum uni_interp interp, Encoding *encname);
|
||||
extern int32 EncFromUni(int32 uni, Encoding *enc);
|
||||
extern int32 UniFromEnc(int enc, Encoding *encname);
|
||||
|
||||
/* The "Encoding" here is a little different from what you normally see*/
|
||||
/* It isn't a mapping from a byte stream to unicode, but from an int */
|
||||
/* to unicode. If we have an 8/16 encoding (EUC or SJIS) then the */
|
||||
/* single byte entries will be numbers less than <256 and the */
|
||||
/* multibyte entries will be numbers >=256. So an encoding might be */
|
||||
/* valid for the domain [0x20..0x7f] [0xa1a1..0xfefe] */
|
||||
/* In other words, we're interested in the ordering displayed in the */
|
||||
/* fontview. Nothing else */
|
||||
/* The max value need not be exact (though it should be at least as big)*/
|
||||
/* if you create a new font with the given encoding, then the font will */
|
||||
/* have max slots in it by default */
|
||||
/* A return value of -1 (from an EncFunc) indicates no mapping */
|
||||
/* AddEncoding returns 1 if the encoding was added, 2 if it replaced */
|
||||
/* an existing encoding, 0 if you attempt to replace a builtin */
|
||||
/* encoding */
|
||||
typedef int (*EncFunc)(int);
|
||||
extern int AddEncoding(char *name, EncFunc enc_to_uni, EncFunc uni_to_enc, int max);
|
||||
|
||||
extern int CID2NameUni(struct cidmap *map, int cid, char *buffer, int len);
|
||||
extern int CID2Uni(struct cidmap *map, int cid);
|
||||
extern int CIDFromName(char *name, SplineFont *cidmaster);
|
||||
extern int CountOfEncoding(Encoding *encoding_name);
|
||||
extern int MaxCID(struct cidmap *map);
|
||||
extern int NameUni2CID(struct cidmap *map, int uni, const char *name);
|
||||
extern int SFFlattenByCMap(SplineFont **sf, char *cmapname);
|
||||
extern int SFForceEncoding(SplineFont *sf, EncMap *old, Encoding *new_enc);
|
||||
extern int SFReencode(SplineFont *sf, const char *encname, int force);
|
||||
extern SplineFont *CIDFlatten(SplineFont *cidmaster, SplineChar **glyphs, int charcnt);
|
||||
extern SplineFont *MakeCIDMaster(SplineFont *sf, EncMap *oldmap, int bycmap, char *cmapfilename, struct cidmap *cidmap);
|
||||
extern struct altuni *CIDSetAltUnis(struct cidmap *map, int cid);
|
||||
extern struct cidmap *FindCidMap(char *registry, char *ordering, int supplement, SplineFont *sf);
|
||||
extern struct cidmap *LoadMapFromFile(char *file, char *registry, char *ordering, int supplement);
|
||||
extern void BDFOrigFixup(BDFFont *bdf, int orig_cnt, SplineFont *sf);
|
||||
extern void CIDMasterAsDes(SplineFont *sf);
|
||||
extern void DumpPfaEditEncodings(void);
|
||||
extern void FVAddEncodingSlot(FontViewBase *fv, int gid);
|
||||
extern void LoadPfaEditEncodings(void);
|
||||
extern void MMMatchGlyphs(MMSet *mm);
|
||||
extern void SFAddEncodingSlot(SplineFont *sf, int gid);
|
||||
extern void SFAddGlyphAndEncode(SplineFont *sf, SplineChar *sc, EncMap *basemap, int baseenc);
|
||||
extern void SFEncodeToMap(SplineFont *sf, struct cidmap *map);
|
||||
extern void SFExpandGlyphCount(SplineFont *sf, int newcnt);
|
||||
extern void SFMatchGlyphs(SplineFont *sf, SplineFont *target, int addempties);
|
||||
extern void SFRemoveGlyph(SplineFont *sf, SplineChar *sc);
|
||||
|
||||
#endif /* FONTFORGE_ENCODING_H */
|
@ -1,34 +0,0 @@
|
||||
#ifndef FONTFORGE_FVFONTS_H
|
||||
#define FONTFORGE_FVFONTS_H
|
||||
|
||||
#include "baseviews.h"
|
||||
#include "splinefont.h"
|
||||
|
||||
extern AnchorClass *MCConvertAnchorClass(struct sfmergecontext *mc, AnchorClass *ac);
|
||||
extern BDFChar *BDFCharCopy(BDFChar *bc);
|
||||
extern int SFCIDFindCID(SplineFont *sf, int unienc, const char *name);
|
||||
extern int SFCIDFindExistingChar(SplineFont *sf, int unienc, const char *name);
|
||||
extern int SFFindExistingSlot(SplineFont *sf, int unienc, const char *name);
|
||||
extern int SFFindGID(SplineFont *sf, int unienc, const char *name);
|
||||
extern int SFFindSlot(SplineFont *sf, EncMap *map, int unienc, const char *name);
|
||||
extern int SFHasChar(SplineFont *sf, int unienc, const char *name);
|
||||
extern int SFHasCID(SplineFont *sf, int cid);
|
||||
extern PST *PSTCopy(PST *base, SplineChar *sc, struct sfmergecontext *mc);
|
||||
extern RefChar *RefCharsCopy(RefChar *ref);
|
||||
extern SplineChar *SFGetChar(SplineFont *sf, int unienc, const char *name);
|
||||
extern SplineChar *SFGetOrMakeCharFromUnicodeBasic(SplineFont *sf, int ch);
|
||||
extern SplineChar *SFHashName(SplineFont *sf, const char *name);
|
||||
extern SplineChar *SplineCharCopy(SplineChar *sc, SplineFont *into, struct sfmergecontext *mc);
|
||||
extern SplineChar *SplineCharInterpolate(SplineChar *base, SplineChar *other, real amount, SplineFont *newfont);
|
||||
extern SplineFont *InterpolateFont(SplineFont *base, SplineFont *other, real amount, Encoding *enc);
|
||||
extern SplineSet *SplineSetsInterpolate(SplineSet *base, SplineSet *other, real amount, SplineChar *sc);
|
||||
extern struct altuni *AltUniCopy(struct altuni *altuni, SplineFont *noconflicts);
|
||||
extern struct lookup_subtable *MCConvertSubtable(struct sfmergecontext *mc, struct lookup_subtable *sub);
|
||||
extern void BitmapsCopy(SplineFont *to, SplineFont *from, int to_index, int from_index);
|
||||
extern void GlyphHashFree(SplineFont *sf);
|
||||
extern void __GlyphHashFree(struct glyphnamehash *hash);
|
||||
extern void MergeFont(FontViewBase *fv, SplineFont *other, int preserveCrossFontKerning);
|
||||
extern void SFFinishMergeContext(struct sfmergecontext *mc);
|
||||
extern void SFHashGlyph(SplineFont *sf, SplineChar *sc);
|
||||
|
||||
#endif /* FONTFORGE_FVFONTS_H */
|
@ -1,20 +0,0 @@
|
||||
#ifndef FONTFORGE_NAMELIST_H
|
||||
#define FONTFORGE_NAMELIST_H
|
||||
|
||||
#include "splinefont.h"
|
||||
|
||||
extern char **AllGlyphNames(int uni, NameList *for_this_font, SplineChar *sc);
|
||||
extern char **AllNamelistNames(void);
|
||||
extern char **SFTemporaryRenameGlyphsToNamelist(SplineFont *sf, NameList *new);
|
||||
extern const char *RenameGlyphToNamelist(char *buffer, SplineChar *sc, NameList *old, NameList *new, char **sofar);
|
||||
extern const char *StdGlyphName(char *buffer, int uni, enum uni_interp interp, NameList *for_this_font);
|
||||
extern const char *StdGlyphNameBoundsCheck(char *buffer, int uni, enum uni_interp interp, NameList *for_this_font);
|
||||
extern int UniFromName(const char *name, enum uni_interp interp, Encoding *encname);
|
||||
extern NameList *DefaultNameListForNewFonts(void);
|
||||
extern NameList *LoadNamelist(char *filename);
|
||||
extern NameList *NameListByName(const char *name);
|
||||
extern void LoadNamelistDir(char *dir);
|
||||
extern void SFRenameGlyphsToNamelist(SplineFont *sf, NameList *new);
|
||||
extern void SFTemporaryRestoreGlyphNames(SplineFont *sf, char **former);
|
||||
|
||||
#endif /* FONTFORGE_NAMELIST_H */
|
@ -1,80 +0,0 @@
|
||||
/* Copyright (C) 2007-2012 by George Williams */
|
||||
/*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions are met:
|
||||
|
||||
* Redistributions of source code must retain the above copyright notice, this
|
||||
* list of conditions and the following disclaimer.
|
||||
|
||||
* Redistributions in binary form must reproduce the above copyright notice,
|
||||
* this list of conditions and the following disclaimer in the documentation
|
||||
* and/or other materials provided with the distribution.
|
||||
|
||||
* The name of the author may not be used to endorse or promote products
|
||||
* derived from this software without specific prior written permission.
|
||||
|
||||
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
|
||||
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
|
||||
* EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
||||
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
|
||||
* OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
||||
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
||||
* OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
||||
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
#ifndef FONTFORGE_SAVEFONT_H
|
||||
#define FONTFORGE_SAVEFONT_H
|
||||
|
||||
#include <fontforge-config.h>
|
||||
|
||||
#include "splinefont.h"
|
||||
|
||||
enum fm_flags { fm_flag_afm = 0x1,
|
||||
fm_flag_pfm = 0x2,
|
||||
fm_flag_shortps = 0x4,
|
||||
fm_flag_nopshints = 0x8,
|
||||
fm_flag_apple = 0x10,
|
||||
fm_flag_pfed_comments = 0x20,
|
||||
fm_flag_pfed_colors = 0x40,
|
||||
fm_flag_opentype = 0x80,
|
||||
fm_flag_glyphmap = 0x100,
|
||||
fm_flag_TeXtable = 0x200,
|
||||
fm_flag_ofm = 0x400,
|
||||
fm_flag_applemode = 0x800,
|
||||
// fm_flag_??? = 0x1000,
|
||||
fm_flag_symbol = 0x2000,
|
||||
fm_flag_dummyDSIG = 0x4000,
|
||||
// fm_flag_??? = 0x8000,
|
||||
fm_flag_tfm = 0x10000,
|
||||
fm_flag_nohintsubs = 0x20000,
|
||||
fm_flag_noflex = 0x40000,
|
||||
fm_flag_nottfhints = 0x80000,
|
||||
fm_flag_restrict256 = 0x100000,
|
||||
fm_flag_round = 0x200000,
|
||||
fm_flag_afmwithmarks = 0x400000,
|
||||
fm_flag_pfed_lookups = 0x800000,
|
||||
fm_flag_pfed_guides = 0x1000000,
|
||||
fm_flag_pfed_layers = 0x2000000,
|
||||
fm_flag_winkern = 0x4000000,
|
||||
fm_flag_nomacnames = 0x8000000,
|
||||
};
|
||||
|
||||
extern const char (*savefont_extensions[]), (*bitmapextensions[]);
|
||||
extern int old_sfnt_flags;
|
||||
|
||||
void PrepareUnlinkRmOvrlp(SplineFont *sf,const char *filename,int layer);
|
||||
void RestoreUnlinkRmOvrlp(SplineFont *sf,const char *filename,int layer);
|
||||
int _DoSave(SplineFont *sf,char *newname,int32 *sizes,int res,
|
||||
EncMap *map, char *subfontdefinition,int layer);
|
||||
int CheckIfTransparent(SplineFont *sf);
|
||||
|
||||
extern int GenerateScript(SplineFont *sf, char *filename, const char *bitmaptype, int fmflags, int res, char *subfontdirectory, struct sflist *sfs, EncMap *map, NameList *rename_to, int layer);
|
||||
|
||||
#ifdef FONTFORGE_CONFIG_WRITE_PFM
|
||||
extern int WritePfmFile(char *filename, SplineFont *sf, EncMap *map, int layer);
|
||||
#endif
|
||||
|
||||
#endif /* FONTFORGE_SAVEFONT_H */
|
@ -1,29 +0,0 @@
|
||||
#ifndef FONTFORGE_SPLINEORDER2_H
|
||||
#define FONTFORGE_SPLINEORDER2_H
|
||||
|
||||
#include "splinefont.h"
|
||||
|
||||
extern SplinePoint *SplineTtfApprox(Spline *ps);
|
||||
extern SplineSet *SplineSetsConvertOrder(SplineSet *ss, int to_order2);
|
||||
extern SplineSet *SplineSetsPSApprox(SplineSet *ss);
|
||||
extern SplineSet *SplineSetsTTFApprox(SplineSet *ss);
|
||||
extern SplineSet *SSPSApprox(SplineSet *ss);
|
||||
extern SplineSet *SSttfApprox(SplineSet *ss);
|
||||
extern Spline *SplineMake2(SplinePoint *from, SplinePoint *to);
|
||||
extern void SCConvertLayerToOrder2(SplineChar *sc, int layer);
|
||||
extern void SCConvertLayerToOrder3(SplineChar *sc, int layer);
|
||||
extern void SCConvertOrder(SplineChar *sc, int to_order2);
|
||||
extern void SCConvertToOrder2(SplineChar *sc);
|
||||
extern void SCConvertToOrder3(SplineChar *sc);
|
||||
extern void SFConvertGridToOrder2(SplineFont *_sf);
|
||||
extern void SFConvertGridToOrder3(SplineFont *_sf);
|
||||
extern void SFConvertLayerToOrder2(SplineFont *_sf, int layer);
|
||||
extern void SFConvertLayerToOrder3(SplineFont *_sf, int layer);
|
||||
extern void SFConvertToOrder2(SplineFont *_sf);
|
||||
extern void SFConvertToOrder3(SplineFont *_sf);
|
||||
extern void SplinePointNextCPChanged2(SplinePoint *sp);
|
||||
extern void SplinePointPrevCPChanged2(SplinePoint *sp);
|
||||
extern void SplineRefigure2(Spline *spline);
|
||||
extern void SplineRefigureFixup(Spline *spline);
|
||||
|
||||
#endif /* FONTFORGE_SPLINEORDER2_H */
|
@ -1,217 +0,0 @@
|
||||
#ifndef FONTFORGE_SPLINEUTIL_H
|
||||
#define FONTFORGE_SPLINEUTIL_H
|
||||
|
||||
#include "glif_name_hash.h"
|
||||
#include "psfont.h"
|
||||
#include "splinefont.h"
|
||||
#include "ttfinstrs.h"
|
||||
#include "views.h"
|
||||
|
||||
extern AnchorClass *SFFindOrAddAnchorClass(SplineFont *sf, char *name, struct lookup_subtable *sub);
|
||||
extern AnchorPoint *AnchorPointsCopy(AnchorPoint *alist);
|
||||
extern AnchorPoint *APAnchorClassMerge(AnchorPoint *anchors, AnchorClass *into, AnchorClass *from);
|
||||
extern bigreal DistanceBetweenPoints(BasePoint *p1, BasePoint *p2);
|
||||
extern bigreal SplineCurvature(Spline *s, bigreal t);
|
||||
extern bigreal SplineMinDistanceToPoint(Spline *s, BasePoint *p);
|
||||
|
||||
extern size_t count_caps(const char * input);
|
||||
extern char *upper_case(const char * input);
|
||||
extern char *same_case(const char * input);
|
||||
extern char *delimit_null(const char * input, char delimiter);
|
||||
|
||||
extern char *strconcat3(const char *str1, const char *str2, const char *str3);
|
||||
extern char **StringExplode(const char *input, char delimiter);
|
||||
extern char *XUIDFromFD(int xuid[20]);
|
||||
extern DeviceTable *DeviceTableCopy(DeviceTable *orig);
|
||||
extern double CheckExtremaForSingleBitErrors(const Spline1D *sp, double t, double othert);
|
||||
extern DStemInfo *DStemInfoCopy(DStemInfo *h);
|
||||
extern EncMap *EncMap1to1(int enccount);
|
||||
extern EncMap *EncMapCopy(EncMap *map);
|
||||
extern EncMap *EncMapNew(int enccount, int backmax, Encoding *enc);
|
||||
|
||||
/* Uses an iterative approximation */
|
||||
extern extended IterateSplineSolve(const Spline1D *sp, extended tmin, extended tmax, extended sought_y);
|
||||
/* Uses an iterative approximation and then tries to fix things up */
|
||||
extern extended IterateSplineSolveFixup(const Spline1D *sp, extended tmin, extended tmax, extended sought_y);
|
||||
|
||||
extern FPST *FPSTCopy(FPST *fpst);
|
||||
extern HintMask *HintMaskFromTransformedRef(RefChar *ref, BasePoint *trans, SplineChar *basesc,HintMask *hm);
|
||||
extern ImageList *ImageListCopy(ImageList *cimg);
|
||||
extern ImageList *ImageListTransform(ImageList *img, real transform[6], int everything);
|
||||
extern int CountKerningClasses(SplineFont *sf);
|
||||
extern int _CubicSolve(const Spline1D *sp, bigreal sought, extended ts[3]);
|
||||
extern int GroupNameType(const char *input);
|
||||
extern int IntersectLines(BasePoint *inter, BasePoint *line1_1, BasePoint *line1_2, BasePoint *line2_1, BasePoint *line2_2);
|
||||
extern int IntersectLinesClip(BasePoint *inter, BasePoint *line1_1, BasePoint *line1_2, BasePoint *line2_1, BasePoint *line2_2);
|
||||
extern int IntersectLinesSlopes(BasePoint *inter, BasePoint *line1, BasePoint *slope1, BasePoint *line2, BasePoint *slope2);
|
||||
extern int LineTangentToSplineThroughPt(Spline *s, BasePoint *pt, extended ts[4], extended tmin, extended tmax);
|
||||
extern int NearSpline(FindSel *fs, Spline *spline);
|
||||
extern int SCRoundToCluster(SplineChar *sc, int layer, int sel, bigreal within, bigreal max);
|
||||
extern int SFKerningGroupExistsSpecific(const struct splinefont *sf, const char *groupname, int isv, int isr);
|
||||
extern int SpExistsInSS(SplinePoint *sp, SplineSet *ss);
|
||||
extern int Spline2DFindExtrema(const Spline *sp, extended extrema[4]);
|
||||
extern int Spline2DFindPointsOfInflection(const Spline *sp, extended poi[2]);
|
||||
extern int SplineAtInflection(Spline1D *sp, bigreal t);
|
||||
extern int SplineAtMinMax(Spline1D *sp, bigreal t);
|
||||
extern int SplineExistsInSS(Spline *s, SplineSet *ss);
|
||||
extern int SplinePointIsACorner(SplinePoint *sp);
|
||||
extern int SplineSetIntersect(SplineSet *spl, Spline **_spline, Spline **_spline2);
|
||||
extern int SplineSetsRemoveAnnoyingExtrema(SplineSet *ss, bigreal err);
|
||||
extern int SplineRemoveWildControlPoints(Spline *s, bigreal distratio);
|
||||
extern int SplineSetsRemoveWildControlPoints(SplineSet *ss, bigreal distratio);
|
||||
|
||||
/* Two lines intersect in at most 1 point */
|
||||
/* Two quadratics intersect in at most 4 points */
|
||||
/* Two cubics intersect in at most 9 points */ /* Plus an extra space for a trailing -1 */
|
||||
extern int SplinesIntersect(const Spline *s1, const Spline *s2, BasePoint pts[9], extended t1s[10], extended t2s[10]);
|
||||
|
||||
extern int SplineT2SpiroIndex(Spline *spline, bigreal t, SplineSet *spl);
|
||||
extern int SSBoundsWithin(SplineSet *ss, bigreal z1, bigreal z2, bigreal *wmin, bigreal *wmax, int major);
|
||||
extern int SSExistsInLayer(SplineSet *ss, SplineSet *lots);
|
||||
extern int SSHasClip(SplineSet *ss);
|
||||
extern int SSHasDrawn(SplineSet *ss);
|
||||
extern int SSPointWithin(SplineSet *spl, BasePoint *pt);
|
||||
extern int StringInStrings(char const* const* space, int length, const char *target);
|
||||
extern KernClass *KernClassCopy(KernClass *kc);
|
||||
extern LinearApprox *SplineApproximate(Spline *spline, real scale);
|
||||
extern MinimumDistance *MinimumDistanceCopy(MinimumDistance *md);
|
||||
extern real SplineNearPoint(Spline *spline, BasePoint *bp, real fudge);
|
||||
extern RefChar *RefCharCreate(void);
|
||||
extern SplineChar *SFSplineCharCreate(SplineFont *sf);
|
||||
extern SplineFont *SplineFontFromPSFont(FontDict *fd);
|
||||
extern SplinePointList *SPLCopyTransformedHintMasks(RefChar *r, SplineChar *basesc, BasePoint *trans,int layer);
|
||||
extern SplinePointList *SPLCopyTranslatedHintMasks(SplinePointList *base, SplineChar *basesc, SplineChar *subsc, BasePoint *trans);
|
||||
extern SplinePointList *SplinePointListCopy1(const SplinePointList *spl);
|
||||
extern SplinePointList *SplinePointListCopySelected(SplinePointList *base);
|
||||
extern SplinePointList *SplinePointListCopySpiroSelected(SplinePointList *base);
|
||||
extern SplinePointList *SplinePointListRemoveSelected(SplineChar *sc, SplinePointList *base);
|
||||
extern SplinePointList *SplinePointListShift(SplinePointList *base, real xoff, enum transformPointType allpoints);
|
||||
extern SplinePointList *SplinePointListSpiroTransform(SplinePointList *base, real transform[6], int allpoints);
|
||||
extern SplinePointList *SplinePointListTransformExtended(SplinePointList *base, real transform[6], enum transformPointType tpt, enum transformPointMask tpmask);
|
||||
|
||||
extern SplinePoint *SplineBisect(Spline *spline, extended t);
|
||||
extern SplinePoint *SplinePointCreate(real x, real y);
|
||||
extern SplineSet *LayerAllSplines(Layer *layer);
|
||||
extern SplineSet *LayerUnAllSplines(Layer *layer);
|
||||
extern Spline *SplineMake3(SplinePoint *from, SplinePoint *to);
|
||||
extern Spline *SplineSplit(Spline *spline, extended ts[3]);
|
||||
extern struct baselangextent *BaseLangCopy(struct baselangextent *extent);
|
||||
extern struct ff_glyphclasses *SFGetGroup(const struct splinefont *sf, int index, const char *name);
|
||||
extern struct glyphvariants *GlyphVariantsCopy(struct glyphvariants *gv);
|
||||
extern struct gradient *GradientCopy(struct gradient *old, real transform[6]);
|
||||
extern struct jstf_lang *JstfLangsCopy(struct jstf_lang *jl);
|
||||
extern struct mathkern *MathKernCopy(struct mathkern *mk);
|
||||
extern struct pattern *PatternCopy(struct pattern *old, real transform[6]);
|
||||
extern ValDevTab *ValDevTabCopy(ValDevTab *orig);
|
||||
extern void AltUniFree(struct altuni *altuni);
|
||||
extern void AnchorClassesFree(AnchorClass *an);
|
||||
extern void AnchorPointsFree(AnchorPoint *ap);
|
||||
extern void ApTransform(AnchorPoint *ap, real transform[6]);
|
||||
extern void ASMFree(ASM *sm);
|
||||
extern void BaseFree(struct Base *base);
|
||||
extern void BaseLangFree(struct baselangextent *extent);
|
||||
extern void BaseScriptFree(struct basescript *bs);
|
||||
extern void BpTransform(BasePoint *to, BasePoint *from, real transform[6]);
|
||||
extern void BrushCopy(struct brush *into, struct brush *from, real transform[6]);
|
||||
extern void CIDLayerFindBounds(SplineFont *cidmaster, int layer, DBounds *bounds);
|
||||
extern void DeviceTableFree(DeviceTable *dt);
|
||||
extern void DeviceTableSet(DeviceTable *adjust, int size, int correction);
|
||||
extern void DStemInfoFree(DStemInfo *h);
|
||||
extern void DStemInfosFree(DStemInfo *h);
|
||||
extern void EncMapFree(EncMap *map);
|
||||
extern void ExplodedStringFree(char **input);
|
||||
extern void FeatureScriptLangListFree(FeatureScriptLangList *fl);
|
||||
extern void FPSTClassesFree(FPST *fpst);
|
||||
extern void FPSTFree(FPST *fpst);
|
||||
extern void FPSTRuleContentsFree(struct fpst_rule *r, enum fpossub_format format);
|
||||
extern void FPSTRulesFree(struct fpst_rule *r, enum fpossub_format format, int rcnt);
|
||||
extern void GlyphGroupFree(struct ff_glyphclasses* group);
|
||||
extern void GlyphGroupKernFree(struct ff_rawoffsets* groupkern);
|
||||
extern void GlyphGroupKernsFree(struct ff_rawoffsets* root);
|
||||
extern void GlyphGroupsFree(struct ff_glyphclasses* root);
|
||||
extern void GlyphVariantsFree(struct glyphvariants *gv);
|
||||
extern void GradientFree(struct gradient *grad);
|
||||
extern void GrowBufferAdd(GrowBuf *gb, int ch);
|
||||
extern void GrowBufferAddStr(GrowBuf *gb, char *str);
|
||||
extern void GuidelineSetFree(GuidelineSet *gl);
|
||||
extern void ImageListsFree(ImageList *imgs);
|
||||
extern void JstfLangFree(struct jstf_lang *jl);
|
||||
extern void JustifyFree(Justify *just);
|
||||
extern void KernClassClearSpecialContents(KernClass *kc);
|
||||
extern void KernClassFreeContents(KernClass *kc);
|
||||
extern void KernClassListClearSpecialContents(KernClass *kc);
|
||||
extern void KernClassListFree(KernClass *kc);
|
||||
extern void KernPairsFree(KernPair *kp);
|
||||
extern void LayerDefault(Layer *layer);
|
||||
extern void LayerFreeContents(SplineChar *sc, int layer);
|
||||
extern void LinearApproxFree(LinearApprox *la);
|
||||
extern void LineListFree(LineList *ll);
|
||||
extern void MacFeatListFree(MacFeat *mf);
|
||||
extern void MacNameListFree(struct macname *mn);
|
||||
extern void MacSettingListFree(struct macsetting *ms);
|
||||
extern void MarkClassFree(int cnt, char **classes, char **names);
|
||||
extern void MarkSetFree(int cnt, char **classes, char **names);
|
||||
extern void MathKernFree(struct mathkern *mk);
|
||||
extern void MathKernVContentsFree(struct mathkernvertex *mk);
|
||||
extern void MinimumDistancesFree(MinimumDistance *md);
|
||||
extern void MMSetClearSpecial(MMSet *mm);
|
||||
extern void MMSetFreeContents(MMSet *mm);
|
||||
extern void OtfFeatNameListFree(struct otffeatname *fn);
|
||||
extern void OtfNameListFree(struct otfname *on);
|
||||
extern void OTLookupFree(OTLookup *lookup);
|
||||
extern void OTLookupListFree(OTLookup *lookup);
|
||||
extern void PatternFree(struct pattern *pat);
|
||||
extern void PenCopy(struct pen *into, struct pen *from, real transform[6]);
|
||||
extern void RefCharFindBounds(RefChar *rf);
|
||||
extern void RefCharFree(RefChar *ref);
|
||||
extern void RefCharsFree(RefChar *ref);
|
||||
extern void SCCategorizePoints(SplineChar *sc);
|
||||
extern void SCMakeDependent(SplineChar *dependent, SplineChar *base);
|
||||
extern void SCRefToSplines(SplineChar *sc, RefChar *rf, int layer);
|
||||
extern void SCReinstanciateRefChar(SplineChar *sc, RefChar *rf, int layer);
|
||||
extern void SCRemoveDependent(SplineChar *dependent, RefChar *rf, int layer);
|
||||
extern void SCRemoveDependents(SplineChar *dependent);
|
||||
extern void SCRemoveLayerDependents(SplineChar *dependent, int layer);
|
||||
extern void SFInstanciateRefs(SplineFont *sf);
|
||||
extern void SFReinstanciateRefs(SplineFont *sf);
|
||||
extern void SFRemoveAnchorClass(SplineFont *sf, AnchorClass *an);
|
||||
extern void SFRemoveSavedTable(SplineFont *sf, uint32 tag);
|
||||
extern void SplineCharFindBounds(SplineChar *sc, DBounds *bounds);
|
||||
extern void SplineCharFreeContents(SplineChar *sc);
|
||||
extern void SplineCharLayerFindBounds(SplineChar *sc, int layer, DBounds *bounds);
|
||||
extern void SplineCharLayerQuickBounds(SplineChar *sc, int layer, DBounds *bounds);
|
||||
extern void SplineCharListsFree(struct splinecharlist *dlist);
|
||||
extern void SplineCharQuickBounds(SplineChar *sc, DBounds *b);
|
||||
extern void SplineCharQuickConservativeBounds(SplineChar *sc, DBounds *b);
|
||||
extern void SplineFindExtrema(const Spline1D *sp, extended *_t1, extended *_t2);
|
||||
extern void SplineFontClearSpecial(SplineFont *sf);
|
||||
extern void SplineFontFindBounds(SplineFont *sf, DBounds *bounds);
|
||||
extern void SplineFontFree(SplineFont *sf);
|
||||
extern void SplineFontLayerFindBounds(SplineFont *sf, int layer, DBounds *bounds);
|
||||
extern void SplineFontQuickConservativeBounds(SplineFont *sf, DBounds *b);
|
||||
extern void SplineFree(Spline *spline);
|
||||
extern void SplinePointCategorize(SplinePoint *sp);
|
||||
extern void SplinePointFree(SplinePoint *sp);
|
||||
extern void SplinePointListFree(SplinePointList *spl);
|
||||
extern void SplinePointListMDFree(SplineChar *sc, SplinePointList *spl);
|
||||
extern void SplinePointListSelect(SplinePointList *spl, int sel);
|
||||
extern void SplinePointListsFree(SplinePointList *spl);
|
||||
extern void SplinePointListsMDFree(SplineChar *sc, SplinePointList *spl);
|
||||
extern void SplinePointMDFree(SplineChar *sc, SplinePoint *sp);
|
||||
extern void SplinePointsFree(SplinePointList *spl);
|
||||
extern void SplineRemoveExtremaTooClose(Spline1D *sp, extended *_t1, extended *_t2);
|
||||
extern void SplineSetBeziersClear(SplinePointList *spl);
|
||||
extern void SplineSetFindBounds(const SplinePointList *spl, DBounds *bounds);
|
||||
extern void SplineSetQuickBounds(SplineSet *ss, DBounds *b);
|
||||
extern void SplineSetQuickConservativeBounds(SplineSet *ss, DBounds *b);
|
||||
extern void SplineSetSpirosClear(SplineSet *spl);
|
||||
extern void TTFLangNamesFree(struct ttflangname *l);
|
||||
extern void TtfTablesFree(struct ttf_table *tab);
|
||||
extern void ValDevFree(ValDevTab *adjust);
|
||||
|
||||
extern int KerningClassSeekByAbsoluteIndex(const struct splinefont *sf, int seek_index, struct kernclass **okc, int *oisv, int *oisr, int *ooffset);
|
||||
extern int HashKerningClassNames(SplineFont *sf, struct glif_name_index * class_name_hash);
|
||||
extern int HashKerningClassNamesCaps(SplineFont *sf, struct glif_name_index * class_name_hash);
|
||||
extern int HashKerningClassNamesFlex(SplineFont *sf, struct glif_name_index * class_name_hash, int capitalize);
|
||||
|
||||
#endif /* FONTFORGE_SPLINEUTIL_H */
|
@ -1,85 +0,0 @@
|
||||
#ifndef FONTFORGE_SPLINEUTIL2_H
|
||||
#define FONTFORGE_SPLINEUTIL2_H
|
||||
|
||||
#include "splinefont.h"
|
||||
|
||||
enum ae_type { ae_all, ae_between_selected, ae_only_good, ae_only_good_rm_later };
|
||||
|
||||
extern bigreal PathLength(SplineSet *ss);
|
||||
extern bigreal SplineLengthRange(Spline *spline, real from_t, real to_t);
|
||||
extern char *GetNextUntitledName(void);
|
||||
extern int PointListIsSelected(SplinePointList *spl);
|
||||
extern int PointsDiagonalable(SplineFont *sf, BasePoint **bp, BasePoint *unit);
|
||||
extern int RealApprox(real a, real b);
|
||||
extern int RealNearish(real a, real b);
|
||||
extern int RealRatio(real a, real b, real fudge);
|
||||
extern int RealWithin(real a, real b, real fudge);
|
||||
extern int SPInterpolate(const SplinePoint *sp);
|
||||
extern int SpIsExtremum(SplinePoint *sp);
|
||||
extern int Spline1DCantExtremeX(const Spline *s);
|
||||
extern int Spline1DCantExtremeY(const Spline *s);
|
||||
extern int SplineInSplineSet(Spline *spline, SplineSet *spl);
|
||||
extern int SplineIsLinearMake(Spline *spline);
|
||||
extern int SplinePointListIsClockwise(const SplineSet *spl);
|
||||
extern int SPLNearlyLines(SplineChar *sc, SplineSet *ss, bigreal err);
|
||||
extern int Within16RoundingErrors(bigreal v1, bigreal v2);
|
||||
extern int Within4RoundingErrors(bigreal v1, bigreal v2);
|
||||
extern int Within64RoundingErrors(bigreal v1, bigreal v2);
|
||||
extern Spline *ApproximateSplineFromPointsSlopes(SplinePoint *from, SplinePoint *to, TPoint *mid, int cnt, int order2);
|
||||
extern SplineFont *SplineFontBlank(int charcnt);
|
||||
extern SplineFont *SplineFontEmpty(void);
|
||||
extern SplineFont *SplineFontNew(void);
|
||||
extern Spline *PathFindDistance(SplineSet *path, bigreal d, bigreal *_t);
|
||||
extern SplineSet *SplineCharRemoveTiny(SplineChar *sc, SplineSet *head);
|
||||
extern SplineSet *SplineCharSimplify(SplineChar *sc, SplineSet *head, struct simplifyinfo *smpl);
|
||||
extern SplineSet *SplineSetBindToPath(SplineSet *ss, int doscale, int glyph_as_unit, int align, real offset, SplineSet *path);
|
||||
extern SplineSet *SplineSetJoin(SplineSet *start, int doall, real fudge, int *changed);
|
||||
extern SplineSet *SplineSetReverse(SplineSet *spl);
|
||||
extern SplineSet *SplineSetsAntiCorrect(SplineSet *base);
|
||||
extern SplineSet *SplineSetsCorrect(SplineSet *base, int *changed);
|
||||
extern SplineSet *SplineSetsDetectDir(SplineSet **_base, int *_lastscan);
|
||||
extern SplineSet *SplineSetsExtractOpen(SplineSet **tbase);
|
||||
extern SplineSet *SSRemoveZeroLengthSplines(SplineSet *base);
|
||||
extern Spline *SplineAddExtrema(Spline *s, int always, real lenbound, real offsetbound, DBounds *b);
|
||||
extern void BP_HVForce(BasePoint *vector);
|
||||
extern void CanonicalContours(SplineChar *sc, int layer);
|
||||
extern void SFIncrementXUID(SplineFont *sf);
|
||||
extern void SFRandomChangeXUID(SplineFont *sf);
|
||||
extern void SPAdjustControl(SplinePoint *sp, BasePoint *cp, BasePoint *to, int order2);
|
||||
extern void SPAverageCps(SplinePoint *sp);
|
||||
extern void SPHVCurveForce(SplinePoint *sp);
|
||||
extern void SPLAverageCps(SplinePointList *spl);
|
||||
extern void SplineCharAddExtrema(SplineChar *sc, SplineSet *head, enum ae_type between_selected, int emsize);
|
||||
extern void SplineCharDefaultNextCP(SplinePoint *base);
|
||||
extern void SplineCharDefaultPrevCP(SplinePoint *base);
|
||||
extern void SplineCharMerge(SplineChar *sc, SplineSet **head, int type);
|
||||
extern void SplineCharTangentNextCP(SplinePoint *sp);
|
||||
extern void SplineCharTangentPrevCP(SplinePoint *sp);
|
||||
extern void SplinePointListSet(SplinePointList *tobase, SplinePointList *frombase);
|
||||
extern void SplinePointListSimplify(SplineChar *sc, SplinePointList *spl, struct simplifyinfo *smpl);
|
||||
extern void SplineSetAddExtrema(SplineChar *sc, SplineSet *ss, enum ae_type between_selected, int emsize);
|
||||
extern void SplineSetJoinCpFixup(SplinePoint *sp);
|
||||
extern void SplineSetsInsertOpen(SplineSet **tbase, SplineSet *open);
|
||||
extern void SplineSetsUntick(SplineSet *spl);
|
||||
extern void SplinesRemoveBetween(SplineChar *sc, SplinePoint *from, SplinePoint *to, int type);
|
||||
extern void SPLNearlyHvCps(SplineChar *sc, SplineSet *ss, bigreal err);
|
||||
extern void SPLNearlyHvLines(SplineChar *sc, SplineSet *ss, bigreal err);
|
||||
extern void SPLsStartToLeftmost(SplineChar *sc, int layer);
|
||||
extern void SPLStartToLeftmost(SplineChar *sc, SplinePointList *spl, int *changed);
|
||||
extern void SPSmoothJoint(SplinePoint *sp);
|
||||
|
||||
/**
|
||||
* This is like SPAdjustControl but you have not wanting to move the
|
||||
* BCP at all, but you would like the current location of the passed
|
||||
* BCP to reshape the spline through the splinepoint. For example, if
|
||||
* you drag the spline between two points then you might like to touch
|
||||
* the inside BCP between the two splinepoints to reshape the whole
|
||||
* curve through a curve point.
|
||||
*/
|
||||
extern void SPTouchControl(SplinePoint *sp, BasePoint *which, int order2);
|
||||
|
||||
extern void SPWeightedAverageCps(SplinePoint *sp);
|
||||
extern void SSOverlapClusterCpAngles(SplineSet *base, bigreal within);
|
||||
extern void SSRemoveStupidControlPoints(SplineSet *base);
|
||||
|
||||
#endif /* FONTFORGE_SPLINEUTIL2_H */
|
@ -1,8 +0,0 @@
|
||||
#ifndef FONTFORGE_START_H
|
||||
#define FONTFORGE_START_H
|
||||
|
||||
extern void doinitFontForgeMain(void);
|
||||
extern void doversion(const char *source_version_str);
|
||||
extern void InitSimpleStuff(void);
|
||||
|
||||
#endif /* FONTFORGE_START_H */
|
@ -1,33 +0,0 @@
|
||||
#ifndef FONTFORGE_TOTTF_H
|
||||
#define FONTFORGE_TOTTF_H
|
||||
|
||||
#include "splinefont.h"
|
||||
#include "ttf.h"
|
||||
|
||||
extern char *utf8_verify_copy(const char *str);
|
||||
extern int32 filechecksum(FILE *file);
|
||||
|
||||
extern int AlreadyMSSymbolArea(SplineFont *sf, EncMap *map);
|
||||
extern int RefDepth(RefChar *ref, int layer);
|
||||
extern int SFFigureDefWidth(SplineFont *sf, int *_nomwid);
|
||||
extern int SFHasInstructions(SplineFont *sf);
|
||||
extern int SSAddPoints(SplineSet *ss, int ptcnt, BasePoint *bp, char *flags);
|
||||
extern int ttfcopyfile(FILE *ttf, FILE *other, int pos, const char *tab_name);
|
||||
extern int WriteTTC(const char *filename, struct sflist *sfs, enum fontformat format, enum bitmapformat bf, int flags, int layer, enum ttc_flags ttcflags);
|
||||
extern int WriteTTFFont(char *fontname, SplineFont *sf, enum fontformat format, int32 *bsizes, enum bitmapformat bf, int flags, EncMap *enc, int layer);
|
||||
extern int _WriteTTFFont(FILE *ttf, SplineFont *sf, enum fontformat format, int32 *bsizes, enum bitmapformat bf, int flags, EncMap *enc, int layer);
|
||||
extern int _WriteType42SFNTS(FILE *type42, SplineFont *sf, enum fontformat format, int flags, EncMap *enc, int layer);
|
||||
extern void cvt_unix_to_1904(long long time, int32 result[2]);
|
||||
extern void DefaultTTFEnglishNames(struct ttflangname *dummy, SplineFont *sf);
|
||||
extern void OS2FigureCodePages(SplineFont *sf, uint32 CodePage[2]);
|
||||
extern void OS2FigureUnicodeRanges(SplineFont *sf, uint32 Ranges[4]);
|
||||
extern void SFDefaultOS2Info(struct pfminfo *pfminfo, SplineFont *sf, char *fontname);
|
||||
extern void SFDefaultOS2Simple(struct pfminfo *pfminfo, SplineFont *sf);
|
||||
extern void SFDefaultOS2SubSuper(struct pfminfo *pfminfo, int emsize, double italic_angle);
|
||||
extern void SFDummyUpCIDs(struct glyphinfo *gi, SplineFont *sf);
|
||||
|
||||
extern void putfixed(FILE *file, real dval);
|
||||
extern void putlong(FILE *file, int val);
|
||||
extern void putshort(FILE *file, int sval);
|
||||
|
||||
#endif /* FONTFORGE_TOTTF_H */
|
Loading…
Reference in New Issue
Block a user