initial commit

This commit is contained in:
2024-01-30 00:24:37 +01:00
commit 7c12323acc
94 changed files with 17952 additions and 0 deletions

51
scannerExtract/CHANGELOG Normal file
View File

@ -0,0 +1,51 @@
################################################################################
2015-09-26; by Dominik Rue<75>
- removed a bug which prevented saving on clicking on the save button
- disabled disabling of saving button (user can choose to overwrite)
################################################################################
2015-09-25; by Dominik Rue<75>
- removed a bug which caused an application crash on loading images
- added successful saving information text on status bar
- removed a bug which caused backslashes in filepath to not save files
- removed a bug which caused an exception on exiting the program
- removed a bug which prevented saving when non existing directory was specified
- added "uninstall before install" which tries to uninstall old versions
- removed some fixed paths and settings for cmake
- added bit information (i.e. 32/64) to about dialog
################################################################################
2015-08; by Dominik Rue<75>
- added mutex to decrease maximum memory consumption
(useful for the 32bit vresions)
- added online documentation to docs folder
- A new selection can now also be created by clicking twice
(used to be only by dragging)
- faster extraction of preview in previously bloccking situations
- made some changes to the online documentation, i.e. howto install
- added the online documentation to the source package
- fixed a bug which would not reload already seen 16bit images
- fixed a bug which caused the application to crash on closing it
################################################################################
2015-08; by Dominik Rue<75>
First release

View File

@ -0,0 +1,243 @@
#######################################################################
# This file is part of Scanned Image Extract.
#
# Scanned Image Extract 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.
#
# Scanned Image Extract 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 Scanned Image Extract. If not, see <http://www.gnu.org/licenses/>
#
#
# Copyright (C) 2015, Dominik Rueß; info@dominik-ruess.de
######################################################################/
cmake_minimum_required (VERSION 2.8)
set (PROJECTNAME "scannedImageExtractor")
project (${PROJECTNAME} CXX)
include ( ${CMAKE_CURRENT_LIST_DIR}/../CMakeModules/settings.cmake )
find_package (versioning REQUIRED)
find_package (misc REQUIRED)
find_package (liblbfgs REQUIRED)
set (QT_USE_QTMAIN TRUE)
set (QT_USE_SVG TRUE)
set (QT_USE_NETWORK TRUE)
set (QT_MORE_COMPONENTS QtSvg QtNetwork)
include ( ${CMAKE_CURRENT_LIST_DIR}/../CMakeModules/qt5.cmake )
find_package (Qt5Network REQUIRED)
find_package (Qt5Svg REQUIRED)
if (OPENCV2)
find_package (OpenCV REQUIRED core imgproc highgui)
set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -DOPENCV2")
else()
find_package (OpenCV REQUIRED core imgproc imgcodecs)
endif()
INCLUDE_DIRECTORIES(${CMAKE_CURRENT_BINARY_DIR})
include_directories( ${OpenCV_INCLUDE_DIRS} )
find_package(OpenMP)
if (OPENMP_FOUND)
set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${OpenMP_C_FLAGS}")
set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${OpenMP_CXX_FLAGS}")
endif()
set(CMAKE_AUTOMOC ON)
include_directories (
.
${CMAKE_CURRENT_BINARY_DIR}
)
set ( ${PROJECTNAME}_SOURCES
mainwindow.cpp
imageboundary.cpp
main.cpp
imagescene.cpp
preloadsource.cpp
copytargets.cpp
about.cpp
version_scannerExtract.cpp
settingsdialog.cpp
extracttargets.cpp
TargetImage.cpp
sourcefile.cpp
helpdialog.cpp
)
set ( ${PROJECTNAME}_HEADERS
mainwindow.h
extracttargets.h
imageboundary.h
imagescene.h
settings.h
sourcefile.h
TargetImage.h
preloadsource.h
copytargets.h
about.h
version_scannerExtract.h
settingsdialog.h
helpdialog.h
)
set (${PROJECTNAME}_RESSOURCES
scannerIcons.qrc
)
set (${PROJECTNAME}_FORMS
mainwindow.ui
about.ui
settingsdialog.ui
helpdialog.ui
)
include ( ${CMAKE_CURRENT_LIST_DIR}/../CMakeModules/addtranslation.cmake )
# for this application, actually build the ressource file and include it
set(RESOURCE_NAME "translations")
set(MAPPED_DIR ${CMAKE_CURRENT_BINARY_DIR})
include ( ${CMAKE_CURRENT_LIST_DIR}/../CMakeModules/onTheFlyResourceFile.cmake )
QT5_WRAP_UI (${PROJECTNAME}_FORMS_HEADERS ${${PROJECTNAME}_FORMS})
QT5_ADD_RESOURCES (${PROJECTNAME}_RESOURCES_RCC ${${PROJECTNAME}_RESSOURCES})
# set exe icon
IF(WIN32)
IF( MINGW )
# resource compilation for MinGW
ADD_CUSTOM_COMMAND( OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/scannerImageExtractor_ico.o
COMMAND windres.exe -I${CMAKE_CURRENT_SOURCE_DIR} -i${CMAKE_CURRENT_SOURCE_DIR}/scannerImageExtractor_ico.rc
-o ${CMAKE_CURRENT_BINARY_DIR}/scannerImageExtractor_ico.o )
SET(${PROJECTNAME}_SOURCES ${${PROJECTNAME}_SOURCES} ${CMAKE_CURRENT_BINARY_DIR}/scannerImageExtractor_ico.o)
ELSE( MINGW )
SET(${PROJECTNAME}_SOURCES ${${PROJECTNAME}_SOURCES} scannerImageExtractor_ico.rc)
ENDIF( MINGW )
ENDIF(WIN32)
add_executable (${PROJECTNAME} WIN32
${${PROJECTNAME}_HEADERS}
${${PROJECTNAME}_SOURCES}
${${PROJECTNAME}_HEADERS_MOC}
${${PROJECTNAME}_FORMS_HEADERS}
${${PROJECTNAME}_RESOURCES_RCC}
${${PROJECTNAME}_TRANSLATION_FILES}
)
qt5_use_modules (${PROJECTNAME} Network Widgets Svg)
TARGET_LINK_LIBRARIES (${PROJECTNAME}
${MY_LIBS}
${QT_LIBRARIES}
${OpenCV_LIBS}
${LIBLBFGS_LIBRARY}
)
if(WIN32 OR MINGW)
TARGET_LINK_LIBRARIES (${PROJECTNAME}
Qt5::WinMain
)
endif()
install(TARGETS ${PROJECTNAME}
RUNTIME DESTINATION bin COMPONENT main
)
if (WIN32)
INSTALL(FILES
${LIBLBFGS_LIBRARY_DLL}
${OpenCV_DIR}/bin/libopencv_core300.dll
${OpenCV_DIR}/bin/libopencv_imgproc300.dll
${OpenCV_DIR}/bin/libopencv_imgcodecs300.dll
DESTINATION bin
COMPONENT main
)
endif(WIN32)
# add nice icon for Gnome and KDE and add to default programs for cameras
include ( ${CMAKE_CURRENT_LIST_DIR}/../CMakeModules/installDesktop.cmake )
#set(sizes "16x16" "22x22" "24x24" "36x36" "42x42" "72x72" "96x96" "32x32" "48x48" "64x64" "128x128" "80x80")
set(sizes "128x128" "256x256")
INSTALL_DESKTOP_LOCAL(" %f"
"Scanned Image Extractor"
""
"ico"
"${sizes}"
"Terminal=false
Type=Application
MimeType=x-content/image-dcf;
Categories=Graphics\;Photography\;GNOME\;KDE\;
X-GNOME-FullName=Scanned Image Extractor\n")
include ( ${CMAKE_CURRENT_LIST_DIR}/../CMakeModules/installQt5.cmake )
set ( PACKAGE_NAME ${PROJECTNAME} )
set ( MAIN_DISPLAY_NAME "Scanned Image Extractor")
set ( USE_COMPONENTS main )
SET ( VERSION_MAJOR 0 )
SET ( VERSION_MINOR 2 )
set ( VERSION_PATCH ${CURRENT_PATCH_NUMBER})
IF(WIN32)
# There is a bug in NSI that does not handle full unix paths properly. Make
# sure there is at least one set of four (4) backlasshes.
set(CPACK_NSIS_MUI_ICON "${CMAKE_CURRENT_SOURCE_DIR}/images\\\\logo.ico")
SET(CPACK_PACKAGE_ICON "${CMAKE_CURRENT_SOURCE_DIR}/images\\\\logo.png")
SET(CPACK_NSIS_INSTALLED_ICON_NAME "bin\\\\scannedImageExtractor.exe")
SET(CPACK_NSIS_DISPLAY_NAME "${CPACK_PACKAGE_INSTALL_DIRECTORY}Scanned Image Extractor")
Endif(WIN32)
IF(UNIX)
message("using ${CMAKE_SYSTEM_PROCESSOR}")
# http://www.cmake.org/Wiki/CMake:CPackPackageGenerators#DEB_.28UNIX_only.29
SET(CPACK_SET_DESTDIR "on")
SET(CPACK_DEBIAN_PACKAGE_NAME "scannedImageExtractor")
SET(CPACK_PACKAGING_INSTALL_PREFIX "/tmp")
if(MAKE_RPM)
set(CPACK_RPM_EXCLUDE_FROM_AUTO_FILELIST ${CPACK_RPM_EXCLUDE_FROM_AUTO_FILELIST}
/usr/local
/usr/local/bin
/usr
/usr/share
/usr/share/applications
/usr/share/icons
/usr/share/icons/hicolor
/usr/share/icons/hicolor/256x256/apps
/usr/share/icons/hicolor/256x256
/usr/share/icons/hicolor
/usr/share/icons/hicolor/128x128
/usr/share/icons/hicolor/128x128/apps
/usr/share/icons/hicolor/256x256/apps
/usr/share/icons/hicolor/256x256)
SET(CPACK_GENERATOR "RPM")
SET(CPACK_RPM_PACKAGE_LICENSE "GPL v3")
SET(CPACK_RPM_PACKAGE_VENDOR "Dominik Rueß <scannerExtract@dominik-ruess.de>")
SET(CPACK_RPM_PACKAGE_REQUIRES "opencv-core >= 2.4, qt5-qtsvg >= 5.0, qt5-qtbase >= 5.0, liblbfgs >= 1.0")
SET(CPACK_RPM_PACKAGE_ARCHITECTURE ${CMAKE_SYSTEM_PROCESSOR})
else()
SET(CPACK_GENERATOR "DEB")
SET(CPACK_DEBIAN_PACKAGE_DEPENDS "libqt5core5a, libqt5network5, libqt5gui5, libqt5svg5, libqt5widgets5, liblbfgs0, libopencv-core2.4, libopencv-highgui2.4, libopencv-imgproc2.4")
SET(CPACK_DEBIAN_PACKAGE_PRIORITY "optional")
SET(CPACK_DEBIAN_PACKAGE_SECTION "kde")
SET(CPACK_DEBIAN_ARCHITECTURE ${CMAKE_SYSTEM_PROCESSOR})
SET(CPACK_PACKAGE_CONTACT "scannerExtract@dominik-ruess.de")
SET(CPACK_DEBIAN_PACKAGE_MAINTAINER "Dominik Rueß <scannerExtract@dominik-ruess.de>")
endif()
ENDIF()
include ( ${CMAKE_CURRENT_LIST_DIR}/../CMakeModules/buildPackage.cmake )

674
scannerExtract/LICENSE Normal file
View File

@ -0,0 +1,674 @@
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>.

81
scannerExtract/README Normal file
View File

@ -0,0 +1,81 @@
/***********************************************************************
* This file is part of Scanned Image Extractor.
*
* Scanned Image Extractor 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.
*
* Scanned Image Extractor 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 Scanned Image Extractor. If not, see <http://www.gnu.org/licenses/>
*
*
* Copyright (C) 2015, Dominik Rueß; info@dominik-ruess.de
**********************************************************************/
Homepage of Scanned Image Extractor:
http://dominik-ruess.de/scannerExtract/
#######################################################################
# Content: #
#######################################################################
1. How to install binaries on different systems
2. How to compile on unix systems
#######################################################################
# Installing Binaries: #
#######################################################################
WINDOWS: download the binaries and install.
There are no dependencies for the installation binary
tested with Windows 7
Linux-DEB:
tested Ubuntu 15.04 with and Ubuntu 14.04 LTS
1. Pre-requisites:
sudo apt-get install libqt5core5a libqt5network5 \
libqt5gui5 libqt5svg5 libqt5widgets5 liblbfgs0 \
libopencv-core2.4 libopencv-highgui2.4 \
libopencv-imgproc2.4
2. install debian package:
sudo dpkg -i scannerExtract-x.y.z.deb
Linux-RPM:
tested with Fedora 22
1. Pre-requisites, adapt to your architecture here:
sudo dnf install opencv-core.x86_64 qt5-qtsvg.x86_64 \
qt5-qtbase.x86_64 liblbfgs-devel.x86_64 \
opencv.x86_64
2. install RPM package:
rpm --install -p scannerExtract-x.y.z.rpm
#######################################################################
# Compile on unix systems: #
#######################################################################
Tested with Ubuntu 15.04
1. pre-requisites
sudo apt-get install liblbfgs-dev libopencv-dev libqt5svg5-dev \
qttools5-dev-tools qttools5-dev qtbase5-dev cmake
2. build (tested on Ubuntu 15.04)
- commands:
mkdir build
cd build
cmake path/to/scannerExtract-X.Y.Z/scannerExtract/ \
-DCMAKE_BUILD_TYPE=release -DOPENCV2=1
make
(make install)
- note: if you use OpenCV2 (e.g. Ubuntu 15.04) then add
-DOPENCV2=1 to your cmake call
3. run
"./scannedImageExtractor" or if installed "scannedImageExtractor"

View File

@ -0,0 +1,23 @@
/***********************************************************************
* This file is part of Scanned Image Extract.
*
* Scanned Image Extract 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.
*
* Scanned Image Extract 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 Scanned Image Extract. If not, see <http://www.gnu.org/licenses/>
*
*
* Copyright (C) 2015, Dominik Rueß; info@dominik-ruess.de
**********************************************************************/
#include "TargetImage.h"
int TargetImage::nextId = 0;
int TargetImage::nextCopyId = 0;

View File

@ -0,0 +1,131 @@
/***********************************************************************
* This file is part of Scanned Image Extract.
*
* Scanned Image Extract 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.
*
* Scanned Image Extract 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 Scanned Image Extract. If not, see <http://www.gnu.org/licenses/>
*
*
* Copyright (C) 2015, Dominik Rueß; info@dominik-ruess.de
**********************************************************************/
#ifndef TARGETIMAGE_H
#define TARGETIMAGE_H
#include "imageboundary.h"
#include <QPixmap>
#include <QDebug>
#include <QtCore/qmath.h>
#ifdef __GNUC__
#include <tr1/memory>
#endif
class BackMap
{
public:
BackMap(const double angle,
const QPointF translation,
const QSizeF size,
const double scale)
{
const double c = qCos(angle), s = qSin(angle);
rotation[0] = c;
rotation[1] = -s;
rotation[2] = s;
rotation[3] = c;
this->translation[0] = translation.x();
this->translation[1] = translation.y();
this->size[0] = size.width();
this->size[1] = size.height();
this->scale = scale;
}
inline void transform(const QPointF& input, float& x, float& y)
{
QPointF preTrans(input.x() - 0.5*size[0]*scale,
input.y() - 0.5*size[1]*scale);
x = rotation[0] * preTrans.x() + rotation[1] * preTrans.y() + translation[0]*scale;
y = rotation[2] * preTrans.x() + rotation[3] * preTrans.y() + translation[1]*scale;
}
private:
double scale;
double size[2];
double rotation[4];
double translation[2];
};
typedef std::tr1::shared_ptr<BackMap> BackMapPtr;
enum Rotation90
{
TargetRotation0 = 0,
TargetRotation90 = 1,
TargetRotation180 = 2,
TargetRotation270 = 3
};
struct TargetImage
{
ImageBoundaryPtr boundary;
QImage image;
Rotation90 rotation;
int determinedRotation;
TargetImage()
: boundary(new ImageBoundary)
, rotation(TargetRotation0)
, width(0)
, height(0)
, copyId(-1)
, workOnId(++nextId)
, aspect(-1.0)
{}
TargetImage(ImageBoundaryPtr newB)
: boundary(newB)
, rotation(TargetRotation0)
, width(0)
, height(0)
, copyId(-1)
, workOnId(++nextId)
, aspect(-1.0)
{}
~TargetImage()
{
backmap = BackMapPtr();
boundary = ImageBoundaryPtr();
}
BackMapPtr backmap;
int width;
int height;
int copyId;
long int workOnId;
float aspect;
static int nextCopyId;
private:
static int nextId;
};
typedef std::shared_ptr<TargetImage> TargetImagePtr;
#endif // TARGETIMAGE_H

1
scannerExtract/WARRANTY Normal file
View File

@ -0,0 +1 @@
This software is licensed under the GPL, see source code for details. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

View File

@ -0,0 +1 @@
Die Veröffentlichung dieses Programms erfolgt in der Hoffnung, daß es Ihnen von Nutzen sein wird, aber OHNE IRGENDEINE GARANTIE, sogar ohne die implizite Garantie der MARKTREIFE oder der VERWENDBARKEIT FÜR EINEN BESTIMMTEN ZWECK.

81
scannerExtract/about.cpp Normal file
View File

@ -0,0 +1,81 @@
/***********************************************************************
* This file is part of Scanned Image Extract.
*
* Scanned Image Extract 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.
*
* Scanned Image Extract 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 Scanned Image Extract. If not, see <http://www.gnu.org/licenses/>
*
*
* Copyright (C) 2015, Dominik Rueß; info@dominik-ruess.de
**********************************************************************/
#include <stdint.h>
#include "about.h"
#include "ui_about.h"
#include <QSvgRenderer>
#include <QPainter>
#include <QFile>
DialogAbout::DialogAbout(QWidget *parent) :
QDialog(parent),
ui(new Ui::DialogAbout)
{
ui->setupUi(this);
const int size = 128;
ui->label_image->setMargin(5);
ui->label_image->setMinimumSize(size+10, size+10);
ui->label_image->setMaximumSize(size+10, size+10);
ui->label_image->setAlignment(Qt::AlignHCenter | Qt::AlignVCenter);
//ui->label_image->setMaximumSize(size, size);
ui->label_image->setSizePolicy(QSizePolicy::Fixed, QSizePolicy::Fixed);
QSvgRenderer renderer(QString(":images/logo.svg"));
QImage image(size, size, QImage::Format_ARGB32);
image.fill(0x00000000); // partly transparent red-ish background
QPainter painter(&image);
renderer.render(&painter);
QString text;
QFile tmp(tr(":WARRANTY_EN"));
if (tmp.open(QIODevice::ReadOnly))
{
text = tmp.readAll();
}
ui->label_license->setText(ui->label_license->text() + text);
ui->label_license->setWordWrap(true);
ui->label_image->setPixmap(QPixmap::fromImage(image));//.scaled(size, size, Qt::KeepAspectRatio));
this->setSizePolicy(QSizePolicy::MinimumExpanding, QSizePolicy::MinimumExpanding);
}
DialogAbout::~DialogAbout()
{
delete ui;
}
void DialogAbout::on_pushButton_done_clicked()
{
this->close();
}
void DialogAbout::setVersion(const int major, const int minor, const int patch, const int bits)
{
ui->label_version->setText(tr("version %1.%2.%3 - %4bit version").arg(major).arg(minor).arg(patch).arg(bits));
}
QString DialogAbout::getDonateText() const
{
return ui->label_donation->text();
}

51
scannerExtract/about.h Normal file
View File

@ -0,0 +1,51 @@
/***********************************************************************
* This file is part of Scanned Image Extract.
*
* Scanned Image Extract 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.
*
* Scanned Image Extract 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 Scanned Image Extract. If not, see <http://www.gnu.org/licenses/>
*
*
* Copyright (C) 2015, Dominik Rueß; info@dominik-ruess.de
**********************************************************************/
#ifndef DIALOGABOUT_SCANNER_EXTRACT_H
#define DIALOGABOUT_SCANNER_EXTRACT_H
#include <QDialog>
#include "about.h"
namespace Ui {
class DialogAbout;
}
class DialogAbout : public QDialog
{
Q_OBJECT
public:
explicit DialogAbout(QWidget *parent = 0);
~DialogAbout();
void setVersion(const int, const int, const int, const int);
QString getDonateText() const;
private slots:
void on_pushButton_done_clicked();
private:
Ui::DialogAbout *ui;
};
#endif // DIALOGABOUT_SCANNER_EXTRACT_H

236
scannerExtract/about.ui Normal file
View File

@ -0,0 +1,236 @@
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>DialogAbout</class>
<widget class="QDialog" name="DialogAbout">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>628</width>
<height>562</height>
</rect>
</property>
<property name="sizePolicy">
<sizepolicy hsizetype="MinimumExpanding" vsizetype="MinimumExpanding">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="windowTitle">
<string>About Scanned Image Extractor</string>
</property>
<layout class="QVBoxLayout" name="verticalLayout">
<item>
<layout class="QHBoxLayout" name="horizontalLayout_content">
<item>
<layout class="QVBoxLayout" name="verticalLayout_3">
<property name="rightMargin">
<number>10</number>
</property>
<item>
<widget class="QLabel" name="label_image">
<property name="sizePolicy">
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="minimumSize">
<size>
<width>128</width>
<height>0</height>
</size>
</property>
<property name="maximumSize">
<size>
<width>128</width>
<height>16777215</height>
</size>
</property>
<property name="frameShape">
<enum>QFrame::Panel</enum>
</property>
<property name="frameShadow">
<enum>QFrame::Raised</enum>
</property>
<property name="text">
<string/>
</property>
<property name="margin">
<number>5</number>
</property>
</widget>
</item>
<item>
<spacer name="verticalSpacer_3">
<property name="orientation">
<enum>Qt::Vertical</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>20</width>
<height>40</height>
</size>
</property>
</spacer>
</item>
</layout>
</item>
<item>
<layout class="QVBoxLayout" name="verticalLayout_2">
<item>
<widget class="QLabel" name="label_pivottitle">
<property name="font">
<font>
<pointsize>24</pointsize>
<weight>75</weight>
<bold>true</bold>
</font>
</property>
<property name="text">
<string>Scanned Image Extractor</string>
</property>
</widget>
</item>
<item>
<widget class="QLabel" name="label_version">
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
</property>
<property name="text">
<string>Version </string>
</property>
</widget>
</item>
<item>
<widget class="QLabel" name="label_2">
<property name="text">
<string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;justify&quot;&gt;&lt;span style=&quot; font-style:italic;&quot;&gt;Scanned Image Extractor&lt;/span&gt; is a programm which allows fast and efficient extraction of multiple photographs of scanned albums&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
</property>
<property name="wordWrap">
<bool>true</bool>
</property>
</widget>
</item>
<item>
<widget class="QLabel" name="label_copyright">
<property name="text">
<string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Copyright 2015, Dominik Rueß &lt;a href=&quot;mailto:pivot@dominik-ruess.de&quot;&gt;&lt;span style=&quot; text-decoration: underline; color:#0000ff;&quot;&gt;scanner-extractor@dominik-ruess.de&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
</property>
<property name="openExternalLinks">
<bool>true</bool>
</property>
</widget>
</item>
<item>
<widget class="QLabel" name="label_license">
<property name="text">
<string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;License: &lt;span style=&quot; font-style:italic;&quot;&gt;The GNU General Public License (GPL), Version 3&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
</property>
</widget>
</item>
<item>
<widget class="Line" name="line">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
</widget>
</item>
<item>
<widget class="QLabel" name="label_5">
<property name="frameShape">
<enum>QFrame::NoFrame</enum>
</property>
<property name="frameShadow">
<enum>QFrame::Raised</enum>
</property>
<property name="text">
<string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Bugs, feature requests or spelling errors can be reported to: &lt;a href=&quot;https://sourceforge.net/p/scannedimageextractor/tickets/&quot;&gt;&lt;span style=&quot; text-decoration: underline; color:#0000ff;&quot;&gt;sourceforge.net/p/scannedimageextractor/tickets/ &lt;/span&gt;&lt;/a&gt;(or email).&lt;br/&gt;I'm always looking forward to translations into YOUR language.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
</property>
<property name="wordWrap">
<bool>true</bool>
</property>
<property name="openExternalLinks">
<bool>true</bool>
</property>
</widget>
</item>
<item>
<widget class="Line" name="line_2">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
</widget>
</item>
<item>
<widget class="QLabel" name="label_donation">
<property name="frameShape">
<enum>QFrame::NoFrame</enum>
</property>
<property name="frameShadow">
<enum>QFrame::Raised</enum>
</property>
<property name="text">
<string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;justify&quot;&gt;If you like &lt;span style=&quot; font-style:italic;&quot;&gt;Scanned Image Extractor&lt;/span&gt; or if you wish to support the author consider donating&lt;/span&gt;: &lt;/p&gt;&lt;ul style=&quot;margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;&quot;&gt;&lt;li style=&quot; margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;via Sourceforge (Donation for user &lt;span style=&quot; font-style:italic;&quot;&gt;domsen&lt;/span&gt;): &lt;a href=&quot;https://sourceforge.net/p/scannedimageextractor/donate/&quot;&gt;&lt;span style=&quot; text-decoration: underline; color:#0000ff;&quot;&gt;sourceforge.net/p/scannedimageextractor/donate/&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;li align=&quot;justify&quot; style=&quot; margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;personally: contact me at &lt;a href=&quot;mailto:donate@dominik-ruess.de&quot;&gt;&lt;span style=&quot; text-decoration: underline; color:#0000ff;&quot;&gt;donate@dominik-ruess.de&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/body&gt;&lt;/html&gt;</string>
</property>
<property name="wordWrap">
<bool>true</bool>
</property>
<property name="openExternalLinks">
<bool>true</bool>
</property>
</widget>
</item>
<item>
<widget class="Line" name="line_3">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
</widget>
</item>
<item>
<widget class="QLabel" name="label_3">
<property name="text">
<string>Credits go to the GNOME project (i.e. the gome icon artists) for the application icon (Creative Commons Attribution-Share Alike 3.0 Unported), which consists of Gnome-image-x-generic.svg and Gnome-scanner.svg.</string>
</property>
<property name="wordWrap">
<bool>true</bool>
</property>
</widget>
</item>
<item>
<layout class="QHBoxLayout" name="horizontalLayout">
<item>
<spacer name="horizontalSpacer">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>40</width>
<height>20</height>
</size>
</property>
</spacer>
</item>
<item>
<widget class="QPushButton" name="pushButton_done">
<property name="text">
<string>&amp;Ok</string>
</property>
</widget>
</item>
</layout>
</item>
</layout>
</item>
</layout>
</item>
</layout>
</widget>
<resources/>
<connections/>
</ui>

View File

@ -0,0 +1,238 @@
/***********************************************************************
* This file is part of Scanned Image Extract.
*
* Scanned Image Extract 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.
*
* Scanned Image Extract 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 Scanned Image Extract. If not, see <http://www.gnu.org/licenses/>
*
*
* Copyright (C) 2015, Dominik Rueß; info@dominik-ruess.de
**********************************************************************/
#include "copytargets.h"
#include <opencv/cv.h>
#ifndef OPENCV2
#include <opencv2/opencv.hpp>
#include <opencv2/imgcodecs.hpp>
#include <opencv2/imgproc.hpp>
#else
#include <opencv/highgui.h>
#endif
#include <QDir>
#include <QDebug>
#include "extracttargets.h"
QMutex CopyTargets::memorySaveMutex;
CopyTargets::CopyTargets(QObject *parent)
: QThread(parent)
, _stopped(false)
, _exitWritingOperationDone(false)
{
}
CopyTargets::~CopyTargets()
{
_fileListMutex.lock();
abortSaveFile(0);
while (!_exitWritingOperationDone || _filesToCopy.size() > 0)
{
_fileListMutex.unlock();
// saving may occur on closing
qDebug() << "waiting for all writing operations to finish (still" << _filesToCopy.size() << "to write)";
//_computationCondition.wait(&_computationRunning);
//qDebug() << "finished writing next image";
QThread::wait(500);
_fileListMutex.lock();
}
_filesToCopy.clear();
_fileListMutex.unlock();
//_computationRunning.unlock();
_stopped = true;
_condition.wakeAll();
wait();
}
void CopyTargets::addSaveFiles(SourceFilePtr source)
{
QMutexLocker l(&_fileListMutex);
_filesToCopy.push_back(source);
_abortSaveFile = 0;
if (!isRunning()) {
start(QThread::LowPriority);
} else {
_condition.wakeOne();
}
}
void CopyTargets::abortSaveFile(SourceFilePtr file)
{
_abortSaveFile = file;
}
void CopyTargets::clear()
{
QMutexLocker l(&_fileListMutex);
_filesToCopy.clear();
}
#define ABORT_CURRENT_TEST(breakit) \
if (_abortSaveFile.get() != 0 \
&& file->source.absoluteFilePath() == _abortSaveFile->source.absoluteFilePath()) \
{ \
if (breakit) break; \
else continue; \
}
void CopyTargets::run()
{
while (!_stopped) {
SourceFilePtr file;
{
QMutexLocker l(&_fileListMutex);
if (_filesToCopy.size() == 0) {
_condition.wait(&_fileListMutex);
// continue: in the meantime it might have been stopped
// or set empty
continue;
}
file= _filesToCopy.first();
_filesToCopy.pop_front();
}
//QMutexLocker l(&_computationRunning);
QMutexLocker l1(&ExtractTargets::imageMutex);
QList<TargetImagePtr> targets = file->targets;
QList<BackMapPtr> backmaps;
for (int i=0; i<targets.size(); i++)
{
backmaps.append(targets[i]->backmap);
}
l1.unlock();
QMutexLocker l2(&memorySaveMutex);
cv::Mat src = cv::imread(file->source.canonicalFilePath().toLocal8Bit().data(),
CV_LOAD_IMAGE_ANYDEPTH | CV_LOAD_IMAGE_ANYCOLOR);
QDir targetDir (QDir::rootPath());
targetDir.mkpath(QFileInfo(_targetDir).absolutePath());
for (int i=0; i<targets.size(); i++)
{
ABORT_CURRENT_TEST(true);
if (targets[i]->boundary->getCopied()) {
qDebug() << "Target " << i
<< " of source "
<< file->source.canonicalFilePath()
<< " has already been copied in this session, skipping";
continue;
}
if (targets[i]->copyId == -1)
{
targets[i]->copyId = ++TargetImage::nextCopyId;
}
const int tW = targets[i]->width;
const int tH = targets[i]->height;
if (tW == 0 || tH == 0) {
continue;
}
cv::Mat mapX(tH, tW, CV_32FC1),
mapY(tH, tW, CV_32FC1);
cv::Mat out(tH, tW, src.type());
for (int r=0; r<tH; r++) {
float* mX = mapX.ptr<float>(r);
float* mY = mapY.ptr<float>(r);
for (int c=0; c<tW; c++) {
backmaps[i]->transform(QPointF(c, r), mX[c], mY[c]);
}
ABORT_CURRENT_TEST(true);
}
ABORT_CURRENT_TEST(true);
cv::transpose(mapX, mapX);
cv::transpose(mapY, mapY);
ABORT_CURRENT_TEST(false);
cv::remap(src, out, mapX, mapY, CV_INTER_CUBIC);
mapX.release();
mapY.release();
cv::flip(out, out, 0);
QString newFileName(QString("%1%2%3_%4.%5")
.arg(_targetDir + QDir::separator())
.arg(_prefix)
.arg(file->source.baseName())
.arg(targets[i]->copyId, (int)FIELD_WIDTH, (int)10, QChar('0'))
.arg(file->source.suffix()));
cv::Mat out2;
int rot = targets[i]->determinedRotation + targets[i]->rotation + 1;
if (out.size().width ==0 || out.size().height == 0)
{
emit copyError(file, targets[i]);
}
else
{
switch(rot) {
case 1:
case 5:
case -3:
cv::transpose(out, out2);
cv::flip(out2, out2, 1);
break;
case 2:
case 6:
case -2:
cv::flip(out, out2, -1);
break;
case 3:
case -1:
cv::transpose(out, out2);
cv::flip(out2, out2, 0);
break;
default:
out2=out;
break;
}
if (cv::imwrite(newFileName.toLocal8Bit().data(), out2)) {
ABORT_CURRENT_TEST(true);
targets[i]->boundary->setCopied(true);
if (!_stopped)
{
emit copied(QFileInfo(newFileName).fileName(),
QFileInfo(newFileName).absolutePath());
}
} else {
if (!_stopped)
{
emit copyError(file, targets[i]);
}
}
}
}
ABORT_CURRENT_TEST(false);
file->changed = false;
src.release();
l2.unlock();
//l.unlock();
_computationCondition.wakeAll();
}
_computationCondition.wakeAll();
}

View File

@ -0,0 +1,84 @@
/***********************************************************************
* This file is part of Scanned Image Extract.
*
* Scanned Image Extract 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.
*
* Scanned Image Extract 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 Scanned Image Extract. If not, see <http://www.gnu.org/licenses/>
*
*
* Copyright (C) 2015, Dominik Rueß; info@dominik-ruess.de
**********************************************************************/
#ifndef COPYTARGETS_H
#define COPYTARGETS_H
#include <QThread>
#include <QMutex>
#include <QWaitCondition>
#include <QDebug>
#include "sourcefile.h"
#define TARGET_FILENAME "scanner_extracted"
#define FIELD_WIDTH 2
class CopyTargets : public QThread
{
Q_OBJECT
public:
explicit CopyTargets(QObject *parent = 0);
~CopyTargets();
void addSaveFiles(SourceFilePtr);
void abortSaveFile(SourceFilePtr);
void setDestination(const QString targetDir) { _targetDir = targetDir;}
static QMutex memorySaveMutex;
void clear();
void setPrefix(QString prefix) { _prefix = prefix; }
void setExitSaving() { _exitWritingOperationDone = true; }
signals:
void copyError(SourceFilePtr source, TargetImagePtr target);
void copied(QString filename, QString targetDir);
public slots:
protected:
void run();
private:
QVector<SourceFilePtr> _filesToCopy;
QString _targetDir;
QMutex _fileListMutex;
// QMutex _computationRunning;
QWaitCondition _condition;
QWaitCondition _computationCondition;
bool _stopped;
QString _prefix;
SourceFilePtr _abortSaveFile;
bool _exitWritingOperationDone;
};
#endif // COPYTARGETS_H

View File

@ -0,0 +1,285 @@
/***********************************************************************
* This file is part of Scanned Image Extract.
*
* Scanned Image Extract 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.
*
* Scanned Image Extract 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 Scanned Image Extract. If not, see <http://www.gnu.org/licenses/>
*
*
* Copyright (C) 2015, Dominik Rueß; info@dominik-ruess.de
**********************************************************************/
#include <QtCore/qmath.h>
#include "extracttargets.h"
QMutex ExtractTargets::imageMutex;
QMutex ExtractTargets::fileListMutex;
ExtractTargets::ExtractTargets(QObject *parent)
: QThread(parent)
, _stopped(false)
, _abortCurrentStartNext(false)
{
}
void ExtractTargets::addTarget(TargetImagePtr target,
SourceFilePtr source,
const bool highPriority)
{
QMutexLocker l(&fileListMutex);
if (_current.get() != 0
&& _current->workOnId == target->workOnId)
{
// already loading -> do nothing
return;
}
if (highPriority) {
_abortCurrentStartNext = true;
}
QPair<TargetImagePtr, SourceFilePtr> item(target, source);
if (highPriority) {
_targetList.push_front(item);
}
else {
_targetList.push_back(item);
}
// find duplicates and delete (work from back)
for (int i=_targetList.size()-1; i>=0; i--) {
for (int j=i-1; j>=0; j--) {
if (_targetList[i].first->workOnId
== _targetList[j].first->workOnId) {
_targetList.erase(_targetList.begin() + i);
}
}
}
_stopped = false;
if (!isRunning()) {
start(QThread::HighPriority);
} else {
_condition.wakeOne();
}
}
void ExtractTargets::stop()
{
_stopped = true;
}
ExtractTargets::~ExtractTargets()
{
fileListMutex.lock();
_targetList.clear();
_stopped = true;
_condition.wakeAll();
fileListMutex.unlock();
wait();
}
void ExtractTargets::run()
{
while (!_stopped) {
_abortCurrentStartNext = false;
{
QMutexLocker l(&fileListMutex);
if (_targetList.size() == 0) {
_condition.wait(&fileListMutex);
// continue: in the meantime it might have been stopped
// or set empty
continue;
}
}
fileListMutex.lock();
_current = _targetList.first().first;
SourceFilePtr currentSource = _targetList.first().second;
fileListMutex.unlock();
imageMutex.lock();
extract(_current, currentSource);
imageMutex.unlock();
if (_stopped || _abortCurrentStartNext) {
continue;
}
fileListMutex.lock();
_targetList.pop_front();
fileListMutex.unlock();
if (!_stopped) {
emit doneTarget(_current);
}
_current = TargetImagePtr();
}
}
void ExtractTargets::extract(TargetImagePtr target, SourceFilePtr source)
{
QImage out;
if (source->imageOrig.isNull()
|| source->imageOrig.width() == 0
|| source->imageOrig.height() == 0)
{
target->backmap = BackMapPtr();
target->image = QImage();
return;
}
const QImage& sourceImage = source->imageOrig;
const double cropPerc = target->boundary->getCrop() < 0 ? _cropPercentage : target->boundary->getCrop();
target->boundary->setCrop(cropPerc);
const int width = _norm(target->boundary->corners()[0] * (1-cropPerc)
-target->boundary->corners()[3] * (1-cropPerc));
const int height = _norm(target->boundary->corners()[1] * (1-cropPerc)
-target->boundary->corners()[0] * (1-cropPerc));
out = QImage(width, height, QImage::Format_RGB32);
out.fill(QColor(0,0,0));
// check correct order, such that it does not reflect in any dimension
// (no flipping)
double anglesSource[4];
QPointF center(0,0);
for (int i=0;i<4;i++) {
center += target->boundary->corners()[0];
}
center /= 4;
center = target->boundary->mapToScene(center);
for (int i=0; i<4; i++) {
QPointF curr = target->boundary->mapToScene(target->boundary->corners()[i])-center;
anglesSource[i] = qAtan2(curr.y(), curr.x());
}
int numNeg = 0;
for (int i=0; i<4; i++) {
const double sgn1 = (anglesSource[i]-anglesSource[(i+3)%4]);
//const double sgn2 = (anglesTarget[i]-anglesTarget[(i+3)%4]);
if (sgn1 < 0) numNeg++;
}
// either double reflected (numNeg == 2) or only one side
if (numNeg >= 2) {
QPointF corners[4];
if (numNeg > 2) {
corners[0] = target->boundary->corners()[0];
corners[1] = target->boundary->corners()[3];
corners[2] = target->boundary->corners()[2];
corners[3] = target->boundary->corners()[1];
} else {
corners[0] = target->boundary->corners()[2];
corners[1] = target->boundary->corners()[3];
corners[2] = target->boundary->corners()[0];
corners[3] = target->boundary->corners()[1];
}
target->boundary->setCorners(corners);
// start over again
extract(target, source);
}
else
{
// now also check the orientation, it has to be
// similar to the source. meaning roughly upright -> upright
QPointF currRot = target->boundary->mapToScene(target->boundary->corners()[2])
-target->boundary->mapToScene(target->boundary->corners()[1]);
const double resultAngle = qAtan2( currRot.y(),
currRot.x() );
const int num90DegreeBins = qRound((resultAngle)/(M_PI/2.0));
QPointF dirX(target->boundary->corners()[3]* (1-cropPerc)
-target->boundary->corners()[0]* (1-cropPerc)),
dirY(target->boundary->corners()[0]* (1-cropPerc)
-target->boundary->corners()[1]* (1-cropPerc));
QSizeF size(_norm(dirX), _norm(dirY)) ;
dirX /= size.width();
dirY /= size.height();
QPointF center(0.5*(target->boundary->mapToScene(target->boundary->corners()[0])
+ target->boundary->mapToScene(target->boundary->corners()[2])));
const int sourceHeight = sourceImage.height();
const int sourceWidth = sourceImage.width();
target->backmap = BackMapPtr(new BackMap(resultAngle,
center,
size,
source->scale));
#pragma omp parallel for
for (int y=0; y<height; y++) {
if (!_stopped && !_abortCurrentStartNext)
{
for (int x=0; x<width; x++) {
//QPointF pos(y -height/2.0, x -width/2.0);
QPointF pos(target->boundary->corners()[1]* (1-cropPerc)
+ y*dirY + x*dirX);
pos = target->boundary->mapToScene(pos);
const int xSource = qRound(pos.x());
const int ySource = qRound(pos.y());
if (xSource >= 0
&& xSource < sourceWidth
&& ySource >= 0
&& ySource < sourceHeight) {
out.setPixel(x,y, sourceImage.pixel(xSource, ySource));
} else {
out.setPixel(x,y,qRgb(0,0,0));
}
}
}
}
if (_stopped || _abortCurrentStartNext) {
target->width = 0;
target->height = 0;
target->backmap = BackMapPtr();
target->image = QImage();
return;
}
else
{
target->width = (double)width * source->scale;
target->height = (double)height * source->scale;
}
// finally, add normalizing rotation and user rotation:
out = out.transformed(QTransform().rotate( num90DegreeBins*90).rotate(target->rotation*90));
target->determinedRotation = num90DegreeBins;
target->image = out;
}
}
inline double ExtractTargets::_norm(const QPointF& p)
{
return qSqrt(p.x()*p.x() + p.y()*p.y());
}
inline double ExtractTargets::_dot(const QPointF& p1, const QPointF& p2)
{
return p1.x() * p2.x() + p1.y() * p2.y();
}
inline double ExtractTargets::_norm2(const QPointF& p)
{
return p.x()*p.x() + p.y()*p.y();
}

View File

@ -0,0 +1,81 @@
/***********************************************************************
* This file is part of Scanned Image Extract.
*
* Scanned Image Extract 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.
*
* Scanned Image Extract 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 Scanned Image Extract. If not, see <http://www.gnu.org/licenses/>
*
*
* Copyright (C) 2015, Dominik Rueß; info@dominik-ruess.de
**********************************************************************/
#ifndef EXTRACTTARGETS_H
#define EXTRACTTARGETS_H
#include <QThread>
#include <QMutex>
#include <QWaitCondition>
#include <QList>
#include <QPair>
#include "TargetImage.h"
#include "sourcefile.h"
class ExtractTargets : public QThread
{
Q_OBJECT
public:
explicit ExtractTargets(QObject *parent = 0);
~ExtractTargets();
void addTarget(TargetImagePtr target,
SourceFilePtr source,
const bool highPriority = false);
static QMutex imageMutex;
static QMutex fileListMutex;
QList<QPair<TargetImagePtr, SourceFilePtr> > getList() { return _targetList; }
void setCrop(const float crop) { _cropPercentage = crop; }
signals:
void doneTarget(const TargetImagePtr&);
public slots:
void stop();
protected:
void run();
private:
inline double _norm(const QPointF&);
inline double _dot(const QPointF& p1, const QPointF& p2);
inline double _norm2(const QPointF& p);
QWaitCondition _condition;
void extract(TargetImagePtr target, SourceFilePtr source);
QList<QPair<TargetImagePtr, SourceFilePtr> > _targetList;
bool _stopped;
bool _abortCurrentStartNext;
float _cropPercentage;
TargetImagePtr _current;
};
#endif // EXTRACTTARGETS_H

View File

@ -0,0 +1,16 @@
#include "helpdialog.h"
#include "ui_helpdialog.h"
HelpDialog::HelpDialog(QWidget *parent) :
QDialog(parent),
ui(new Ui::HelpDialog)
{
ui->setupUi(this);
ui->label_overview->setPixmap(QPixmap::fromImage(QImage(":/images/overview.png")));
}
HelpDialog::~HelpDialog()
{
delete ui;
}

View File

@ -0,0 +1,22 @@
#ifndef HELPDIALOG_H
#define HELPDIALOG_H
#include <QDialog>
namespace Ui {
class HelpDialog;
}
class HelpDialog : public QDialog
{
Q_OBJECT
public:
explicit HelpDialog(QWidget *parent = 0);
~HelpDialog();
private:
Ui::HelpDialog *ui;
};
#endif // HELPDIALOG_H

View File

@ -0,0 +1,189 @@
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>HelpDialog</class>
<widget class="QDialog" name="HelpDialog">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>750</width>
<height>650</height>
</rect>
</property>
<property name="windowTitle">
<string>Help</string>
</property>
<layout class="QVBoxLayout" name="verticalLayout">
<item>
<widget class="QLabel" name="label_2">
<property name="font">
<font>
<pointsize>18</pointsize>
<weight>75</weight>
<bold>true</bold>
</font>
</property>
<property name="text">
<string>Scanned Image Extractor Help</string>
</property>
</widget>
</item>
<item>
<widget class="QScrollArea" name="scrollArea">
<property name="widgetResizable">
<bool>true</bool>
</property>
<widget class="QWidget" name="scrollAreaWidgetContents">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>730</width>
<height>561</height>
</rect>
</property>
<layout class="QVBoxLayout" name="verticalLayout_2">
<item>
<widget class="QLabel" name="label">
<property name="text">
<string>Find the more detailed online help at &lt;a href=&quot;http://dominik-ruess.de/scannerExtract&quot;&gt;dominik-ruess.de/scannerExtract&lt;/a&gt;</string>
</property>
<property name="openExternalLinks">
<bool>true</bool>
</property>
</widget>
</item>
<item>
<widget class="QLabel" name="label_3">
<property name="text">
<string>This is a short introduction on how to use &lt;i&gt;Scanned Image Extractor&lt;/i&gt;. Scroll down to see the complete help text. &lt;br&gt;
Now, here is an example of how the user interface of the program may look like:</string>
</property>
<property name="wordWrap">
<bool>true</bool>
</property>
</widget>
</item>
<item>
<widget class="QLabel" name="label_overview">
<property name="styleSheet">
<string notr="true"/>
</property>
<property name="frameShape">
<enum>QFrame::Panel</enum>
</property>
<property name="frameShadow">
<enum>QFrame::Raised</enum>
</property>
<property name="text">
<string>image</string>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
</property>
<property name="margin">
<number>25</number>
</property>
</widget>
</item>
<item>
<widget class="QLabel" name="label_4">
<property name="text">
<string>First of all, you load a scanner image. It will appear in the area marked with (1). The program will suggest some photographs. These are marked with a rectangle. Once you select such a rectangle, its preview will apear in the area (2). &lt;br&gt;The properties of these rectangles can be changed in area (3). aspect ratio changes are located in (4) and the orientation of every rectangle/photograph can be changed in (5).</string>
</property>
<property name="wordWrap">
<bool>true</bool>
</property>
</widget>
</item>
<item>
<widget class="QLabel" name="label_5">
<property name="text">
<string>&lt;b&gt;Photograph/Rectangle Handling:&lt;/b&gt;
&lt;br&gt;You can modify the shape of the output photographs/rectangles:&lt;ul&gt;
&lt;li&gt;drag corner or edge of rectangles for size changes&lt;/li&gt;
&lt;li&gt;press CTRL for symmetric change&lt;/li&gt;
&lt;li&gt;keep SHIFT pressed before dragging corner, this rotates the rectangle&lt;/li&gt;
&lt;li&gt;add new rectangle: deselect all (click somewhere empty). Click on a photograph corner, keep mouse clicked and drag line to a second corner. Then move/resize the new rectangle and click to release.&lt;/li&gt;
&lt;/ul&gt;
If you process to the next scanned image, the previous photographs will be extracted &lt;i&gt;automatically&lt;/i&gt;.</string>
</property>
<property name="wordWrap">
<bool>true</bool>
</property>
</widget>
</item>
<item>
<widget class="QLabel" name="label_6">
<property name="text">
<string>&lt;b&gt;Keyboard shortcuts:&lt;/b&gt;&lt;table&gt;
&lt;tr&gt;&lt;td&gt;Keys 0-9&lt;/td&gt;&lt;td&gt; select aspect ratios&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;Keys 'a', 's', 'd' and 'f'&lt;/td&gt;&lt;td&gt; change orientation of current target&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td style=&quot;padding-right:20px;&quot;&gt;Keys CTRL+V and CTRL+B&lt;/td&gt;&lt;td&gt; navigate to prev. and next input image&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;Keys N, M and delete&lt;/td&gt;&lt;td&gt; navigate prev. and next target or delete target&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</string>
</property>
</widget>
</item>
</layout>
</widget>
</widget>
</item>
<item>
<layout class="QHBoxLayout" name="horizontalLayout">
<item>
<spacer name="horizontalSpacer">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>40</width>
<height>20</height>
</size>
</property>
</spacer>
</item>
<item>
<widget class="QPushButton" name="pushButton">
<property name="text">
<string>&amp;OK</string>
</property>
</widget>
</item>
<item>
<spacer name="horizontalSpacer_2">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>40</width>
<height>20</height>
</size>
</property>
</spacer>
</item>
</layout>
</item>
</layout>
</widget>
<resources/>
<connections>
<connection>
<sender>pushButton</sender>
<signal>clicked()</signal>
<receiver>HelpDialog</receiver>
<slot>close()</slot>
<hints>
<hint type="sourcelabel">
<x>320</x>
<y>456</y>
</hint>
<hint type="destinationlabel">
<x>319</x>
<y>239</y>
</hint>
</hints>
</connection>
</connections>
</ui>

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 32 KiB

View File

@ -0,0 +1,122 @@
/***********************************************************************
* This file is part of Scanned Image Extract.
*
* Scanned Image Extract 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.
*
* Scanned Image Extract 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 Scanned Image Extract. If not, see <http://www.gnu.org/licenses/>
*
*
* Copyright (C) 2015, Dominik Rueß; info@dominik-ruess.de
**********************************************************************/
#include "imageboundary.h"
#include <QBrush>
#include <QColor>
#include <QDebug>
#include <QPen>
#include <QStyleOptionGraphicsItem>
#include <QTime>
#include <QPainter>
#include <QTimer>
#include "TargetImage.h"
ImageBoundary::ImageBoundary(QGraphicsItem *parent)
: QGraphicsPathItem(parent)
, _isCopied(false)
, _userHasSeenThis(false)
, _boundaryPercentage(-1.0)
{
QPointF corner[] = {QPointF(-100,-75),
QPointF(100,-75),
QPointF(100,75),
QPointF(-100,75)};
setCorners(corner);
setFlag(QGraphicsItem::ItemIsMovable, true);
setFlag(QGraphicsItem::ItemIsSelectable, true);
setFlag(QGraphicsItem::ItemSendsGeometryChanges, true);
setBrush(NON_SELECTED);
}
QRectF ImageBoundary::boundingRect()
{
QRectF out;
QPointF mi(1e10,1e10), ma(-1e10, -1e10);
for (int i=0; i<4; i++)
{
mi.setX(qMin(mi.x(), corners()[i].x()));
mi.setY(qMin(mi.y(), corners()[i].y()));
ma.setX(qMax(ma.x(), corners()[i].x()));
ma.setY(qMax(ma.y(), corners()[i].y()));
}
out = QRectF(mi, ma);
return out;
}
void ImageBoundary::setCorners(const QPointF corner[])
{
QPainterPath path;
path.moveTo(corner[0]);
for (int i=0; i<4; i++) {
_corners[i] = corner[i];
if (i>0) {
path.lineTo(corner[i]);
}
}
path.lineTo(corner[0]);
setPath(path);
}
const QPointF* ImageBoundary::corners() const
{
return _corners;
}
void ImageBoundary::setCopied(const bool copied)
{
dirty();
_isCopied = copied;
}
void ImageBoundary::paint ( QPainter * painter,
const QStyleOptionGraphicsItem * option,
QWidget * widget )
{
QPen pen;
if ( this->isSelected()) {
setBrush(SELECTED);
pen.setStyle(Qt::DashLine);
QTime t = QTime::currentTime();
QVector<qreal> dashes;
dashes << 5 << 5;
pen.setDashPattern(dashes);
pen.setDashOffset(5*((float)t.second() + (float)t.msec()/1000.0));
} else {
setBrush(_isCopied ? COPIED : NON_SELECTED);
}
pen.setWidth(2);
pen.setCosmetic(true);
setPen(pen);
QStyleOptionGraphicsItem option2 (*option);
option2.state = option2.state & (~QStyle::State_Selected);
QGraphicsPathItem::paint(painter, &option2, widget);
}

View File

@ -0,0 +1,85 @@
/***********************************************************************
* This file is part of Scanned Image Extract.
*
* Scanned Image Extract 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.
*
* Scanned Image Extract 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 Scanned Image Extract. If not, see <http://www.gnu.org/licenses/>
*
*
* Copyright (C) 2015, Dominik Rueß; info@dominik-ruess.de
**********************************************************************/
#ifndef IMAGEBOUNDARY_H
#define IMAGEBOUNDARY_H
#include <QtWidgets/QGraphicsPathItem>
#include <QPointF>
#include <QTimer>
#include <memory>
#include <QDebug>
#include <opencv/cv.h>
class TargetImage;
#define SELECTED QBrush(QColor(255,0,0,50))
#define NON_SELECTED QBrush(QColor(0,0,255,50))
#define COPIED QBrush(QColor(0,255,0,50))
class ImageBoundary : public QGraphicsPathItem
{
public:
explicit ImageBoundary(QGraphicsItem *parent = 0);
QRectF boundingRect();
void paint ( QPainter * painter,
const QStyleOptionGraphicsItem * option,
QWidget * widget = 0 );
void setCorners(const QPointF corner[]);
const QPointF* corners() const;
void setCopied(const bool copied);
bool getCopied() const { return _isCopied; }
bool getUserHasSeenThis() const { return _userHasSeenThis; }
void setUserHasSeenThis() { _userHasSeenThis = true; }
void setCrop(const double perc) { _boundaryPercentage = perc; }
double getCrop() const { return _boundaryPercentage; }
void dirty() { _isCopied = false; }
signals:
public slots:
private:
int _lastSecond;
QPointF _corners[4];
bool _isCopied;
bool _userHasSeenThis; // this allows to adapt to the current aspect ratio
double _boundaryPercentage;
};
typedef std::shared_ptr<ImageBoundary> ImageBoundaryPtr;
#endif // IMAGEBOUNDARY_H

View File

@ -0,0 +1,141 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://web.resource.org/cc/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" sodipodi:docname="document-save.svg" sodipodi:docbase="/home/jimmac/gfx/ximian/tango-icon-theme/scalable/actions" inkscape:version="0.42+devel" sodipodi:version="0.32" id="svg2913" height="48px" width="48px">
<defs id="defs3">
<linearGradient inkscape:collect="always" id="linearGradient6925">
<stop style="stop-color:#204a87;stop-opacity:1;" offset="0" id="stop6927"/>
<stop style="stop-color:#204a87;stop-opacity:0;" offset="1" id="stop6929"/>
</linearGradient>
<linearGradient inkscape:collect="always" id="linearGradient6901">
<stop style="stop-color:#3465a4;stop-opacity:1;" offset="0" id="stop6903"/>
<stop style="stop-color:#3465a4;stop-opacity:0;" offset="1" id="stop6905"/>
</linearGradient>
<linearGradient inkscape:collect="always" id="linearGradient4991">
<stop style="stop-color:#ffffff;stop-opacity:1;" offset="0" id="stop4993"/>
<stop style="stop-color:#ffffff;stop-opacity:0;" offset="1" id="stop4995"/>
</linearGradient>
<radialGradient inkscape:collect="always" xlink:href="#linearGradient4991" id="radialGradient4997" cx="23.447077" cy="6.4576745" fx="23.447077" fy="6.4576745" r="19.0625" gradientTransform="matrix(-1.314471,-1.006312e-2,-1.022964e-2,1.336221,46.22108,-4.909887)" gradientUnits="userSpaceOnUse"/>
<linearGradient id="linearGradient2187" inkscape:collect="always">
<stop id="stop2189" offset="0" style="stop-color:#ffffff;stop-opacity:1;"/>
<stop id="stop2191" offset="1" style="stop-color:#ffffff;stop-opacity:0;"/>
</linearGradient>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient2187" id="linearGradient1764" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.914114,1.412791e-16,-1.412791e-16,0.914114,-3.868698,-2.706902)" x1="33.059906" y1="27.394117" x2="12.624337" y2="12.583769"/>
<linearGradient inkscape:collect="always" id="linearGradient8662">
<stop style="stop-color:#000000;stop-opacity:1;" offset="0" id="stop8664"/>
<stop style="stop-color:#000000;stop-opacity:0;" offset="1" id="stop8666"/>
</linearGradient>
<radialGradient inkscape:collect="always" xlink:href="#linearGradient8662" id="radialGradient8668" cx="24.837126" cy="36.421127" fx="24.837126" fy="36.421127" r="15.644737" gradientTransform="matrix(1.000000,-7.816467e-32,-1.132409e-32,0.536723,-5.897962e-14,16.87306)" gradientUnits="userSpaceOnUse"/>
<linearGradient id="linearGradient2555">
<stop id="stop2557" offset="0" style="stop-color:#ffffff;stop-opacity:1;"/>
<stop style="stop-color:#e6e6e6;stop-opacity:1.0000000;" offset="0.50000000" id="stop2561"/>
<stop id="stop2563" offset="0.75000000" style="stop-color:#ffffff;stop-opacity:1.0000000;"/>
<stop style="stop-color:#e1e1e1;stop-opacity:1.0000000;" offset="0.84166664" id="stop2565"/>
<stop id="stop2559" offset="1.0000000" style="stop-color:#ffffff;stop-opacity:1.0000000;"/>
</linearGradient>
<linearGradient id="linearGradient4274">
<stop style="stop-color:#ffffff;stop-opacity:0.25490198;" offset="0.0000000" id="stop4276"/>
<stop style="stop-color:#ffffff;stop-opacity:1.0000000;" offset="1.0000000" id="stop4278"/>
</linearGradient>
<linearGradient id="linearGradient4264" inkscape:collect="always">
<stop id="stop4266" offset="0" style="stop-color:#000000;stop-opacity:1;"/>
<stop id="stop4268" offset="1" style="stop-color:#000000;stop-opacity:0;"/>
</linearGradient>
<linearGradient id="linearGradient4254" inkscape:collect="always">
<stop id="stop4256" offset="0" style="stop-color:#ffffff;stop-opacity:1;"/>
<stop id="stop4258" offset="1" style="stop-color:#ffffff;stop-opacity:0;"/>
</linearGradient>
<linearGradient id="linearGradient4244">
<stop id="stop4246" offset="0.0000000" style="stop-color:#e4e4e4;stop-opacity:1.0000000;"/>
<stop id="stop4248" offset="1.0000000" style="stop-color:#d3d3d3;stop-opacity:1.0000000;"/>
</linearGradient>
<linearGradient id="linearGradient4236" inkscape:collect="always">
<stop id="stop4238" offset="0" style="stop-color:#eeeeee;stop-opacity:1;"/>
<stop id="stop4240" offset="1" style="stop-color:#eeeeee;stop-opacity:0;"/>
</linearGradient>
<linearGradient id="linearGradient4228">
<stop id="stop4230" offset="0.0000000" style="stop-color:#bbbbbb;stop-opacity:1.0000000;"/>
<stop id="stop4232" offset="1.0000000" style="stop-color:#9f9f9f;stop-opacity:1.0000000;"/>
</linearGradient>
<linearGradient id="linearGradient4184">
<stop id="stop4186" offset="0.0000000" style="stop-color:#838383;stop-opacity:1.0000000;"/>
<stop id="stop4188" offset="1.0000000" style="stop-color:#bbbbbb;stop-opacity:0.0000000;"/>
</linearGradient>
<linearGradient gradientTransform="translate(0.795493,3.799180)" y2="35.281250" x2="24.687500" y1="35.281250" x1="7.0625000" gradientUnits="userSpaceOnUse" id="linearGradient4209" xlink:href="#linearGradient4184" inkscape:collect="always"/>
<linearGradient gradientUnits="userSpaceOnUse" y2="40.943935" x2="36.183067" y1="28.481176" x1="7.6046205" id="linearGradient4234" xlink:href="#linearGradient4228" inkscape:collect="always" gradientTransform="translate(0.000000,5.125000)"/>
<linearGradient gradientUnits="userSpaceOnUse" y2="33.758667" x2="12.221823" y1="37.205811" x1="12.277412" id="linearGradient4242" xlink:href="#linearGradient4236" inkscape:collect="always" gradientTransform="translate(0.000000,5.125000)"/>
<radialGradient gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.286242,0.781698,-0.710782,1.169552,-2.354348,0.248140)" r="20.935817" fy="2.9585190" fx="15.571491" cy="2.9585190" cx="15.571491" id="radialGradient4250" xlink:href="#linearGradient4244" inkscape:collect="always"/>
<linearGradient gradientUnits="userSpaceOnUse" y2="47.620636" x2="44.096100" y1="4.4331360" x1="12.378357" id="linearGradient4260" xlink:href="#linearGradient4254" inkscape:collect="always" gradientTransform="translate(0.000000,5.125000)"/>
<radialGradient gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.000000,0.000000,0.000000,0.651032,-2.885063e-16,9.455693)" r="23.555494" fy="27.096155" fx="23.201941" cy="27.096155" cx="23.201941" id="radialGradient4270" xlink:href="#linearGradient4264" inkscape:collect="always"/>
<linearGradient gradientUnits="userSpaceOnUse" y2="26.357183" x2="23.688078" y1="11.318835" x1="23.688078" id="linearGradient4272" xlink:href="#linearGradient4274" inkscape:collect="always" gradientTransform="translate(0.000000,5.125000)"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient2555" id="linearGradient2553" x1="33.431175" y1="31.964777" x2="21.747974" y2="11.780679" gradientUnits="userSpaceOnUse"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient6901" id="linearGradient6907" x1="14.751649" y1="15.868432" x2="8.8953285" y2="16.743431" gradientUnits="userSpaceOnUse"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient6925" id="linearGradient6931" x1="12.25" y1="18.25" x2="7" y2="21.118431" gradientUnits="userSpaceOnUse"/>
</defs>
<sodipodi:namedview inkscape:window-y="178" inkscape:window-x="462" inkscape:window-height="907" inkscape:window-width="999" inkscape:document-units="px" inkscape:grid-bbox="true" showgrid="true" inkscape:current-layer="layer1" inkscape:cy="11.891468" inkscape:cx="28.318495" inkscape:zoom="16" inkscape:pageshadow="2" inkscape:pageopacity="0.0" borderopacity="0.22745098" bordercolor="#666666" pagecolor="#ffffff" id="base" inkscape:showpageshadow="false" fill="#3465a4" stroke="#204a87"/>
<metadata id="metadata4">
<rdf:RDF>
<cc:Work rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
<dc:title>Save</dc:title>
<dc:creator>
<cc:Agent>
<dc:title>Jakub Steiner</dc:title>
</cc:Agent>
</dc:creator>
<dc:subject>
<rdf:Bag>
<rdf:li>hdd</rdf:li>
<rdf:li>hard drive</rdf:li>
<rdf:li>save</rdf:li>
<rdf:li>io</rdf:li>
<rdf:li>store</rdf:li>
</rdf:Bag>
</dc:subject>
<cc:license rdf:resource="http://creativecommons.org/licenses/by-sa/2.0/"/>
<dc:identifier/>
<dc:source>http://jimmac.musichall.cz</dc:source>
</cc:Work>
<cc:License rdf:about="http://creativecommons.org/licenses/by-sa/2.0/">
<cc:permits rdf:resource="http://web.resource.org/cc/Reproduction"/>
<cc:permits rdf:resource="http://web.resource.org/cc/Distribution"/>
<cc:requires rdf:resource="http://web.resource.org/cc/Notice"/>
<cc:requires rdf:resource="http://web.resource.org/cc/Attribution"/>
<cc:permits rdf:resource="http://web.resource.org/cc/DerivativeWorks"/>
<cc:requires rdf:resource="http://web.resource.org/cc/ShareAlike"/>
</cc:License>
</rdf:RDF>
</metadata>
<g inkscape:label="pix" id="layer2" inkscape:groupmode="layer">
<path transform="matrix(1.052533,0.000000,0.000000,0.363113,-0.511757,31.99486)" d="M 46.757435 27.096155 A 23.555494 15.335379 0 1 1 -0.35355377,27.096155 A 23.555494 15.335379 0 1 1 46.757435 27.096155 z" sodipodi:ry="15.335379" sodipodi:rx="23.555494" sodipodi:cy="27.096155" sodipodi:cx="23.201941" id="path4262" style="opacity:0.56000001;color:#000000;fill:url(#radialGradient4270);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" sodipodi:type="arc"/>
<path sodipodi:nodetypes="cccsccccccccc" id="path4196" d="M 11.28569,13.087628 C 10.66069,13.087628 10.254441,13.377808 10.004442,13.931381 C 10.004441,13.931381 3.5356915,31.034938 3.5356915,31.034938 C 3.5356915,31.034938 3.2856915,31.706497 3.2856915,32.816188 C 3.2856915,32.816188 3.2856915,42.466156 3.2856915,42.466156 C 3.2856915,43.548769 3.943477,44.091158 4.9419415,44.091156 L 43.50444,44.091156 C 44.489293,44.091156 45.09819,43.372976 45.09819,42.247406 L 45.09819,32.597438 C 45.09819,32.597438 45.204153,31.827015 45.00444,31.284938 L 38.28569,14.087631 C 38.101165,13.575725 37.648785,13.099533 37.16069,13.087628 L 11.28569,13.087628 z " style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#535353;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path sodipodi:nodetypes="ccccccccc" id="path4170" d="M 3.2735915,32.121812 L 4.0381936,31.429597 L 41.647883,31.492097 L 45.11029,31.809395 L 45.11029,42.247927 C 45.11029,43.373496 44.503272,44.091258 43.518419,44.091258 L 4.9354314,44.091258 C 3.9369667,44.091258 3.2735915,43.549207 3.2735915,42.466594 L 3.2735915,32.121812 z " style="fill:url(#linearGradient4234);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.02044296px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"/>
<path sodipodi:nodetypes="csccccccs" id="path3093" d="M 3.5490842,31.039404 C 2.8347985,32.50369 3.5484686,33.432261 4.5847985,33.432261 C 4.5847985,33.432261 43.584797,33.432261 43.584797,33.432261 C 44.703844,33.408451 45.430035,32.420356 45.013368,31.289403 L 38.299082,14.078704 C 38.114558,13.566798 37.64432,13.090606 37.156225,13.078701 L 11.299083,13.078701 C 10.674083,13.078701 10.263369,13.382274 10.01337,13.935847 C 10.01337,13.935847 3.5490842,31.039404 3.5490842,31.039404 z " style="fill:url(#radialGradient4250);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"/>
<rect y="36.299183" x="7.857996" height="5.5625" width="17.625" id="rect4174" style="opacity:1;color:#000000;fill:url(#linearGradient4209);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.40899992;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"/>
<path sodipodi:nodetypes="cscc" id="path4194" d="M 7.8579947,41.86168 C 7.8579947,41.86168 7.8579947,37.850195 7.8579947,37.850195 C 9.6935221,41.029421 16.154485,41.86168 20.795492,41.86168 C 20.795492,41.86168 7.8579947,41.86168 7.8579947,41.86168 z " style="opacity:0.81142853;fill:url(#linearGradient4242);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"/>
<path sodipodi:nodetypes="cccccccc" id="path4201" d="M 44.796162,30.753688 C 44.859684,32.003662 44.382159,33.069528 43.474046,33.097438 C 43.474046,33.097438 5.3553296,33.097437 5.3553297,33.097438 C 4.0660978,33.097438 3.4875937,32.772491 3.271279,32.229382 C 3.3630404,33.173714 4.0970964,33.878688 5.3553297,33.878688 C 5.3553296,33.878687 43.474046,33.878688 43.474046,33.878688 C 44.550053,33.845617 45.226851,32.454664 44.82621,30.883897 L 44.796162,30.753688 z " style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"/>
<path id="path4211" d="M 10.96875,15.28125 C 10.922675,15.481571 10.78125,15.668047 10.78125,15.875 C 10.78125,16.823605 11.37223,17.664474 12.125,18.46875 C 12.365268,18.314675 12.490117,18.114342 12.75,17.96875 C 11.809691,17.152746 11.196604,16.252168 10.96875,15.28125 z M 37.625,15.28125 C 37.396273,16.250866 36.782988,17.153676 35.84375,17.96875 C 36.117894,18.122332 36.247738,18.33699 36.5,18.5 C 37.257262,17.693344 37.8125,16.826956 37.8125,15.875 C 37.8125,15.668047 37.670906,15.481571 37.625,15.28125 z M 39.8125,23.71875 C 39.198709,27.758861 32.513887,30.96875 24.28125,30.96875 C 16.068996,30.968751 9.4211001,27.775964 8.78125,23.75 C 8.7488928,23.947132 8.65625,24.141882 8.65625,24.34375 C 8.6562503,28.661697 15.645354,32.187501 24.28125,32.1875 C 32.917146,32.1875 39.937499,28.661698 39.9375,24.34375 C 39.9375,24.130826 39.848449,23.926394 39.8125,23.71875 z " style="opacity:0.69142857;color:#000000;fill:url(#linearGradient4272);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"/>
<path transform="translate(8.838843e-2,5.301780)" d="M 8.5736699 25.593554 A 1.3700194 1.016466 0 1 1 5.833631,25.593554 A 1.3700194 1.016466 0 1 1 8.5736699 25.593554 z" sodipodi:ry="1.016466" sodipodi:rx="1.3700194" sodipodi:cy="25.593554" sodipodi:cx="7.2036505" id="path4224" style="opacity:1;color:#000000;fill:#ffffff;fill-opacity:0.45762706;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" sodipodi:type="arc"/>
<path sodipodi:type="arc" style="opacity:1;color:#000000;fill:#ffffff;fill-opacity:0.45762706;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" id="path4226" sodipodi:cx="7.2036505" sodipodi:cy="25.593554" sodipodi:rx="1.3700194" sodipodi:ry="1.016466" d="M 8.5736699 25.593554 A 1.3700194 1.016466 0 1 1 5.833631,25.593554 A 1.3700194 1.016466 0 1 1 8.5736699 25.593554 z" transform="translate(33.96705,5.213390)"/>
<path style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient4260);stroke-width:1.00000024;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 11.642515,13.540723 C 11.040823,13.540723 10.649724,13.820081 10.409049,14.35301 C 10.409048,14.35301 3.9940341,30.943732 3.9940341,30.943732 C 3.9940341,30.943732 3.7533573,31.590247 3.7533573,32.658555 C 3.7533573,32.658555 3.7533573,41.948651 3.7533573,41.948651 C 3.7533573,43.303391 4.1974134,43.57555 5.3478414,43.57555 L 43.034746,43.57555 C 44.357872,43.57555 44.569062,43.259153 44.569062,41.738058 L 44.569062,32.447962 C 44.569062,32.447962 44.671072,31.706271 44.478807,31.184409 L 37.885616,14.378434 C 37.707973,13.885617 37.334964,13.552184 36.865071,13.540723 L 11.642515,13.540723 z " id="path4252" sodipodi:nodetypes="cccsccccccccc"/>
<path style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.00000048px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:0.42372885" d="M 40.5,36.554166 L 40.5,41.575101" id="path4282"/>
<path id="path4284" d="M 38.5,36.613943 L 38.5,41.634878" style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.00000048px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:0.42372885"/>
<path style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.00000048px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:0.42372885" d="M 36.5,36.613943 L 36.5,41.634878" id="path4286"/>
<path id="path4288" d="M 34.5,36.613943 L 34.5,41.634878" style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.00000048px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:0.42372885"/>
<path style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.00000048px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:0.42372885" d="M 32.5,36.613943 L 32.5,41.634878" id="path4290"/>
<path id="path4292" d="M 30.5,36.613943 L 30.5,41.634878" style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.00000048px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:0.42372885"/>
<path id="path4294" d="M 39.5,36.604065 L 39.5,41.625" style="opacity:0.09714284;fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000048px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"/>
<path style="opacity:0.09714284;fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000048px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" d="M 37.5,36.663842 L 37.5,41.684777" id="path4296"/>
<path id="path4298" d="M 35.5,36.663842 L 35.5,41.684777" style="opacity:0.09714284;fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000048px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"/>
<path style="opacity:0.09714284;fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000048px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" d="M 33.5,36.663842 L 33.5,41.684777" id="path4300"/>
<path id="path4302" d="M 31.5,36.663842 L 31.5,41.684777" style="opacity:0.09714284;fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000048px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"/>
<path id="path4572" d="M 7.875,36.3125 L 7.875,41.84375 L 20.4375,41.84375 L 8.21875,41.5 L 7.875,36.3125 z " style="opacity:0.43999999;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"/>
<path sodipodi:type="arc" style="opacity:0.20571427;color:#000000;fill:url(#linearGradient2553);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.93365198;stroke-linecap:square;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.42372879;visibility:visible;display:inline;overflow:visible" id="path2545" sodipodi:cx="25" sodipodi:cy="19.5625" sodipodi:rx="14.875" sodipodi:ry="6.6875" d="M 39.875 19.5625 A 14.875 6.6875 0 1 1 10.125,19.5625 A 14.875 6.6875 0 1 1 39.875 19.5625 z" transform="matrix(1.037815,0.000000,0.000000,1.060747,-1.632878,3.030370)"/>
</g>
<g inkscape:groupmode="layer" id="layer1" inkscape:label="down">
<path transform="matrix(1.130190,1.178179e-16,7.918544e-17,-0.759601,-3.909725,53.66554)" d="M 40.481863 36.421127 A 15.644737 8.3968935 0 1 1 9.1923885,36.421127 A 15.644737 8.3968935 0 1 1 40.481863 36.421127 z" sodipodi:ry="8.3968935" sodipodi:rx="15.644737" sodipodi:cy="36.421127" sodipodi:cx="24.837126" id="path8660" style="opacity:0.14117647;color:#000000;fill:url(#radialGradient8668);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" sodipodi:type="arc"/>
<path style="opacity:1;color:#000000;fill:url(#linearGradient6907);fill-opacity:1.0;fill-rule:nonzero;stroke:url(#linearGradient6931);stroke-width:0.99999982;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:block;overflow:visible" d="M 3.2034501,25.835194 C 2.1729477,-5.3853369 28.741616,-0.4511153 28.582416,15.788689 L 35.89533,15.788689 L 24.517652,28.774671 L 12.585426,15.788689 C 12.585426,15.788689 20.126859,15.788689 20.126859,15.788689 C 20.583921,4.8193225 3.4092324,1.6100346 3.2034501,25.835194 z " id="path1432" sodipodi:nodetypes="ccccccc"/>
<path sodipodi:nodetypes="ccccccc" id="path2177" d="M 7.6642103,9.1041047 C 12.40638,-0.0400306 28.122336,2.7175443 27.761604,16.579393 L 34.078976,16.579393 C 34.078976,16.579393 24.513151,27.536769 24.513151,27.536769 L 14.41668,16.579393 C 14.41668,16.579393 20.87332,16.579393 20.87332,16.579393 C 21.144975,5.0041615 10.922265,5.5345215 7.6642103,9.1041047 z " style="opacity:0.47159091;color:#000000;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient1764);stroke-width:0.99999934;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:block;overflow:visible"/>
<path style="opacity:0.49431817;color:#000000;fill:url(#radialGradient4997);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.9999997;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" d="M 34.767155,16.211613 L 32.782979,18.757322 C 27.372947,17.241029 24.896829,21.486664 17.109284,20.489112 L 13.247998,16.080077 L 20.434468,16.162862 C 20.483219,4.3164571 8.3443098,4.998966 5.0292663,13.627829 C 8.8372201,-1.2611216 27.893316,0.8064118 28.28332,16.114112 L 34.767155,16.211613 z " id="path4989" sodipodi:nodetypes="cccccccc"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 23 KiB

View File

@ -0,0 +1,57 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://web.resource.org/cc/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" width="48.000000px" height="48.000000px" id="svg1306" sodipodi:version="0.32" inkscape:version="0.42" sodipodi:docbase="/home/andreas/projekt/tango/scalable" sodipodi:docname="edit-delete.svg" inkscape:export-filename="/home/andreas/projekt/tango/22/delete.png" inkscape:export-xdpi="90.000000" inkscape:export-ydpi="90.000000">
<defs id="defs1308">
<linearGradient inkscape:collect="always" id="linearGradient2251">
<stop style="stop-color:#ef2929" offset="0" id="stop2253"/>
<stop style="stop-color:#cc0000" offset="1" id="stop2255"/>
</linearGradient>
<linearGradient id="linearGradient4126" inkscape:collect="always">
<stop id="stop4128" offset="0" style="stop-color:#000000;stop-opacity:1;"/>
<stop id="stop4130" offset="1" style="stop-color:#000000;stop-opacity:0;"/>
</linearGradient>
<radialGradient r="17.142857" fy="40.000000" fx="23.857143" cy="40.000000" cx="23.857143" gradientTransform="matrix(1.000000,0.000000,0.000000,0.500000,1.635742e-14,20.00000)" gradientUnits="userSpaceOnUse" id="radialGradient7449" xlink:href="#linearGradient4126" inkscape:collect="always"/>
<radialGradient inkscape:collect="always" xlink:href="#linearGradient2251" id="radialGradient2257" cx="20.935379" cy="12.592707" fx="20.935379" fy="12.592707" r="19.967958" gradientTransform="matrix(-1.262871,2.796553e-2,-3.606716e-2,-1.629656,47.36662,36.49787)" gradientUnits="userSpaceOnUse"/>
<radialGradient inkscape:collect="always" xlink:href="#linearGradient4126" id="radialGradient2275" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.000000,0.000000,0.000000,0.500000,1.713935e-14,20.00000)" cx="23.857143" cy="40.000000" fx="23.857143" fy="40.000000" r="17.142857"/>
<radialGradient inkscape:collect="always" xlink:href="#linearGradient2251" id="radialGradient2277" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-0.618549,1.369740e-2,-1.766555e-2,-0.798198,22.46266,17.62692)" cx="20.935379" cy="12.592707" fx="20.935379" fy="12.592707" r="19.967958"/>
</defs>
<sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="14.000000" inkscape:cx="27.981306" inkscape:cy="29.284234" inkscape:current-layer="layer1" showgrid="true" inkscape:grid-bbox="true" inkscape:document-units="px" fill="#73d216" stroke="#a40000" inkscape:window-width="1280" inkscape:window-height="949" inkscape:window-x="0" inkscape:window-y="25" showguides="true" inkscape:guide-bbox="true"/>
<metadata id="metadata1311">
<rdf:RDF>
<cc:Work rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
<dc:title>Delete</dc:title>
<dc:date>2005-12-28</dc:date>
<dc:creator>
<cc:Agent>
<dc:title>Andreas Nilsson</dc:title>
</cc:Agent>
</dc:creator>
<dc:source>http://tango-project.org</dc:source>
<dc:subject>
<rdf:Bag>
<rdf:li>delete</rdf:li>
<rdf:li>remove</rdf:li>
</rdf:Bag>
</dc:subject>
<cc:license rdf:resource="http://creativecommons.org/licenses/by-sa/2.0/"/>
</cc:Work>
<cc:License rdf:about="http://creativecommons.org/licenses/by-sa/2.0/">
<cc:permits rdf:resource="http://web.resource.org/cc/Reproduction"/>
<cc:permits rdf:resource="http://web.resource.org/cc/Distribution"/>
<cc:requires rdf:resource="http://web.resource.org/cc/Notice"/>
<cc:requires rdf:resource="http://web.resource.org/cc/Attribution"/>
<cc:permits rdf:resource="http://web.resource.org/cc/DerivativeWorks"/>
<cc:requires rdf:resource="http://web.resource.org/cc/ShareAlike"/>
</cc:License>
</rdf:RDF>
</metadata>
<g id="layer1" inkscape:label="Layer 1" inkscape:groupmode="layer">
<path transform="matrix(1.225000,0.000000,0.000000,0.408334,-5.221224,25.17622)" d="M 41.000000 40.000000 A 17.142857 8.5714283 0 1 1 6.7142868,40.000000 A 17.142857 8.5714283 0 1 1 41.000000 40.000000 z" sodipodi:ry="8.5714283" sodipodi:rx="17.142857" sodipodi:cy="40.000000" sodipodi:cx="23.857143" id="path6548" style="opacity:0.52688169;color:#000000;fill:url(#radialGradient7449);fill-opacity:1.0000000;fill-rule:nonzero;stroke:none;stroke-width:1.0000000;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10.000000;stroke-dasharray:none;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;visibility:visible;display:block;overflow:visible" sodipodi:type="arc"/>
<path style="opacity:1.0000000;fill:url(#radialGradient2257);fill-opacity:1.0000000;stroke:#a40000;stroke-width:0.99999982;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000" d="M 24.035816,3.5720836 C 13.289574,3.5720836 4.5678570,12.294146 4.5678580,23.040834 C 4.5678580,33.787521 13.289575,42.509583 24.035816,42.509584 C 34.782058,42.509584 43.503776,33.787520 43.503775,23.040834 C 43.503775,12.294147 34.782058,3.5720836 24.035816,3.5720836 z M 24.004517,8.4783336 C 32.049892,8.4783336 38.589837,14.990984 38.589837,23.009584 C 38.589837,25.981868 37.657973,28.737374 36.117218,31.040834 L 15.960683,10.915834 C 18.272680,9.3813936 21.022553,8.4783336 24.004517,8.4783336 z M 12.267404,14.447084 L 32.580435,34.728334 C 30.166684,36.490827 27.221538,37.540834 24.004517,37.540834 C 15.959141,37.540834 9.4191980,31.028184 9.4191980,23.009584 C 9.4191980,19.803270 10.497961,16.851741 12.267404,14.447084 z " id="path1314"/>
<path sodipodi:type="arc" style="opacity:0.55376345;fill:none;fill-opacity:1.0000000;stroke:#ffffff;stroke-width:0.98682600;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000" id="path2242" sodipodi:cx="28.357143" sodipodi:cy="27.214285" sodipodi:rx="18.357143" sodipodi:ry="18.142857" d="M 46.714287 27.214285 A 18.357143 18.142857 0 1 1 10.000000,27.214285 A 18.357143 18.142857 0 1 1 46.714287 27.214285 z" transform="matrix(1.007576,0.000000,0.000000,1.019157,-4.568194,-4.726048)"/>
<path style="opacity:0.47849461;fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.0000000px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1.0000000" d="M 15.075203,11.366727 L 35.646632,31.938156" id="path2261" sodipodi:nodetypes="cc"/>
<path style="opacity:0.30645159;fill:#ffffff;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" d="M 4.4323460,19.795298 C 4.4561550,21.985774 9.8371077,20.461965 9.8609167,21.652441 C 9.8132977,19.842917 11.837108,15.961965 12.289489,15.152441 L 20.932346,23.509584 C 20.884728,21.771489 27.122823,23.390537 27.003776,21.509584 L 16.718061,10.866727 C 18.241871,10.081013 21.837109,8.7952976 24.075204,8.9381546 C 32.313299,9.1524406 38.051394,16.795298 38.075204,22.009584 L 37.503775,27.009584 C 37.384727,28.866727 43.337108,26.795298 43.146632,28.295298 C 43.551394,27.152441 44.027584,24.795298 43.932346,22.081013 C 43.884727,12.438155 35.765679,3.3667266 24.003775,3.1524406 C 15.420441,3.2833936 8.4978220,8.1822026 6.1287740,14.661370 C 5.9933010,14.694830 4.6585360,16.842917 4.4323460,19.795298 z " id="path2263" sodipodi:nodetypes="cccccccccccccc"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 7.9 KiB

View File

@ -0,0 +1,109 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://web.resource.org/cc/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" width="48px" height="48px" id="svg1306" sodipodi:version="0.32" inkscape:version="0.45" sodipodi:docbase="/home/dobey/Projects/gnome-icon-theme/scalable/mimetypes" sodipodi:docname="image-x-generic.svg" inkscape:output_extension="org.inkscape.output.svg.inkscape">
<defs id="defs1308">
<linearGradient inkscape:collect="always" id="linearGradient5060">
<stop style="stop-color:black;stop-opacity:1;" offset="0" id="stop5062"/>
<stop style="stop-color:black;stop-opacity:0;" offset="1" id="stop5064"/>
</linearGradient>
<linearGradient id="linearGradient5048">
<stop style="stop-color:black;stop-opacity:0;" offset="0" id="stop5050"/>
<stop id="stop5056" offset="0.5" style="stop-color:black;stop-opacity:1;"/>
<stop style="stop-color:black;stop-opacity:0;" offset="1" id="stop5052"/>
</linearGradient>
<linearGradient inkscape:collect="always" id="linearGradient6431">
<stop style="stop-color:#ffffff;stop-opacity:1;" offset="0" id="stop6433"/>
<stop style="stop-color:#ffffff;stop-opacity:0;" offset="1" id="stop6435"/>
</linearGradient>
<linearGradient inkscape:collect="always" id="linearGradient6390">
<stop style="stop-color:#ffffff;stop-opacity:1" offset="0" id="stop6392"/>
<stop style="stop-color:#ffffff;stop-opacity:0;" offset="1" id="stop6394"/>
</linearGradient>
<linearGradient id="linearGradient6374">
<stop style="stop-color:#555753;stop-opacity:1;" offset="0" id="stop6376"/>
<stop style="stop-color:#888a85;stop-opacity:1" offset="1" id="stop6378"/>
</linearGradient>
<linearGradient inkscape:collect="always" id="linearGradient6366">
<stop style="stop-color:#ffffff;stop-opacity:1;" offset="0" id="stop6368"/>
<stop style="stop-color:#ffffff;stop-opacity:0;" offset="1" id="stop6370"/>
</linearGradient>
<linearGradient id="linearGradient6327">
<stop style="stop-color:#888a85;stop-opacity:1" offset="0" id="stop6329"/>
<stop style="stop-color:#eeeeec;stop-opacity:1" offset="1" id="stop6331"/>
</linearGradient>
<linearGradient inkscape:collect="always" id="linearGradient4616">
<stop style="stop-color:#2e3436;stop-opacity:1;" offset="0" id="stop4618"/>
<stop style="stop-color:#2e3436;stop-opacity:0;" offset="1" id="stop4620"/>
</linearGradient>
<linearGradient id="linearGradient4928">
<stop id="stop4930" offset="0" style="stop-color:#fce94f;stop-opacity:1;"/>
<stop id="stop4932" offset="1" style="stop-color:#fce94f;stop-opacity:0;"/>
</linearGradient>
<linearGradient inkscape:collect="always" id="linearGradient2065">
<stop style="stop-color:#555753" offset="0" id="stop2067"/>
<stop style="stop-color:#fcaf3e" offset="1" id="stop2069"/>
</linearGradient>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient2065" id="linearGradient2071" x1="-11.986486" y1="13.122552" x2="-11.986486" y2="29.726542" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.1141976,0,0,1.1666667,37.36883,-3.916667)"/>
<radialGradient inkscape:collect="always" xlink:href="#linearGradient4928" id="radialGradient4915" cx="-6.0070167" cy="32.837029" fx="-6.0070167" fy="32.837029" r="9.90625" gradientTransform="matrix(1,-1.487184e-8,1.425535e-8,0.958546,22.7158,2.575973)" gradientUnits="userSpaceOnUse"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient4616" id="linearGradient4622" x1="25.355263" y1="33.654644" x2="25.355263" y2="32.409008" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.117647,0,0,1.5,-2.8235294,-15.5)"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient6327" id="linearGradient6333" x1="42.999424" y1="36.811924" x2="40.621296" y2="34.433796" gradientUnits="userSpaceOnUse"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient6327" id="linearGradient6360" x1="61.18124" y1="137.97644" x2="20.420683" y2="2.6749926" gradientUnits="userSpaceOnUse"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient6366" id="linearGradient6372" x1="40.941582" y1="37.639805" x2="35.496311" y2="32.194534" gradientUnits="userSpaceOnUse"/>
<radialGradient inkscape:collect="always" xlink:href="#linearGradient6374" id="radialGradient6382" cx="39.437065" cy="34.33852" fx="39.437065" fy="34.33852" r="6" gradientTransform="matrix(0.1875,-1.053432,0.7180811,0.127811,7.8227088,71.030427)" gradientUnits="userSpaceOnUse"/>
<radialGradient inkscape:collect="always" xlink:href="#linearGradient6390" id="radialGradient6396" cx="20.236877" cy="25.043303" fx="20.236877" fy="25.043303" r="22" gradientTransform="matrix(0.9409062,-0.2066504,0.109821,0.5000295,-1.5544064,13.219564)" gradientUnits="userSpaceOnUse"/>
<radialGradient inkscape:collect="always" xlink:href="#linearGradient6431" id="radialGradient6437" cx="40.179535" cy="34.080399" fx="40.179535" fy="34.080399" r="4.125" gradientTransform="matrix(1,0,0,0.9356061,0,2.3071141)" gradientUnits="userSpaceOnUse"/>
<radialGradient inkscape:collect="always" xlink:href="#linearGradient5060" id="radialGradient6909" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-1.6064769e-2,0,0,7.4117646e-2,11.681601,-1.1750779)" cx="605.71429" cy="486.64789" fx="605.71429" fy="486.64789" r="117.14286"/>
<radialGradient inkscape:collect="always" xlink:href="#linearGradient5060" id="radialGradient6912" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.1044211,0,0,7.4117646e-2,-27.930451,-1.1750779)" cx="605.71429" cy="486.64789" fx="605.71429" fy="486.64789" r="117.14286"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient5048" id="linearGradient6915" gradientUnits="userSpaceOnUse" gradientTransform="matrix(6.8343196e-2,0,0,7.4117646e-2,-6.2011835,-1.1750779)" x1="302.85715" y1="366.64789" x2="302.85715" y2="609.50507"/>
</defs>
<sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="1" inkscape:cx="39.08644" inkscape:cy="16.34396" inkscape:current-layer="layer1" showgrid="false" inkscape:grid-bbox="true" inkscape:document-units="px" fill="#fcaf3e" stroke="#555753" showguides="true" inkscape:guide-bbox="false" inkscape:window-width="895" inkscape:window-height="760" inkscape:window-x="208" inkscape:window-y="229" inkscape:showpageshadow="false" showborder="false" gridspacingx="0.5px" gridspacingy="0.5px" gridempspacing="2" inkscape:grid-points="false" gridtolerance="50" inkscape:object-paths="false"/>
<metadata id="metadata1311">
<rdf:RDF>
<cc:Work rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
<dc:title>Generic Image</dc:title>
<dc:creator>
<cc:Agent>
<dc:title>Lapo Calamandrei</dc:title>
</cc:Agent>
</dc:creator>
<dc:source>http://www.gnome.org</dc:source>
<dc:contributor>
<cc:Agent>
<dc:title>Jakub Steiner, Andreas Nilsson</dc:title>
</cc:Agent>
</dc:contributor>
<cc:license rdf:resource="http://creativecommons.org/licenses/GPL/2.0/"/>
</cc:Work>
<cc:License rdf:about="http://creativecommons.org/licenses/GPL/2.0/">
<cc:permits rdf:resource="http://web.resource.org/cc/Reproduction"/>
<cc:permits rdf:resource="http://web.resource.org/cc/Distribution"/>
<cc:requires rdf:resource="http://web.resource.org/cc/Notice"/>
<cc:permits rdf:resource="http://web.resource.org/cc/DerivativeWorks"/>
<cc:requires rdf:resource="http://web.resource.org/cc/ShareAlike"/>
<cc:requires rdf:resource="http://web.resource.org/cc/SourceCode"/>
</cc:License>
</rdf:RDF>
</metadata>
<g id="layer1" inkscape:label="Layer 1" inkscape:groupmode="layer">
<g id="g6917">
<rect y="26" x="2" height="18" width="33" id="rect6057" style="opacity:0.39195981;color:#000000;fill:url(#linearGradient6915);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"/>
<path sodipodi:nodetypes="ccscc" id="path6059" d="M 35,26.00062 C 35,26.00062 35,43.999627 35,43.999627 C 37.30962,44.01418 40.033409,43.272315 42.389531,42.027493 C 45.519106,40.37403 48.000002,37.833194 48,34.998965 C 48,30.030967 41.999197,26.000621 35,26.00062 z " style="opacity:0.40206185;color:#000000;fill:url(#radialGradient6912);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"/>
<path style="opacity:0.40206185;color:#000000;fill:url(#radialGradient6909);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" d="M 2,26.00062 C 2,26.00062 2,43.999627 2,43.999627 C 1.172704,44.03351 1.3577825e-06,39.966963 1.3577825e-06,34.998965 C 1.3577825e-06,30.030967 0.92320113,26.000621 2,26.00062 z " id="path6061" sodipodi:nodetypes="cccc"/>
</g>
<path style="fill:url(#linearGradient6360);fill-opacity:1.0;stroke:#888a85;stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" d="M 2.767767,6.5 L 45.232237,6.5 C 45.93458,6.5 46.500004,7.0654241 46.500004,7.767767 L 46.5,30.5 C 46.5,31.202343 36.202343,40.5 35.5,40.5 L 2.767767,40.5 C 2.0654241,40.5 1.5,39.934576 1.5,39.232233 L 1.5,7.767767 C 1.5,7.0654241 2.0654241,6.5 2.767767,6.5 z " id="rect5350" sodipodi:nodetypes="ccccccccc"/>
<path style="fill:url(#linearGradient2071);fill-opacity:1;stroke:#888a85;stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" d="M 4.9874617,9.5 L 43.039565,9.5 C 43.309619,9.5 43.527027,9.7276458 43.527027,10.010417 L 43.527027,33.989583 L 40.039565,37.5 L 4.9874617,37.5 C 4.7174079,37.5 4.5,37.272354 4.5,36.989583 L 4.5,10.010417 C 4.5,9.7276458 4.7174079,9.5 4.9874617,9.5 z " id="rect2063" sodipodi:nodetypes="ccccccccc"/>
<path style="opacity:1;color:#000000;fill:url(#radialGradient4915);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" d="M 16.083789,23.551777 C 10.91501,23.879732 6.8025384,28.206965 6.8025384,33.458027 C 6.8025384,33.660812 6.8217484,33.852002 6.8337884,34.051777 L 26.583789,34.051777 C 26.59583,33.852002 26.615039,33.660812 26.615039,33.458027 C 26.615039,27.993506 22.17331,23.551777 16.708789,23.551777 C 16.495331,23.551777 16.293902,23.538446 16.083789,23.551777 z " id="path4898" inkscape:r_cx="true" inkscape:r_cy="true"/>
<rect style="opacity:1;fill:url(#linearGradient4622);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" id="rect1324" width="38" height="3" x="5" y="34" rx="0" ry="0"/>
<path style="opacity:0.81896548;fill:url(#linearGradient6372);fill-opacity:1;stroke:none;stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" d="M 14.78125,40 L 35.40625,40 C 35.41645,39.995518 35.423208,39.996022 35.46875,39.96875 C 35.559833,39.914206 35.707858,39.809986 35.875,39.6875 C 36.209283,39.442528 36.659837,39.093896 37.1875,38.65625 C 38.242827,37.780957 39.61066,36.608491 40.9375,35.40625 C 42.26434,34.204009 43.563777,32.96157 44.53125,32 C 45.014987,31.519215 45.417906,31.118778 45.6875,30.8125 C 45.822297,30.659361 45.910802,30.519277 45.96875,30.4375 C 45.983237,30.417056 45.991685,30.419536 46,30.40625 L 46,13.78125 L 14.78125,40 z " id="path6364" sodipodi:nodetypes="ccsssssssccc"/>
<path style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="M 29.555584,34.972272 C 29.555584,34.972272 29,31.732526 29,29.747801 C 29.015409,28.842396 36.786707,21.788999 36.806757,20.738368 L 35,22.392753 L 33.734835,18.776232 L 38,19.24059 L 40,17.139148 L 37.734835,18.886405 L 36.955806,18.700662 L 36,15.037705 L 36.486136,18.607791 L 32.955806,18.422048 L 34.06066,21.376634 L 31,18.189869 L 34.237437,22.62545 C 34.237522,23.614733 27.856563,29.653936 27.867417,28.612599 L 25.220971,24.882982 L 25,19.841002 L 27,19.24059 L 28.752155,14.700822 L 26.442435,18.896683 L 24.639267,18.810834 L 20.602879,15.228917 L 15.06066,13 L 19.795495,15.734242 L 16,16.088427 L 21,16.088427 L 24,19.24059 L 24.353553,24.685407 L 19,19.24059 L 21.251301,22.085004 L 18,24.494195 L 21.571429,22.392753 L 27.220971,29.869807 L 27,34.972272 L 29.555584,34.972272 z " id="path2079" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccc"/>
<path inkscape:r_cy="true" inkscape:r_cx="true" id="path4924" d="M 16.367734,28.233668 C 13.547195,28.412629 11.30307,30.773947 11.30307,33.639387 C 11.30307,33.750044 11.313552,33.854374 11.320122,33.963389 L 22.097455,33.963389 C 22.104026,33.854374 22.114508,33.750044 22.114508,33.639387 C 22.114508,30.657465 19.690711,28.233668 16.708789,28.233668 C 16.592307,28.233668 16.48239,28.226393 16.367734,28.233668 z " style="opacity:1;color:#000000;fill:#fef39e;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"/>
<path style="opacity:1;color:#000000;fill:#fffbd7;fill-opacity:0.55681817;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" d="M 16.448682,29.531973 C 14.297594,29.668459 12.586109,31.469322 12.586109,33.654654 C 12.586109,33.739046 12.594104,33.818614 12.599114,33.901754 L 20.818463,33.901754 C 20.823474,33.818614 20.831469,33.739046 20.831469,33.654654 C 20.831469,31.380487 18.982957,29.531973 16.708789,29.531973 C 16.619954,29.531973 16.536126,29.526426 16.448682,29.531973 z " id="path4926" inkscape:r_cx="true" inkscape:r_cy="true"/>
<path style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" d="M 2.78125,7.5 C 2.6253137,7.5 2.5,7.6253137 2.5,7.78125 L 2.5,39.21875 C 2.5,39.374686 2.6253136,39.5 2.78125,39.5 L 37.28125,39.5 C 40.921301,36.704635 42.365769,35.606734 45.5,32.25 L 45.5,7.78125 C 45.5,7.6253155 45.374683,7.5 45.21875,7.5 L 2.78125,7.5 z " id="path6351" sodipodi:nodetypes="ccccccccc"/>
<path style="fill:url(#linearGradient6333);fill-rule:evenodd;stroke:url(#radialGradient6382);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1;fill-opacity:1.0" d="M 46.5,30.5 C 46.5,35.5 40.5,40.5 35.5,40.5 C 35.5,40.5 39.932134,38.33738 39.5,33.5 C 43.879686,33.916135 46.5,30.5 46.5,30.5 z " id="path6322" sodipodi:nodetypes="cccc"/>
<path style="fill:url(#radialGradient6437);fill-opacity:1.0;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1;opacity:0.73275862" d="M 45.71875 31.96875 C 44.577589 32.932531 42.679856 34.08934 40.03125 34.03125 C 40.059733 36.774444 38.699098 38.58751 37.46875 39.6875 C 38.953141 38.706251 40.825166 37.371805 41.03125 35.03125 C 43.192381 35.027997 44.619214 33.310655 45.6875 32.03125 C 45.693038 32.009581 45.713422 31.990426 45.71875 31.96875 z " id="path6339"/>
<path style="fill:url(#radialGradient6396);fill-opacity:1.0;stroke:none;stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;opacity:0.34482759" d="M 2.78125,7 C 2.3536576,7 2,7.3536576 2,7.78125 L 2,31.09375 C 14.714701,22.184679 34.055102,15.625228 46,19.3125 L 46,7.78125 C 46,7.3536585 45.64634,7 45.21875,7 L 2.78125,7 z " id="path6384" sodipodi:nodetypes="ccccccc"/>
<path sodipodi:type="inkscape:offset" inkscape:radius="-1" inkscape:original="M 2.78125 6.5 C 2.0789071 6.5 1.5 7.0789071 1.5 7.78125 L 1.5 39.21875 C 1.5 39.921093 2.0789071 40.5 2.78125 40.5 L 35.5 40.5 C 40.5 40.5 46.5 35.5 46.5 30.5 L 46.5 7.78125 C 46.5 7.0789071 45.921091 6.5 45.21875 6.5 L 2.78125 6.5 z " style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;opacity:0.41810345" id="path6427" d="M 2.78125,7.5 C 2.628408,7.5 2.5,7.628408 2.5,7.78125 L 2.5,39.21875 C 2.5,39.371592 2.6284079,39.5 2.78125,39.5 L 35.5,39.5 C 37.666667,39.5 40.249358,38.362698 42.21875,36.625 C 44.188142,34.887302 45.5,32.6 45.5,30.5 L 45.5,7.78125 C 45.5,7.6284098 45.371589,7.5 45.21875,7.5 L 2.78125,7.5 z "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 18 KiB

View File

@ -0,0 +1,594 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="38"
height="48"
id="svg1306"
sodipodi:version="0.32"
inkscape:version="0.48.2 r9819"
sodipodi:docname="Gnome-image-x-generic.svg"
inkscape:output_extension="org.inkscape.output.svg.inkscape"
version="1.1">
<defs
id="defs1308">
<linearGradient
inkscape:collect="always"
id="linearGradient5060">
<stop
style="stop-color:black;stop-opacity:1;"
offset="0"
id="stop5062" />
<stop
style="stop-color:black;stop-opacity:0;"
offset="1"
id="stop5064" />
</linearGradient>
<linearGradient
id="linearGradient5048">
<stop
style="stop-color:black;stop-opacity:0;"
offset="0"
id="stop5050" />
<stop
id="stop5056"
offset="0.5"
style="stop-color:black;stop-opacity:1;" />
<stop
style="stop-color:black;stop-opacity:0;"
offset="1"
id="stop5052" />
</linearGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient6431">
<stop
style="stop-color:#ffffff;stop-opacity:1;"
offset="0"
id="stop6433" />
<stop
style="stop-color:#ffffff;stop-opacity:0;"
offset="1"
id="stop6435" />
</linearGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient6390">
<stop
style="stop-color:#ffffff;stop-opacity:1"
offset="0"
id="stop6392" />
<stop
style="stop-color:#ffffff;stop-opacity:0;"
offset="1"
id="stop6394" />
</linearGradient>
<linearGradient
id="linearGradient6374">
<stop
style="stop-color:#555753;stop-opacity:1;"
offset="0"
id="stop6376" />
<stop
style="stop-color:#888a85;stop-opacity:1"
offset="1"
id="stop6378" />
</linearGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient6366">
<stop
style="stop-color:#ffffff;stop-opacity:1;"
offset="0"
id="stop6368" />
<stop
style="stop-color:#ffffff;stop-opacity:0;"
offset="1"
id="stop6370" />
</linearGradient>
<linearGradient
id="linearGradient6327">
<stop
style="stop-color:#888a85;stop-opacity:1"
offset="0"
id="stop6329" />
<stop
style="stop-color:#eeeeec;stop-opacity:1"
offset="1"
id="stop6331" />
</linearGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient4616">
<stop
style="stop-color:#2e3436;stop-opacity:1;"
offset="0"
id="stop4618" />
<stop
style="stop-color:#2e3436;stop-opacity:0;"
offset="1"
id="stop4620" />
</linearGradient>
<linearGradient
id="linearGradient4928">
<stop
id="stop4930"
offset="0"
style="stop-color:#fce94f;stop-opacity:1;" />
<stop
id="stop4932"
offset="1"
style="stop-color:#fce94f;stop-opacity:0;" />
</linearGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient2065">
<stop
style="stop-color:#555753"
offset="0"
id="stop2067" />
<stop
style="stop-color:#fcaf3e"
offset="1"
id="stop2069" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2065"
id="linearGradient2071"
x1="-11.986486"
y1="13.122552"
x2="-11.986486"
y2="29.726542"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.1141976,0,0,1.1666667,37.36883,-3.916667)" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient4928"
id="radialGradient4915"
cx="-6.0070167"
cy="32.837029"
fx="-6.0070167"
fy="32.837029"
r="9.90625"
gradientTransform="matrix(1,-1.487184e-8,1.425535e-8,0.958546,22.7158,2.575973)"
gradientUnits="userSpaceOnUse" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient4616"
id="linearGradient4622"
x1="25.355263"
y1="33.654644"
x2="25.355263"
y2="32.409008"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.117647,0,0,1.5,-2.8235294,-15.5)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6327"
id="linearGradient6333"
x1="42.999424"
y1="36.811924"
x2="40.621296"
y2="34.433796"
gradientUnits="userSpaceOnUse" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6327"
id="linearGradient6360"
x1="61.18124"
y1="137.97644"
x2="20.420683"
y2="2.6749926"
gradientUnits="userSpaceOnUse" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6366"
id="linearGradient6372"
x1="40.941582"
y1="37.639805"
x2="35.496311"
y2="32.194534"
gradientUnits="userSpaceOnUse" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient6374"
id="radialGradient6382"
cx="39.437065"
cy="34.33852"
fx="39.437065"
fy="34.33852"
r="6"
gradientTransform="matrix(0.1875,-1.053432,0.7180811,0.127811,7.8227088,71.030427)"
gradientUnits="userSpaceOnUse" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient6390"
id="radialGradient6396"
cx="20.236877"
cy="25.043303"
fx="20.236877"
fy="25.043303"
r="22"
gradientTransform="matrix(0.9409062,-0.2066504,0.109821,0.5000295,-1.5544064,13.219564)"
gradientUnits="userSpaceOnUse" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient6431"
id="radialGradient6437"
cx="40.179535"
cy="34.080399"
fx="40.179535"
fy="34.080399"
r="4.125"
gradientTransform="matrix(1,0,0,0.9356061,0,2.3071141)"
gradientUnits="userSpaceOnUse" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient5060"
id="radialGradient6909"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(-0.01606477,0,0,0.07411765,11.681601,-1.1750779)"
cx="605.71429"
cy="486.64789"
fx="605.71429"
fy="486.64789"
r="117.14286" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient5060"
id="radialGradient6912"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.1044211,0,0,0.07411765,-27.930451,-1.1750779)"
cx="605.71429"
cy="486.64789"
fx="605.71429"
fy="486.64789"
r="117.14286" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient5048"
id="linearGradient6915"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.0683432,0,0,0.07411765,-6.2011835,-1.1750779)"
x1="302.85715"
y1="366.64789"
x2="302.85715"
y2="609.50507" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient5048"
id="linearGradient3154"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.0683432,0,0,0.07411765,-6.2011835,-1.1750779)"
x1="302.85715"
y1="366.64789"
x2="302.85715"
y2="609.50507" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient5060"
id="radialGradient3156"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.1044211,0,0,0.07411765,-27.930451,-1.1750779)"
cx="605.71429"
cy="486.64789"
fx="605.71429"
fy="486.64789"
r="117.14286" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient5060"
id="radialGradient3158"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(-0.01606477,0,0,0.07411765,11.681601,-1.1750779)"
cx="605.71429"
cy="486.64789"
fx="605.71429"
fy="486.64789"
r="117.14286" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6327"
id="linearGradient3160"
gradientUnits="userSpaceOnUse"
x1="61.18124"
y1="137.97644"
x2="20.420683"
y2="2.6749926" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2065"
id="linearGradient3162"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.1141976,0,0,1.1666667,37.36883,-3.916667)"
x1="-11.986486"
y1="13.122552"
x2="-11.986486"
y2="29.726542" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient4928"
id="radialGradient3164"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1,-1.487184e-8,1.425535e-8,0.958546,22.7158,2.575973)"
cx="-6.0070167"
cy="32.837029"
fx="-6.0070167"
fy="32.837029"
r="9.90625" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient4616"
id="linearGradient3166"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.117647,0,0,1.5,-2.8235294,-15.5)"
x1="25.355263"
y1="33.654644"
x2="25.355263"
y2="32.409008" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6366"
id="linearGradient3168"
gradientUnits="userSpaceOnUse"
x1="40.941582"
y1="37.639805"
x2="35.496311"
y2="32.194534" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6327"
id="linearGradient3170"
gradientUnits="userSpaceOnUse"
x1="42.999424"
y1="36.811924"
x2="40.621296"
y2="34.433796" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient6374"
id="radialGradient3172"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.1875,-1.053432,0.7180811,0.127811,7.8227088,71.030427)"
cx="39.437065"
cy="34.33852"
fx="39.437065"
fy="34.33852"
r="6" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient6431"
id="radialGradient3174"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1,0,0,0.9356061,0,2.3071141)"
cx="40.179535"
cy="34.080399"
fx="40.179535"
fy="34.080399"
r="4.125" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient6390"
id="radialGradient3176"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.9409062,-0.2066504,0.109821,0.5000295,-1.5544064,13.219564)"
cx="20.236877"
cy="25.043303"
fx="20.236877"
fy="25.043303"
r="22" />
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="8"
inkscape:cx="27.431006"
inkscape:cy="20.032848"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:grid-bbox="true"
inkscape:document-units="px"
fill="#fcaf3e"
stroke="#555753"
showguides="true"
inkscape:guide-bbox="false"
inkscape:window-width="895"
inkscape:window-height="760"
inkscape:window-x="208"
inkscape:window-y="242"
inkscape:showpageshadow="false"
showborder="false"
inkscape:grid-points="false"
gridtolerance="50"
inkscape:object-paths="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-maximized="0">
<inkscape:grid
id="GridFromPre046Settings"
type="xygrid"
originx="0px"
originy="0px"
spacingx="0.5px"
spacingy="0.5px"
color="#0000ff"
empcolor="#0000ff"
opacity="0.2"
empopacity="0.4"
empspacing="2"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true" />
</sodipodi:namedview>
<metadata
id="metadata1311">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
<dc:creator>
<cc:Agent>
<dc:title>Lapo Calamandrei</dc:title>
</cc:Agent>
</dc:creator>
<dc:source>http://www.gnome.org</dc:source>
<dc:contributor>
<cc:Agent>
<dc:title>Jakub Steiner, Andreas Nilsson</dc:title>
</cc:Agent>
</dc:contributor>
<cc:license
rdf:resource="http://creativecommons.org/licenses/GPL/2.0/" />
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/GPL/2.0/">
<cc:permits
rdf:resource="http://web.resource.org/cc/Reproduction" />
<cc:permits
rdf:resource="http://web.resource.org/cc/Distribution" />
<cc:requires
rdf:resource="http://web.resource.org/cc/Notice" />
<cc:permits
rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
<cc:requires
rdf:resource="http://web.resource.org/cc/ShareAlike" />
<cc:requires
rdf:resource="http://web.resource.org/cc/SourceCode" />
</cc:License>
</rdf:RDF>
</metadata>
<g
id="layer1"
inkscape:label="Layer 1"
inkscape:groupmode="layer"
transform="translate(-5.000001,-1.0000007)">
<g
id="g3135"
transform="matrix(0,1,-1,0,49.000001,0.99999934)">
<g
id="g6917">
<rect
style="opacity:0.39195981;color:#000000;fill:url(#linearGradient3154);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible"
id="rect6057"
width="33"
height="18"
x="2"
y="26" />
<path
style="opacity:0.40206185;color:#000000;fill:url(#radialGradient3156);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible"
d="m 35,26.00062 c 0,0 0,17.999007 0,17.999007 2.30962,0.01455 5.033409,-0.727312 7.389531,-1.972134 C 45.519106,40.37403 48.000002,37.833194 48,34.998965 48,30.030967 41.999197,26.000621 35,26.00062 z"
id="path6059"
sodipodi:nodetypes="ccscc"
inkscape:connector-curvature="0" />
<path
sodipodi:nodetypes="cccc"
id="path6061"
d="m 2,26.00062 c 0,0 0,17.999007 0,17.999007 C 1.172704,44.03351 1.3577825e-6,39.966963 1.3577825e-6,34.998965 1.3577825e-6,30.030967 0.92320113,26.000621 2,26.00062 z"
style="opacity:0.40206185;color:#000000;fill:url(#radialGradient3158);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible"
inkscape:connector-curvature="0" />
</g>
<path
sodipodi:nodetypes="ccccccccc"
id="rect5350"
d="m 2.767767,6.5 42.46447,0 c 0.702343,0 1.267767,0.5654241 1.267767,1.267767 L 46.5,30.5 c 0,0.702343 -10.297657,10 -11,10 l -32.732233,0 C 2.0654241,40.5 1.5,39.934576 1.5,39.232233 L 1.5,7.767767 C 1.5,7.0654241 2.0654241,6.5 2.767767,6.5 z"
style="fill:url(#linearGradient3160);fill-opacity:1;stroke:#888a85;stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0"
inkscape:connector-curvature="0" />
<path
sodipodi:nodetypes="ccccccccc"
id="rect2063"
d="m 4.9874617,9.5 38.0521033,0 c 0.270054,0 0.487462,0.2276458 0.487462,0.510417 l 0,23.979166 L 40.039565,37.5 4.9874617,37.5 C 4.7174079,37.5 4.5,37.272354 4.5,36.989583 l 0,-26.979166 C 4.5,9.7276458 4.7174079,9.5 4.9874617,9.5 z"
style="fill:url(#linearGradient3162);fill-opacity:1;stroke:#888a85;stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0"
inkscape:connector-curvature="0" />
<path
inkscape:r_cy="true"
inkscape:r_cx="true"
id="path4898"
d="m 16.083789,23.551777 c -5.168779,0.327955 -9.2812506,4.655188 -9.2812506,9.90625 0,0.202785 0.01921,0.393975 0.03125,0.59375 l 19.7500006,0 c 0.01204,-0.199775 0.03125,-0.390965 0.03125,-0.59375 0,-5.464521 -4.441729,-9.90625 -9.90625,-9.90625 -0.213458,0 -0.414887,-0.01333 -0.625,0 z"
style="color:#000000;fill:url(#radialGradient3164);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible"
inkscape:connector-curvature="0" />
<rect
ry="0"
rx="0"
y="34"
x="5"
height="3"
width="38"
id="rect1324"
style="fill:url(#linearGradient3166);fill-opacity:1;stroke:none" />
<path
sodipodi:nodetypes="ccsssssssccc"
id="path6364"
d="m 14.78125,40 20.625,0 c 0.0102,-0.0045 0.01696,-0.004 0.0625,-0.03125 0.09108,-0.05454 0.239108,-0.158764 0.40625,-0.28125 0.334283,-0.244972 0.784837,-0.593604 1.3125,-1.03125 1.055327,-0.875293 2.42316,-2.047759 3.75,-3.25 1.32684,-1.202241 2.626277,-2.44468 3.59375,-3.40625 0.483737,-0.480785 0.886656,-0.881222 1.15625,-1.1875 0.134797,-0.153139 0.223302,-0.293223 0.28125,-0.375 C 45.98324,30.41706 45.99168,30.41954 46,30.40625 L 46,13.78125 14.78125,40 z"
style="opacity:0.81896548;fill:url(#linearGradient3168);fill-opacity:1;stroke:none"
inkscape:connector-curvature="0" />
<path
sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccc"
id="path2079"
d="m 29.555584,34.972272 c 0,0 -0.555584,-3.239746 -0.555584,-5.224471 0.01541,-0.905405 7.786707,-7.958802 7.806757,-9.009433 L 35,22.392753 33.734835,18.776232 38,19.24059 40,17.139148 37.734835,18.886405 36.955806,18.700662 36,15.037705 36.486136,18.607791 32.955806,18.422048 34.06066,21.376634 31,18.189869 34.237437,22.62545 c 8.5e-5,0.989283 -6.380874,7.028486 -6.37002,5.987149 L 25.220971,24.882982 25,19.841002 27,19.24059 28.752155,14.700822 26.442435,18.896683 24.639267,18.810834 20.602879,15.228917 15.06066,13 19.795495,15.734242 16,16.088427 l 5,0 3,3.152163 0.353553,5.444817 L 19,19.24059 21.251301,22.085004 18,24.494195 21.571429,22.392753 27.220971,29.869807 27,34.972272 l 2.555584,0 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
inkscape:connector-curvature="0" />
<path
style="color:#000000;fill:#fef39e;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible"
d="m 16.367734,28.233668 c -2.820539,0.178961 -5.064664,2.540279 -5.064664,5.405719 0,0.110657 0.01048,0.214987 0.01705,0.324002 l 10.777333,0 c 0.0066,-0.109015 0.01705,-0.213345 0.01705,-0.324002 0,-2.981922 -2.423797,-5.405719 -5.405719,-5.405719 -0.116482,0 -0.226399,-0.0073 -0.341055,0 z"
id="path4924"
inkscape:r_cx="true"
inkscape:r_cy="true"
inkscape:connector-curvature="0" />
<path
inkscape:r_cy="true"
inkscape:r_cx="true"
id="path4926"
d="m 16.448682,29.531973 c -2.151088,0.136486 -3.862573,1.937349 -3.862573,4.122681 0,0.08439 0.008,0.16396 0.013,0.2471 l 8.219349,0 c 0.005,-0.08314 0.01301,-0.162708 0.01301,-0.2471 0,-2.274167 -1.848512,-4.122681 -4.12268,-4.122681 -0.08883,0 -0.172663,-0.0055 -0.260107,0 z"
style="color:#000000;fill:#fffbd7;fill-opacity:0.55681817;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible"
inkscape:connector-curvature="0" />
<path
sodipodi:nodetypes="ccccccccc"
id="path6351"
d="M 2.78125,7.5 C 2.6253137,7.5 2.5,7.6253137 2.5,7.78125 l 0,31.4375 C 2.5,39.374686 2.6253136,39.5 2.78125,39.5 l 34.5,0 C 40.921301,36.704635 42.365769,35.606734 45.5,32.25 l 0,-24.46875 C 45.5,7.6253155 45.374683,7.5 45.21875,7.5 l -42.4375,0 z"
style="fill:none;stroke:#ffffff;stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0"
inkscape:connector-curvature="0" />
<path
sodipodi:nodetypes="cccc"
id="path6322"
d="m 46.5,30.5 c 0,5 -6,10 -11,10 0,0 4.432134,-2.16262 4,-7 4.379686,0.416135 7,-3 7,-3 z"
style="fill:url(#linearGradient3170);fill-opacity:1;fill-rule:evenodd;stroke:url(#radialGradient3172);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1"
inkscape:connector-curvature="0" />
<path
id="path6339"
d="m 45.71875,31.96875 c -1.141161,0.963781 -3.038894,2.12059 -5.6875,2.0625 0.02848,2.743194 -1.332152,4.55626 -2.5625,5.65625 1.484391,-0.981249 3.356416,-2.315695 3.5625,-4.65625 2.161131,-0.0033 3.587964,-1.720595 4.65625,-3 0.0055,-0.02167 0.02592,-0.04082 0.03125,-0.0625 z"
style="opacity:0.73275865;fill:url(#radialGradient3174);fill-opacity:1;fill-rule:evenodd;stroke:none"
inkscape:connector-curvature="0" />
<path
sodipodi:nodetypes="ccccccc"
id="path6384"
d="M 2.78125,7 C 2.3536576,7 2,7.3536576 2,7.78125 l 0,23.3125 C 14.714701,22.184679 34.055102,15.625228 46,19.3125 L 46,7.78125 C 46,7.3536585 45.64634,7 45.21875,7 L 2.78125,7 z"
style="opacity:0.34482757;fill:url(#radialGradient3176);fill-opacity:1;stroke:none"
inkscape:connector-curvature="0" />
<path
d="M 2.78125,7.5 C 2.628408,7.5 2.5,7.628408 2.5,7.78125 l 0,31.4375 C 2.5,39.371592 2.6284079,39.5 2.78125,39.5 L 35.5,39.5 c 2.166667,0 4.749358,-1.137302 6.71875,-2.875 C 44.188142,34.887302 45.5,32.6 45.5,30.5 l 0,-22.71875 C 45.5,7.6284098 45.371589,7.5 45.21875,7.5 l -42.4375,0 z"
id="path6427"
style="opacity:0.41810345;fill:none;stroke:#ffffff;stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0"
inkscape:original="M 2.78125 6.5 C 2.0789071 6.5 1.5 7.0789071 1.5 7.78125 L 1.5 39.21875 C 1.5 39.921093 2.0789071 40.5 2.78125 40.5 L 35.5 40.5 C 40.5 40.5 46.5 35.5 46.5 30.5 L 46.5 7.78125 C 46.5 7.0789071 45.921091 6.5 45.21875 6.5 L 2.78125 6.5 z "
inkscape:radius="-1"
sodipodi:type="inkscape:offset" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 23 KiB

View File

@ -0,0 +1,108 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://web.resource.org/cc/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" inkscape:export-ydpi="90.000000" inkscape:export-xdpi="90.000000" inkscape:export-filename="/home/jimmac/Desktop/wi-fi.png" width="48px" height="48px" id="svg11300" sodipodi:version="0.32" inkscape:version="0.45" sodipodi:docbase="/home/dobey/Projects/gnome-icon-theme/scalable/devices" sodipodi:docname="scanner.svg" inkscape:output_extension="org.inkscape.output.svg.inkscape">
<defs id="defs3">
<linearGradient id="linearGradient5293">
<stop style="stop-color:#888a85;stop-opacity:1;" offset="0" id="stop5295"/>
<stop style="stop-color:#6a6b67;stop-opacity:1;" offset="1" id="stop5297"/>
</linearGradient>
<linearGradient inkscape:collect="always" id="linearGradient5277">
<stop style="stop-color:#a6a6a6;stop-opacity:1;" offset="0" id="stop5279"/>
<stop style="stop-color:#a6a6a6;stop-opacity:0;" offset="1" id="stop5281"/>
</linearGradient>
<linearGradient id="linearGradient5255">
<stop style="stop-color:#8e8e8e;stop-opacity:1;" offset="0" id="stop5257"/>
<stop style="stop-color:#d0d0d0;stop-opacity:1;" offset="1" id="stop5259"/>
</linearGradient>
<linearGradient inkscape:collect="always" id="linearGradient5236">
<stop style="stop-color:#000000;stop-opacity:1;" offset="0" id="stop5238"/>
<stop style="stop-color:#000000;stop-opacity:0;" offset="1" id="stop5240"/>
</linearGradient>
<linearGradient id="linearGradient5214">
<stop style="stop-color:#7f8578;stop-opacity:1;" offset="0" id="stop5216"/>
<stop id="stop5222" offset="0.25" style="stop-color:#c8c8c8;stop-opacity:1;"/>
<stop style="stop-color:#c8c8c8;stop-opacity:1;" offset="0.65909094" id="stop5224"/>
<stop style="stop-color:#666666;stop-opacity:1;" offset="1" id="stop5218"/>
</linearGradient>
<linearGradient inkscape:collect="always" id="linearGradient5190">
<stop style="stop-color:#000000;stop-opacity:1;" offset="0" id="stop5192"/>
<stop style="stop-color:#000000;stop-opacity:0;" offset="1" id="stop5194"/>
</linearGradient>
<linearGradient inkscape:collect="always" id="linearGradient5176">
<stop style="stop-color:#ffffff;stop-opacity:1;" offset="0" id="stop5178"/>
<stop style="stop-color:#ffffff;stop-opacity:0;" offset="1" id="stop5180"/>
</linearGradient>
<linearGradient id="linearGradient5166">
<stop style="stop-color:#000000;stop-opacity:1;" offset="0" id="stop5168"/>
<stop style="stop-color:#434c4f;stop-opacity:1;" offset="1" id="stop5170"/>
</linearGradient>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient5166" id="linearGradient5172" x1="23.599689" y1="17.461824" x2="23.599689" y2="33.902058" gradientUnits="userSpaceOnUse" gradientTransform="translate(-2,0)"/>
<radialGradient inkscape:collect="always" xlink:href="#linearGradient5176" id="radialGradient5182" cx="23.33452" cy="27.39226" fx="23.33452" fy="27.39226" r="11.136932" gradientTransform="matrix(1.968254,1.16303e-7,-9.004103e-8,1.52381,-24.68213,-14.68863)" gradientUnits="userSpaceOnUse"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient5214" id="linearGradient5220" x1="22.657747" y1="14.85437" x2="22.657747" y2="41.054031" gradientUnits="userSpaceOnUse" gradientTransform="translate(-2,0)"/>
<radialGradient inkscape:collect="always" xlink:href="#linearGradient5236" id="radialGradient5242" cx="23.5" cy="33.25" fx="23.5" fy="33.25" r="19" gradientTransform="matrix(1,0,0,0.802632,-1.00267e-15,6.5625)" gradientUnits="userSpaceOnUse"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient5255" id="linearGradient5261" x1="18" y1="36.5" x2="23" y2="36.5" gradientUnits="userSpaceOnUse" gradientTransform="translate(-2,0)"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient5255" id="linearGradient5263" gradientUnits="userSpaceOnUse" x1="11.998403" y1="36.5" x2="17" y2="36.5" gradientTransform="translate(-2,0)"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient5255" id="linearGradient5267" gradientUnits="userSpaceOnUse" x1="14.03125" y1="36.864582" x2="12" y2="36.854168" gradientTransform="matrix(0.6,0,0,0.6,3.8,14)"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient5255" id="linearGradient5271" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.6,0,0,0.6,9.8,14)" x1="14.03125" y1="36.864582" x2="12" y2="36.854168"/>
<radialGradient inkscape:collect="always" xlink:href="#linearGradient5190" id="radialGradient5273" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1,0,0,0.5,-2,9.681087)" cx="22.804193" cy="19.362175" fx="22.804193" fy="19.362175" r="18.031223"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient5277" id="linearGradient5283" x1="43.870953" y1="15.846735" x2="47.283165" y2="9.129221" gradientUnits="userSpaceOnUse" gradientTransform="translate(-2,0)"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient5293" id="linearGradient5299" x1="19.483202" y1="5.532073" x2="21.567848" y2="12.289182" gradientUnits="userSpaceOnUse"/>
</defs>
<sodipodi:namedview stroke="#fce94f" fill="#fce94f" id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="0.25490196" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="5.6568542" inkscape:cx="23.909435" inkscape:cy="8.4399038" inkscape:current-layer="layer1" showgrid="false" inkscape:grid-bbox="true" inkscape:document-units="px" inkscape:showpageshadow="false" inkscape:window-width="1000" inkscape:window-height="807" inkscape:window-x="607" inkscape:window-y="312"/>
<metadata id="metadata4">
<rdf:RDF>
<cc:Work rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
<dc:creator>
<cc:Agent>
<dc:title>Jakub Steiner</dc:title>
</cc:Agent>
</dc:creator>
<dc:source>http://jimmac.musichall.cz</dc:source>
<cc:license rdf:resource="http://creativecommons.org/licenses/by-sa/2.0/"/>
<dc:title>Scanner Device</dc:title>
<dc:subject>
<rdf:Bag>
<rdf:li>device</rdf:li>
<rdf:li>input</rdf:li>
<rdf:li>scanner</rdf:li>
<rdf:li>image</rdf:li>
<rdf:li>raster</rdf:li>
<rdf:li>bitmap</rdf:li>
</rdf:Bag>
</dc:subject>
</cc:Work>
<cc:License rdf:about="http://creativecommons.org/licenses/by-sa/2.0/">
<cc:permits rdf:resource="http://web.resource.org/cc/Reproduction"/>
<cc:permits rdf:resource="http://web.resource.org/cc/Distribution"/>
<cc:requires rdf:resource="http://web.resource.org/cc/Notice"/>
<cc:requires rdf:resource="http://web.resource.org/cc/Attribution"/>
<cc:permits rdf:resource="http://web.resource.org/cc/DerivativeWorks"/>
<cc:requires rdf:resource="http://web.resource.org/cc/ShareAlike"/>
</cc:License>
</rdf:RDF>
</metadata>
<g id="layer1" inkscape:label="Layer 1" inkscape:groupmode="layer">
<path sodipodi:type="arc" style="opacity:0.38333333;color:#000000;fill:url(#radialGradient5242);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" id="path5234" sodipodi:cx="23.5" sodipodi:cy="33.25" sodipodi:rx="19" sodipodi:ry="15.25" d="M 42.5 33.25 A 19 15.25 0 1 1 4.5,33.25 A 19 15.25 0 1 1 42.5 33.25 z" transform="matrix(1.151316,0,0,0.565573,-5.680921,18.56968)"/>
<path style="opacity:1;color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5283);stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" d="M 25.046834,19.008622 C 25.046834,19.008622 33.57631,13.926292 37.06765,14.412428 C 40.55899,14.898564 40.060743,19.786466 43.254834,17.771185 C 46.526198,15.70715 45.199378,7.8716901 45.199378,7.8716901" id="path5275" sodipodi:nodetypes="czzc"/>
<path style="opacity:1;color:#000000;fill:url(#linearGradient5220);fill-opacity:1;fill-rule:evenodd;stroke:#555753;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" d="M 7.5459416,12.291107 L 2.1542523,33.769476 L 2.331029,39.514719 C 2.331029,40.702219 3.1398494,41.698539 4.4523494,41.636039 L 38.481863,41.636039 C 39.667523,41.687816 40.691572,41.017321 40.603184,39.514719 L 40.691572,33.681088 L 34.681164,12.556273 L 7.5459416,12.291107 z " id="path4287" sodipodi:nodetypes="ccccccccc"/>
<path sodipodi:type="arc" style="opacity:1;color:#000000;fill:#888a85;fill-opacity:1;fill-rule:evenodd;stroke:#555753;stroke-width:1.00000012;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" id="path5184" sodipodi:cx="14.18633" sodipodi:cy="13.882098" sodipodi:rx="1.281631" sodipodi:ry="1.3258252" d="M 15.467961 13.882098 A 1.281631 1.3258252 0 1 1 12.904699,13.882098 A 1.281631 1.3258252 0 1 1 15.467961 13.882098 z" transform="translate(-1.646447,-0.441941)"/>
<path transform="translate(16.35355,-0.441941)" d="M 15.467961 13.882098 A 1.281631 1.3258252 0 1 1 12.904699,13.882098 A 1.281631 1.3258252 0 1 1 15.467961 13.882098 z" sodipodi:ry="1.3258252" sodipodi:rx="1.281631" sodipodi:cy="13.882098" sodipodi:cx="14.18633" id="path5186" style="opacity:1;color:#000000;fill:#888a85;fill-opacity:1;fill-rule:evenodd;stroke:#555753;stroke-width:1.00000012;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" sodipodi:type="arc"/>
<path sodipodi:nodetypes="ccccccccc" id="path5228" d="M 8.379527,13.172561 L 3.1867164,33.735725 L 3.3528741,38.885851 C 3.3528741,40.002018 3.4881086,40.625989 4.7217668,40.567243 L 38.144627,40.567243 C 39.259065,40.61591 39.659099,40.360692 39.576021,38.948351 L 39.659099,33.715146 L 33.884736,13.421799 L 8.379527,13.172561 z " style="opacity:0.38333333;color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.99999982;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"/>
<path style="opacity:1;color:#000000;fill:url(#linearGradient5299);fill-opacity:1.0;fill-rule:evenodd;stroke:#555753;stroke-width:1.00000012;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" d="M 9.402097,13.437047 L 3.1265241,5.062044 C 2.6845824,4.5317139 3.3033006,3.4416435 4.4523491,3.5300318 L 38.65864,3.5300318 C 39.454135,3.4416435 40.691572,4.5592055 39.896077,5.2663123 L 33.266951,13.539182 L 9.402097,13.437047 z " id="path4289" sodipodi:nodetypes="ccccccc"/>
<path style="opacity:1;color:#000000;fill:url(#linearGradient5172);fill-opacity:1;fill-rule:evenodd;stroke:#363636;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" d="M 10.993087,16.533748 L 9.313709,28.73134 C 9.2253207,29.151185 9.2695147,29.703612 9.844039,29.703612 L 33.266951,29.703612 C 33.73099,29.703612 33.996154,29.372156 33.885669,28.73134 L 31.675961,16.533748 L 10.993087,16.533748 z " id="path4291" sodipodi:nodetypes="ccccccc"/>
<path style="opacity:0.86666667;color:#000000;fill:url(#radialGradient5182);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" d="M 11.747529,17.464967 L 11.046704,22.926962 C 17.587442,23.192127 22.746898,20.421758 31.320568,20.068205 L 30.796519,17.41319 L 11.747529,17.464967 z " id="path5174" sodipodi:nodetypes="ccccc"/>
<path style="opacity:0.40555558;color:#000000;fill:url(#radialGradient5273);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.00000012;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" d="M 9.625,12.3125 C 8.774447,12.649651 8.496458,12.999034 7.7803301,13.40625 L 5.2803301,23.46875 C 8.26835,26.384304 13.814131,28.375 20.8125,28.375 C 28.413506,28.375 34.380943,26.017285 37.03217,22.6875 L 34.53217,13.84375 C 33.807902,13.377305 33.515399,12.918304 32.625,12.53125 L 32.59375,12.53125 L 9.625,12.3125 z " id="path5188" sodipodi:nodetypes="cccsccccc"/>
<path style="opacity:0.40555558;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.00000012;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" d="M 10.020815,29.173282 L 32.825009,29.173282 C 33.178562,29.151185 33.465824,28.908117 33.443727,28.642952 L 31.410795,17.240855 L 32.648232,28.289398 L 10.020815,29.173282 z " id="path5204" sodipodi:nodetypes="cccccc"/>
<path style="opacity:0.40555558;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" d="M 4.25,4.5624999 L 38.8125,4.5624999" id="path5226"/>
<path id="path5230" d="M 8.46363,34.5625 L 38.259018,34.5625" style="opacity:0.40555558;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"/>
<path sodipodi:type="arc" style="opacity:0.38333333;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" id="path5232" sodipodi:cx="6.5" sodipodi:cy="34.375" sodipodi:rx="1" sodipodi:ry="1" d="M 7.5 34.375 A 1 1 0 1 1 5.5,34.375 A 1 1 0 1 1 7.5 34.375 z" transform="translate(-0.5,-0.375)"/>
<path id="path5246" d="M 11.613399,24.562172 L 31.251986,24.562172" style="opacity:1;color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#fce94f;stroke-width:2.93673611;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.39884392;visibility:visible;display:inline;overflow:visible"/>
<path style="opacity:1;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.99999982;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" d="M 11.613399,24.5625 L 31.251986,24.5625" id="path5244"/>
<path style="opacity:1;color:#000000;fill:url(#linearGradient5263);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.39884392;visibility:visible;display:inline;overflow:visible" d="M 10.002853,35 L 10.002853,36.538783 C 10.002853,36.601877 9.996434,36.680316 10.002853,36.741254 C 10.013569,36.825885 10.048121,36.9456 10.070343,37.024714 C 10.083931,37.069412 10.120815,37.144186 10.137834,37.186691 C 10.182446,37.291489 10.243011,37.422557 10.30656,37.510645 C 10.332667,37.54513 10.379059,37.600799 10.407796,37.632128 C 10.481203,37.708387 10.590426,37.781066 10.677758,37.8346 C 10.713179,37.855022 10.77549,37.899283 10.812739,37.915588 C 10.878666,37.942255 10.978429,37.983717 11.048955,37.996577 C 11.099737,38.004279 11.165102,37.996577 11.217681,37.996577 L 13.782319,37.996577 C 13.834898,37.996577 13.900263,38.004279 13.951045,37.996577 C 14.021571,37.983717 14.121334,37.942255 14.187262,37.915588 C 14.22451,37.899283 14.286821,37.855022 14.322243,37.8346 C 14.409574,37.781066 14.518798,37.708387 14.592204,37.632128 C 14.620941,37.600799 14.667333,37.54513 14.69344,37.510645 C 14.756989,37.422557 14.817555,37.291489 14.862166,37.186691 C 14.879185,37.144186 14.916069,37.069412 14.929657,37.024714 C 14.951879,36.9456 14.986431,36.825885 14.997147,36.741254 C 15.003566,36.680316 14.997147,36.601877 14.997147,36.538783 L 14.997147,35 L 10.002853,35 z " id="rect5248"/>
<path id="path5253" d="M 16.002853,35 L 16.002853,36.538783 C 16.002853,36.601877 15.996434,36.680316 16.002853,36.741254 C 16.013569,36.825885 16.048121,36.9456 16.070343,37.024714 C 16.083931,37.069412 16.120815,37.144186 16.137834,37.186691 C 16.182446,37.291489 16.243011,37.422557 16.30656,37.510645 C 16.332667,37.54513 16.379059,37.600799 16.407796,37.632128 C 16.481203,37.708387 16.590426,37.781066 16.677758,37.8346 C 16.713179,37.855022 16.77549,37.899283 16.812739,37.915588 C 16.878666,37.942255 16.978429,37.983717 17.048955,37.996577 C 17.099737,38.004279 17.165102,37.996577 17.217681,37.996577 L 19.782319,37.996577 C 19.834898,37.996577 19.900263,38.004279 19.951045,37.996577 C 20.021571,37.983717 20.121334,37.942255 20.187262,37.915588 C 20.22451,37.899283 20.286821,37.855022 20.322243,37.8346 C 20.409574,37.781066 20.518798,37.708387 20.592204,37.632128 C 20.620941,37.600799 20.667333,37.54513 20.69344,37.510645 C 20.756989,37.422557 20.817555,37.291489 20.862166,37.186691 C 20.879185,37.144186 20.916069,37.069412 20.929657,37.024714 C 20.951879,36.9456 20.986431,36.825885 20.997147,36.741254 C 21.003566,36.680316 20.997147,36.601877 20.997147,36.538783 L 20.997147,35 L 16.002853,35 z " style="opacity:1;color:#000000;fill:url(#linearGradient5261);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.39884392;visibility:visible;display:inline;overflow:visible"/>
<path id="path5265" d="M 11.001712,35 L 11.001712,35.92327 C 11.001712,35.961126 10.99786,36.00819 11.001712,36.044752 C 11.008141,36.095531 11.028873,36.16736 11.042206,36.214828 C 11.050359,36.241647 11.072489,36.286512 11.0827,36.312015 C 11.109468,36.374893 11.145807,36.453534 11.183936,36.506387 C 11.1996,36.527078 11.227435,36.560479 11.244678,36.579277 C 11.288722,36.625032 11.354256,36.66864 11.406655,36.70076 C 11.427907,36.713013 11.465294,36.73957 11.487643,36.749353 C 11.5272,36.765353 11.587057,36.79023 11.629373,36.797946 C 11.659842,36.802567 11.699061,36.797946 11.730609,36.797946 L 13.269391,36.797946 C 13.300939,36.797946 13.340158,36.802567 13.370627,36.797946 C 13.412943,36.79023 13.4728,36.765353 13.512357,36.749353 C 13.534706,36.73957 13.572093,36.713013 13.593346,36.70076 C 13.645744,36.66864 13.711279,36.625032 13.755322,36.579277 C 13.772565,36.560479 13.8004,36.527078 13.816064,36.506387 C 13.854193,36.453534 13.890533,36.374893 13.9173,36.312015 C 13.927511,36.286512 13.949641,36.241647 13.957794,36.214828 C 13.971127,36.16736 13.991859,36.095531 13.998288,36.044752 C 14.00214,36.00819 13.998288,35.961126 13.998288,35.92327 L 13.998288,35 L 11.001712,35 z " style="opacity:1;color:#000000;fill:url(#linearGradient5267);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.39884392;visibility:visible;display:inline;overflow:visible"/>
<path style="opacity:1;color:#000000;fill:url(#linearGradient5271);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.39884392;visibility:visible;display:inline;overflow:visible" d="M 17.001712,35 L 17.001712,35.92327 C 17.001712,35.961126 16.99786,36.00819 17.001712,36.044752 C 17.008141,36.095531 17.028873,36.16736 17.042206,36.214828 C 17.050359,36.241647 17.072489,36.286512 17.0827,36.312015 C 17.109468,36.374893 17.145807,36.453534 17.183936,36.506387 C 17.1996,36.527078 17.227435,36.560479 17.244678,36.579277 C 17.288722,36.625032 17.354256,36.66864 17.406655,36.70076 C 17.427907,36.713013 17.465294,36.73957 17.487643,36.749353 C 17.5272,36.765353 17.587057,36.79023 17.629373,36.797946 C 17.659842,36.802567 17.699061,36.797946 17.730609,36.797946 L 19.269391,36.797946 C 19.300939,36.797946 19.340158,36.802567 19.370627,36.797946 C 19.412943,36.79023 19.4728,36.765353 19.512357,36.749353 C 19.534706,36.73957 19.572093,36.713013 19.593346,36.70076 C 19.645744,36.66864 19.711279,36.625032 19.755322,36.579277 C 19.772565,36.560479 19.8004,36.527078 19.816064,36.506387 C 19.854193,36.453534 19.890533,36.374893 19.9173,36.312015 C 19.927511,36.286512 19.949641,36.241647 19.957794,36.214828 C 19.971127,36.16736 19.991859,36.095531 19.998288,36.044752 C 20.00214,36.00819 19.998288,35.961126 19.998288,35.92327 L 19.998288,35 L 17.001712,35 z " id="path5269"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 23 KiB

View File

@ -0,0 +1,98 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://web.resource.org/cc/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" width="48px" height="48px" id="svg1307" sodipodi:version="0.32" inkscape:version="0.42+devel" sodipodi:docbase="/home/lapo/Desktop/Fatte" sodipodi:docname="media-seek-backward.svg" inkscape:export-filename="/home/lapo/Desktop/Grafica/Icone/media-actions-outlines.png" inkscape:export-xdpi="90" inkscape:export-ydpi="90">
<defs id="defs1309">
<linearGradient id="linearGradient2584">
<stop style="stop-color:#000000;stop-opacity:1;" offset="0" id="stop2586"/>
<stop style="stop-color:#ffffff;stop-opacity:0;" offset="1" id="stop2588"/>
</linearGradient>
<linearGradient id="linearGradient5075">
<stop style="stop-color:#adb0a8;stop-opacity:1;" offset="0" id="stop5077"/>
<stop style="stop-color:#464744;stop-opacity:1" offset="1" id="stop5079"/>
</linearGradient>
<linearGradient id="linearGradient2679" inkscape:collect="always">
<stop id="stop2681" offset="0" style="stop-color:#ffffff;stop-opacity:1"/>
<stop id="stop2683" offset="1" style="stop-color:#d3d7cf"/>
</linearGradient>
<linearGradient id="linearGradient2591">
<stop id="stop2593" offset="0" style="stop-color:#ffffff;stop-opacity:1;"/>
<stop id="stop2595" offset="1" style="stop-color:#eeeeec;stop-opacity:0"/>
</linearGradient>
<linearGradient inkscape:collect="always" id="linearGradient8662">
<stop style="stop-color:#000000;stop-opacity:1;" offset="0" id="stop8664"/>
<stop style="stop-color:#000000;stop-opacity:0;" offset="1" id="stop8666"/>
</linearGradient>
<radialGradient inkscape:collect="always" xlink:href="#linearGradient2679" id="radialGradient5580" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.222659,-0.996273,2.129992,0.476041,-260.9464,141.8517)" cx="64.227074" cy="147.99352" fx="64.227074" fy="147.99352" r="8.75"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient2591" id="linearGradient2773" gradientUnits="userSpaceOnUse" gradientTransform="translate(47.00000,0.000000)" x1="89" y1="140.51303" x2="89" y2="149.94986"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient5075" id="linearGradient2776" gradientUnits="userSpaceOnUse" gradientTransform="translate(47.00000,0.000000)" x1="53.5" y1="134.99147" x2="54.521976" y2="148.06299"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient2584" id="linearGradient2921" gradientUnits="userSpaceOnUse" gradientTransform="translate(3.009087,23.73787)" x1="48.103603" y1="130.02055" x2="49.829826" y2="140.76149"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient2584" id="linearGradient2923" gradientUnits="userSpaceOnUse" gradientTransform="translate(3.009087,23.73787)" x1="49.430401" y1="112.94963" x2="49.667324" y2="115.13713"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient2584" id="linearGradient2925" gradientUnits="userSpaceOnUse" gradientTransform="translate(3.009081,23.73785)" x1="49.763771" y1="116.74653" x2="50.000694" y2="119.57739"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient2584" id="linearGradient2927" gradientUnits="userSpaceOnUse" gradientTransform="translate(3.009087,23.73787)" x1="49.509373" y1="121.87539" x2="50.22015" y2="128.16838"/>
<radialGradient inkscape:collect="always" xlink:href="#linearGradient8662" id="radialGradient1932" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.000000,0.000000,0.000000,0.536723,3.902341e-13,16.87306)" cx="24.837126" cy="36.421127" fx="24.837126" fy="36.421127" r="15.644737"/>
<radialGradient inkscape:collect="always" xlink:href="#linearGradient2679" id="radialGradient1655" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.222659,-0.996273,2.129992,0.476041,-242.9464,141.8517)" cx="64.227074" cy="147.99352" fx="64.227074" fy="147.99352" r="8.75"/>
</defs>
<sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="1" inkscape:cx="101.10997" inkscape:cy="-38.264327" inkscape:current-layer="layer1" showgrid="false" inkscape:grid-bbox="true" inkscape:document-units="px" gridspacingx="0.5px" gridspacingy="0.5px" gridempspacing="2" inkscape:grid-points="true" fill="#fcaf3e" showguides="false" inkscape:guide-bbox="true" guidetolerance="1px" stroke="#729fcf" inkscape:window-width="1144" inkscape:window-height="808" inkscape:window-x="0" inkscape:window-y="26" showborder="false">
<sodipodi:guide orientation="horizontal" position="38.996647" id="guide2194"/>
<sodipodi:guide orientation="horizontal" position="9.0140845" id="guide2196"/>
<sodipodi:guide orientation="vertical" position="9.0140845" id="guide2198"/>
<sodipodi:guide orientation="vertical" position="38.975184" id="guide2200"/>
<sodipodi:guide orientation="horizontal" position="22.988281" id="guide2202"/>
<sodipodi:guide orientation="vertical" position="23.908786" id="guide2204"/>
<sodipodi:guide orientation="vertical" position="157.99417" id="guide4332"/>
<sodipodi:guide orientation="horizontal" position="-36.062446" id="guide4334"/>
<sodipodi:guide orientation="horizontal" position="-58.02695" id="guide4336"/>
<sodipodi:guide orientation="vertical" position="180.00287" id="guide4338"/>
<sodipodi:guide orientation="vertical" position="107.92217" id="guide4417"/>
<sodipodi:guide orientation="vertical" position="129.93087" id="guide4419"/>
<sodipodi:guide orientation="horizontal" position="19.996875" id="guide5106"/>
<sodipodi:guide orientation="horizontal" position="63.039674" id="guide5119"/>
<sodipodi:guide orientation="horizontal" position="49.066305" id="guide5121"/>
<sodipodi:guide orientation="horizontal" position="-87.043372" id="guide5307"/>
<sodipodi:guide orientation="horizontal" position="-102.03286" id="guide5309"/>
<sodipodi:guide orientation="horizontal" position="-100.04058" id="guide3111"/>
<sodipodi:guide orientation="horizontal" position="-92.545841" id="guide1879"/>
</sodipodi:namedview>
<metadata id="metadata1312">
<rdf:RDF>
<cc:Work rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
<dc:title>Media Seek Backward</dc:title>
<dc:creator>
<cc:Agent>
<dc:title>Lapo Calamandrei</dc:title>
</cc:Agent>
</dc:creator>
<cc:license rdf:resource="http://creativecommons.org/licenses/by-sa/2.0/"/>
</cc:Work>
<cc:License rdf:about="http://creativecommons.org/licenses/by-sa/2.0/">
<cc:permits rdf:resource="http://web.resource.org/cc/Reproduction"/>
<cc:permits rdf:resource="http://web.resource.org/cc/Distribution"/>
<cc:requires rdf:resource="http://web.resource.org/cc/Notice"/>
<cc:requires rdf:resource="http://web.resource.org/cc/Attribution"/>
<cc:permits rdf:resource="http://web.resource.org/cc/DerivativeWorks"/>
<cc:requires rdf:resource="http://web.resource.org/cc/ShareAlike"/>
</cc:License>
</rdf:RDF>
</metadata>
<g id="layer1" inkscape:label="Layer 1" inkscape:groupmode="layer" style="display:inline">
<g id="g1934" transform="translate(-132.9996,-121.0000)">
<path transform="matrix(1.342316,0.000000,0.000000,0.565685,123.6605,137.6471)" d="M 40.481863 36.421127 A 15.644737 8.3968935 0 1 1 9.1923885,36.421127 A 15.644737 8.3968935 0 1 1 40.481863 36.421127 z" sodipodi:ry="8.3968935" sodipodi:rx="15.644737" sodipodi:cy="36.421127" sodipodi:cx="24.837126" id="path5509" style="opacity:0.03999999;color:#000000;fill:url(#radialGradient1932);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" sodipodi:type="arc" inkscape:export-filename="/home/lapo/Desktop/Grafica/Icone/media-actions.png" inkscape:export-xdpi="90" inkscape:export-ydpi="90"/>
<g transform="translate(38.00000,0.000000)" id="g2929">
<g id="g5513" transform="translate(47.00000,0.000000)">
<path style="color:#000000;fill:url(#radialGradient5580);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.0000006;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" d="M 71.5,134.5 L 54,145 L 71.5,155.5 L 71.5,134.5 z " id="path5515" sodipodi:nodetypes="cccc" inkscape:export-filename="/home/lapo/Desktop/Grafica/Icone/media-actions.png" inkscape:export-xdpi="90" inkscape:export-ydpi="90"/>
<path inkscape:export-ydpi="90" inkscape:export-xdpi="90" inkscape:export-filename="/home/lapo/Desktop/Grafica/Icone/media-actions.png" sodipodi:nodetypes="cccc" id="use5517" d="M 89.5,134.5 L 72,145 L 89.5,155.5 L 89.5,134.5 z " style="color:#000000;fill:url(#radialGradient1655);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.0000006;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"/>
</g>
<g id="g2911" style="opacity:0.2;display:inline" transform="translate(47.00000,0.000000)">
<path id="path2913" d="M 89.5,150.15625 L 81.78125,150.875 L 89.5,155.5 L 89.5,150.15625 z M 71.5,151.8125 L 66.1875,152.3125 L 71.5,155.5 L 71.5,151.8125 z " style="opacity:0.35135133;color:#000000;fill:url(#linearGradient2921);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" sodipodi:nodetypes="cccccccc"/>
<path id="path2915" d="M 89.5,134.5 L 88.3125,135.21875 L 89.5,135.09375 L 89.5,134.5 z M 71.5,134.75 L 71.03125,134.78125 L 67.0625,137.15625 L 71.5,136.75 L 71.5,134.75 z " style="opacity:0.35135133;color:#000000;fill:url(#linearGradient2923);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" sodipodi:nodetypes="ccccccccc"/>
<path id="path2917" d="M 89.5,137.09375 L 84.40625,137.5625 L 78.4375,141.125 L 89.5,140.125 L 89.5,137.09375 z M 71.5,138.75 L 63.125,139.53125 L 71.5,141.78125 L 71.5,138.75 z " style="opacity:0.35135133;color:#000000;fill:url(#linearGradient2925);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" sodipodi:nodetypes="ccccccccc"/>
<path id="path2919" d="M 89.5,142.125 L 74.46875,143.5 L 72,145 L 78.875,149.125 L 89.5,148.15625 L 89.5,142.125 z M 71.5,143.78125 L 54.5625,145.34375 L 63.28125,150.5625 L 71.5,149.8125 L 71.5,143.78125 z " style="opacity:0.35135133;color:#000000;fill:url(#linearGradient2927);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" sodipodi:nodetypes="ccccccccccc"/>
</g>
<path style="color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient2776);stroke-width:1.0000006;stroke-linecap:square;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" d="M 118.5,134.5 L 101,145 L 118.5,155.5 L 118.5,134.5 z M 136.5,134.5 L 119,145 L 136.5,155.5 L 136.5,134.5 z " id="path5521" sodipodi:nodetypes="cccccccc"/>
<path style="color:#000000;fill:url(#linearGradient2773);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" d="M 118,135.375 L 101.96875,145 L 118,154.625 L 118,135.375 z M 136,135.375 L 119.96875,145 L 136,154.625 L 136,135.375 z M 117,137.15625 L 117,152.84375 L 103.90625,145 L 117,137.15625 z M 135,137.15625 L 135,152.84375 L 121.90625,145 L 135,137.15625 z " id="path5525" sodipodi:nodetypes="cccccccccccccccc"/>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 14 KiB

View File

@ -0,0 +1,99 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://web.resource.org/cc/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" width="48px" height="48px" id="svg1307" sodipodi:version="0.32" inkscape:version="0.42+devel" sodipodi:docbase="/home/lapo/Desktop/Fatte" sodipodi:docname="media-seek-forward.svg" inkscape:export-filename="/home/lapo/Desktop/Grafica/Icone/media-actions-outlines.png" inkscape:export-xdpi="90" inkscape:export-ydpi="90">
<defs id="defs1309">
<linearGradient id="linearGradient2584">
<stop style="stop-color:#000000;stop-opacity:1;" offset="0" id="stop2586"/>
<stop style="stop-color:#ffffff;stop-opacity:0;" offset="1" id="stop2588"/>
</linearGradient>
<linearGradient id="linearGradient5075">
<stop style="stop-color:#adb0a8;stop-opacity:1;" offset="0" id="stop5077"/>
<stop style="stop-color:#464744;stop-opacity:1" offset="1" id="stop5079"/>
</linearGradient>
<linearGradient id="linearGradient2679" inkscape:collect="always">
<stop id="stop2681" offset="0" style="stop-color:#ffffff;stop-opacity:1"/>
<stop id="stop2683" offset="1" style="stop-color:#d3d7cf"/>
</linearGradient>
<linearGradient id="linearGradient2591">
<stop id="stop2593" offset="0" style="stop-color:#ffffff;stop-opacity:1;"/>
<stop id="stop2595" offset="1" style="stop-color:#eeeeec;stop-opacity:0"/>
</linearGradient>
<linearGradient inkscape:collect="always" id="linearGradient8662">
<stop style="stop-color:#000000;stop-opacity:1;" offset="0" id="stop8664"/>
<stop style="stop-color:#000000;stop-opacity:0;" offset="1" id="stop8666"/>
</linearGradient>
<radialGradient inkscape:collect="always" xlink:href="#linearGradient2679" id="radialGradient3092" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.264218,-0.986066,-2.238896,-0.599910,486.6020,298.4876)" cx="64.214218" cy="146.18817" fx="64.214218" fy="146.18817" r="8.75"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient2584" id="linearGradient3296" gradientUnits="userSpaceOnUse" gradientTransform="translate(146.4002,36.96061)" x1="53.931114" y1="116.38297" x2="54.390476" y2="122.29481"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient2584" id="linearGradient3298" gradientUnits="userSpaceOnUse" gradientTransform="translate(146.4002,36.96061)" x1="53.017841" y1="99.445641" x2="53.201031" y2="101.35189"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient2584" id="linearGradient3300" gradientUnits="userSpaceOnUse" gradientTransform="translate(146.4002,36.96061)" x1="54.346024" y1="102.97689" x2="54.712406" y2="106.38314"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient8662" id="linearGradient3302" gradientUnits="userSpaceOnUse" gradientTransform="translate(146.4002,36.96061)" x1="55.934441" y1="107.94752" x2="56.941994" y2="113.80963"/>
<radialGradient inkscape:collect="always" xlink:href="#linearGradient8662" id="radialGradient1982" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.000000,0.000000,0.000000,0.536723,-1.012463e-13,16.87306)" cx="24.837126" cy="36.421127" fx="24.837126" fy="36.421127" r="15.644737"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient5075" id="linearGradient1877" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-1.000000,3.778445e-17,-3.778445e-17,-1.000000,279.0000,290.0000)" x1="90" y1="155.0565" x2="89.007278" y2="142.03873"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient2591" id="linearGradient1883" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-1.000000,-6.342583e-18,6.342583e-18,-1.000000,278.9687,290.0000)" x1="88.999947" y1="149.43083" x2="88.999947" y2="140.03593"/>
</defs>
<sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="1" inkscape:cx="44.795547" inkscape:cy="2.7298064" inkscape:current-layer="layer1" showgrid="false" inkscape:grid-bbox="true" inkscape:document-units="px" gridspacingx="0.5px" gridspacingy="0.5px" gridempspacing="2" inkscape:grid-points="true" fill="#fcaf3e" showguides="false" inkscape:guide-bbox="true" guidetolerance="1px" stroke="#729fcf" inkscape:window-width="1144" inkscape:window-height="808" inkscape:window-x="0" inkscape:window-y="26" showborder="false">
<sodipodi:guide orientation="horizontal" position="38.996647" id="guide2194"/>
<sodipodi:guide orientation="horizontal" position="9.0140845" id="guide2196"/>
<sodipodi:guide orientation="vertical" position="9.0140845" id="guide2198"/>
<sodipodi:guide orientation="vertical" position="38.975184" id="guide2200"/>
<sodipodi:guide orientation="horizontal" position="22.988281" id="guide2202"/>
<sodipodi:guide orientation="vertical" position="23.908786" id="guide2204"/>
<sodipodi:guide orientation="vertical" position="157.99417" id="guide4332"/>
<sodipodi:guide orientation="horizontal" position="-36.062446" id="guide4334"/>
<sodipodi:guide orientation="horizontal" position="-58.02695" id="guide4336"/>
<sodipodi:guide orientation="vertical" position="180.00287" id="guide4338"/>
<sodipodi:guide orientation="vertical" position="107.92217" id="guide4417"/>
<sodipodi:guide orientation="vertical" position="129.93087" id="guide4419"/>
<sodipodi:guide orientation="horizontal" position="19.996875" id="guide5106"/>
<sodipodi:guide orientation="horizontal" position="63.039674" id="guide5119"/>
<sodipodi:guide orientation="horizontal" position="49.066305" id="guide5121"/>
<sodipodi:guide orientation="horizontal" position="-87.043372" id="guide5307"/>
<sodipodi:guide orientation="horizontal" position="-102.03286" id="guide5309"/>
<sodipodi:guide orientation="horizontal" position="-100.04058" id="guide3111"/>
<sodipodi:guide orientation="horizontal" position="-92.545841" id="guide1879"/>
</sodipodi:namedview>
<metadata id="metadata1312">
<rdf:RDF>
<cc:Work rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
<dc:title>Media Seek Forward</dc:title>
<dc:creator>
<cc:Agent>
<dc:title>Lapo Calamandrei</dc:title>
</cc:Agent>
</dc:creator>
<cc:license rdf:resource="http://creativecommons.org/licenses/by-sa/2.0/"/>
</cc:Work>
<cc:License rdf:about="http://creativecommons.org/licenses/by-sa/2.0/">
<cc:permits rdf:resource="http://web.resource.org/cc/Reproduction"/>
<cc:permits rdf:resource="http://web.resource.org/cc/Distribution"/>
<cc:requires rdf:resource="http://web.resource.org/cc/Notice"/>
<cc:requires rdf:resource="http://web.resource.org/cc/Attribution"/>
<cc:permits rdf:resource="http://web.resource.org/cc/DerivativeWorks"/>
<cc:requires rdf:resource="http://web.resource.org/cc/ShareAlike"/>
</cc:License>
</rdf:RDF>
</metadata>
<g id="layer1" inkscape:label="Layer 1" inkscape:groupmode="layer" style="display:inline">
<g id="g1908" transform="translate(-182.9996,-121.0000)">
<path transform="matrix(-1.342316,0.000000,0.000000,0.565685,240.3391,137.6471)" d="M 40.481863 36.421127 A 15.644737 8.3968935 0 1 1 9.1923885,36.421127 A 15.644737 8.3968935 0 1 1 40.481863 36.421127 z" sodipodi:ry="8.3968935" sodipodi:rx="15.644737" sodipodi:cy="36.421127" sodipodi:cx="24.837126" id="path2987" style="opacity:0.03999999;color:#000000;fill:url(#radialGradient1982);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" sodipodi:type="arc" inkscape:export-filename="/home/lapo/Desktop/Grafica/Icone/media-actions.png" inkscape:export-xdpi="90" inkscape:export-ydpi="90"/>
<g id="g1895">
<g id="g1990">
<g transform="translate(38.00000,0.000000)" inkscape:export-ydpi="90" inkscape:export-xdpi="90" inkscape:export-filename="/home/lapo/Desktop/Grafica/Icone/media-actions.png" id="g3094">
<path inkscape:export-ydpi="90" inkscape:export-xdpi="90" inkscape:export-filename="/home/lapo/Desktop/Grafica/Icone/media-actions.png" sodipodi:nodetypes="cccc" id="path2993" d="M 169.4996,134.5 L 186.9996,145 L 169.4996,155.5 L 169.4996,134.5 z " style="color:#000000;fill:url(#radialGradient3092);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.0000006;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"/>
<use x="0" y="0" xlink:href="#path2993" id="use3082" transform="translate(-18.00000,0.000000)" width="48" height="48"/>
</g>
<g inkscape:export-ydpi="90" inkscape:export-xdpi="90" inkscape:export-filename="/home/lapo/Desktop/Grafica/Icone/media-actions.png" transform="translate(-9.000000,0.000000)" style="opacity:0.2;display:inline" id="g3286">
<path sodipodi:nodetypes="cccccccc" style="opacity:0.35135133;color:#000000;fill:url(#linearGradient3296);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" d="M 223.9375,151.03125 L 216.5,151.71875 L 216.5,155.5 L 223.9375,151.03125 z M 202.65625,153 L 198.5,153.375 L 198.5,155.5 L 202.65625,153 z " id="path3288"/>
<path sodipodi:nodetypes="cccccccccc" style="opacity:0.35135133;color:#000000;fill:url(#linearGradient3298);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" d="M 216.71875,134.625 L 216.5,134.65625 L 216.5,136.65625 L 219.625,136.375 L 216.71875,134.625 z M 201.09375,136.0625 L 198.5,136.3125 L 198.5,138.3125 L 204.03125,137.8125 L 201.09375,136.0625 z " id="path3290"/>
<path sodipodi:nodetypes="cccccccccc" style="opacity:0.35135133;color:#000000;fill:url(#linearGradient3300);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" d="M 222.5,138.09375 L 216.5,138.65625 L 216.5,141.6875 L 226.875,140.71875 L 222.5,138.09375 z M 206.90625,139.5625 L 198.5,140.34375 L 198.5,143.34375 L 211.25,142.15625 L 206.90625,139.5625 z " id="path3292"/>
<path sodipodi:nodetypes="cccccccccccc" style="opacity:0.35135133;color:#000000;fill:url(#linearGradient3302);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" d="M 229.78125,142.46875 L 216.5,143.6875 L 216.5,149.71875 L 227.90625,148.65625 L 234,145 L 229.78125,142.46875 z M 214.1875,143.90625 L 198.5,145.34375 L 198.5,151.375 L 206.625,150.625 L 216,145 L 214.1875,143.90625 z " id="path3294"/>
</g>
</g>
<path style="color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient1877);stroke-width:1.0000006;stroke-linecap:square;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" d="M 207.5,155.5 L 225,145 L 207.5,134.5 L 207.5,155.5 z M 189.5,155.5 L 207,145 L 189.5,134.5 L 189.5,155.5 z " id="path1875" sodipodi:nodetypes="cccccccc"/>
<path style="color:#000000;fill:url(#linearGradient1883);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" d="M 207.96875,154.625 L 224,145 L 207.96875,135.375 L 207.96875,154.625 z M 189.96875,154.625 L 206,145 L 189.96875,135.375 L 189.96875,154.625 z M 208.96875,152.84375 L 208.96875,137.15625 L 222.0625,145 L 208.96875,152.84375 z M 190.96875,152.84375 L 190.96875,137.15625 L 204.0625,145 L 190.96875,152.84375 z " id="path1881" sodipodi:nodetypes="cccccccccccccccc"/>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 13 KiB

View File

@ -0,0 +1,112 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://web.resource.org/cc/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" width="48px" height="48px" id="svg1307" sodipodi:version="0.32" inkscape:version="0.43+devel" sodipodi:docbase="/home/jimmac/src/cvs/tango-icon-theme/scalable/actions" sodipodi:docname="media-skip-backward.svg" inkscape:export-filename="/home/lapo/Desktop/Grafica/Icone/media-actions-outlines.png" inkscape:export-xdpi="90" inkscape:export-ydpi="90">
<defs id="defs1309">
<linearGradient id="linearGradient2584">
<stop style="stop-color:#000000;stop-opacity:1;" offset="0" id="stop2586"/>
<stop style="stop-color:#ffffff;stop-opacity:0;" offset="1" id="stop2588"/>
</linearGradient>
<linearGradient id="linearGradient5075">
<stop style="stop-color:#adb0a8;stop-opacity:1;" offset="0" id="stop5077"/>
<stop style="stop-color:#464744;stop-opacity:1" offset="1" id="stop5079"/>
</linearGradient>
<linearGradient id="linearGradient2679" inkscape:collect="always">
<stop id="stop2681" offset="0" style="stop-color:#ffffff;stop-opacity:1"/>
<stop id="stop2683" offset="1" style="stop-color:#d3d7cf"/>
</linearGradient>
<linearGradient id="linearGradient2591">
<stop id="stop2593" offset="0" style="stop-color:#ffffff;stop-opacity:1;"/>
<stop id="stop2595" offset="1" style="stop-color:#eeeeec;stop-opacity:0"/>
</linearGradient>
<linearGradient inkscape:collect="always" id="linearGradient8662">
<stop style="stop-color:#000000;stop-opacity:1;" offset="0" id="stop8664"/>
<stop style="stop-color:#000000;stop-opacity:0;" offset="1" id="stop8666"/>
</linearGradient>
<radialGradient inkscape:collect="always" xlink:href="#linearGradient8662" id="radialGradient2156" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.000000,0.000000,0.000000,0.536723,4.942425e-14,16.87306)" cx="24.837126" cy="36.421127" fx="24.837126" fy="36.421127" r="15.644737"/>
<radialGradient inkscape:collect="always" xlink:href="#linearGradient2679" id="radialGradient2158" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.222659,-0.996273,2.129992,0.476041,-260.9464,141.8517)" cx="64.227074" cy="147.99352" fx="64.227074" fy="147.99352" r="8.75"/>
<radialGradient inkscape:collect="always" xlink:href="#linearGradient2679" id="radialGradient2160" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.222659,-0.996273,2.129992,0.476041,-278.9464,141.8517)" cx="64.227074" cy="147.99352" fx="64.227074" fy="147.99352" r="8.75"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient2584" id="linearGradient2162" gradientUnits="userSpaceOnUse" gradientTransform="translate(3.009087,23.73787)" x1="48.103603" y1="130.02055" x2="49.829826" y2="140.76149"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient2584" id="linearGradient2164" gradientUnits="userSpaceOnUse" gradientTransform="translate(3.009087,23.73787)" x1="49.430401" y1="112.94963" x2="49.667324" y2="115.13713"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient2584" id="linearGradient2166" gradientUnits="userSpaceOnUse" gradientTransform="translate(3.009081,23.73785)" x1="49.763771" y1="116.74653" x2="50.000694" y2="119.57739"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient2584" id="linearGradient2168" gradientUnits="userSpaceOnUse" gradientTransform="translate(3.009087,23.73787)" x1="49.509373" y1="121.87539" x2="50.22015" y2="128.16838"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient2591" id="linearGradient2170" gradientUnits="userSpaceOnUse" x1="50.008724" y1="135" x2="53" y2="147.93085"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient2591" id="linearGradient2172" gradientUnits="userSpaceOnUse" x1="89" y1="140.49017" x2="89" y2="150.04472"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient5075" id="linearGradient2174" gradientUnits="userSpaceOnUse" x1="48" y1="134.99147" x2="48.889362" y2="148.063"/>
</defs>
<sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="1" inkscape:cx="101.10997" inkscape:cy="-38.264327" inkscape:current-layer="layer1" showgrid="false" inkscape:grid-bbox="true" inkscape:document-units="px" gridspacingx="0.5px" gridspacingy="0.5px" gridempspacing="2" inkscape:grid-points="true" fill="#fcaf3e" showguides="false" inkscape:guide-bbox="true" guidetolerance="1px" stroke="#729fcf" inkscape:window-width="1144" inkscape:window-height="808" inkscape:window-x="0" inkscape:window-y="26" showborder="false">
<sodipodi:guide orientation="horizontal" position="38.996647" id="guide2194"/>
<sodipodi:guide orientation="horizontal" position="9.0140845" id="guide2196"/>
<sodipodi:guide orientation="vertical" position="9.0140845" id="guide2198"/>
<sodipodi:guide orientation="vertical" position="38.975184" id="guide2200"/>
<sodipodi:guide orientation="horizontal" position="22.988281" id="guide2202"/>
<sodipodi:guide orientation="vertical" position="23.908786" id="guide2204"/>
<sodipodi:guide orientation="vertical" position="157.99417" id="guide4332"/>
<sodipodi:guide orientation="horizontal" position="-36.062446" id="guide4334"/>
<sodipodi:guide orientation="horizontal" position="-58.02695" id="guide4336"/>
<sodipodi:guide orientation="vertical" position="180.00287" id="guide4338"/>
<sodipodi:guide orientation="vertical" position="107.92217" id="guide4417"/>
<sodipodi:guide orientation="vertical" position="129.93087" id="guide4419"/>
<sodipodi:guide orientation="horizontal" position="19.996875" id="guide5106"/>
<sodipodi:guide orientation="horizontal" position="63.039674" id="guide5119"/>
<sodipodi:guide orientation="horizontal" position="49.066305" id="guide5121"/>
<sodipodi:guide orientation="horizontal" position="-87.043372" id="guide5307"/>
<sodipodi:guide orientation="horizontal" position="-102.03286" id="guide5309"/>
<sodipodi:guide orientation="horizontal" position="-100.04058" id="guide3111"/>
<sodipodi:guide orientation="horizontal" position="-92.545841" id="guide1879"/>
</sodipodi:namedview>
<metadata id="metadata1312">
<rdf:RDF>
<cc:Work rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
<dc:title>Media Skip Backward</dc:title>
<dc:creator>
<cc:Agent>
<dc:title>Lapo Calamandrei</dc:title>
</cc:Agent>
</dc:creator>
<cc:license rdf:resource="http://creativecommons.org/licenses/by-sa/2.0/"/>
<dc:subject>
<rdf:Bag>
<rdf:li>media</rdf:li>
<rdf:li>player</rdf:li>
<rdf:li>video</rdf:li>
<rdf:li>sound</rdf:li>
<rdf:li>seek</rdf:li>
<rdf:li>skip</rdf:li>
<rdf:li>previous</rdf:li>
</rdf:Bag>
</dc:subject>
</cc:Work>
<cc:License rdf:about="http://creativecommons.org/licenses/by-sa/2.0/">
<cc:permits rdf:resource="http://web.resource.org/cc/Reproduction"/>
<cc:permits rdf:resource="http://web.resource.org/cc/Distribution"/>
<cc:requires rdf:resource="http://web.resource.org/cc/Notice"/>
<cc:requires rdf:resource="http://web.resource.org/cc/Attribution"/>
<cc:permits rdf:resource="http://web.resource.org/cc/DerivativeWorks"/>
<cc:requires rdf:resource="http://web.resource.org/cc/ShareAlike"/>
</cc:License>
</rdf:RDF>
</metadata>
<g id="layer1" inkscape:label="Layer 1" inkscape:groupmode="layer" style="display:inline">
<g id="g2196" transform="translate(-82.99956,-121.0000)">
<path transform="matrix(1.534050,0.000000,0.000000,0.565685,68.89842,137.6471)" d="M 40.481863 36.421127 A 15.644737 8.3968935 0 1 1 9.1923885,36.421127 A 15.644737 8.3968935 0 1 1 40.481863 36.421127 z" sodipodi:ry="8.3968935" sodipodi:rx="15.644737" sodipodi:cy="36.421127" sodipodi:cx="24.837126" id="path2469" style="opacity:0.03999999;color:#000000;fill:url(#radialGradient2156);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" sodipodi:type="arc" inkscape:export-filename="/home/lapo/Desktop/Grafica/Icone/media-actions.png" inkscape:export-xdpi="90" inkscape:export-ydpi="90"/>
<g transform="translate(38.00000,0.000000)" id="g2941">
<g id="g5418">
<path style="color:#000000;fill:url(#radialGradient2158);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.0000006;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" d="M 71.5,134.5 L 54,145 L 71.5,155.5 L 71.5,134.5 z " id="path5366" sodipodi:nodetypes="cccc" inkscape:export-filename="/home/lapo/Desktop/Grafica/Icone/media-actions.png" inkscape:export-xdpi="90" inkscape:export-ydpi="90"/>
<use height="48" width="48" transform="translate(18.00000,0.000000)" id="use5400" xlink:href="#path5366" y="0" x="0"/>
</g>
<path style="color:#000000;fill:url(#radialGradient2160);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.0000006;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" d="M 53.5,134.5 L 48.5,134.5 L 48.5,155.5 L 53.5,155.5 L 53.5,134.5 z " id="path5422" sodipodi:nodetypes="ccccc" inkscape:export-filename="/home/lapo/Desktop/Grafica/Icone/media-actions.png" inkscape:export-xdpi="90" inkscape:export-ydpi="90"/>
<g id="g2905" style="opacity:0.2">
<path id="rect1682" d="M 89.5,150.15625 L 81.78125,150.875 L 89.5,155.5 L 89.5,150.15625 z M 71.5,151.8125 L 66.1875,152.3125 L 71.5,155.5 L 71.5,151.8125 z M 53.5,153.46875 L 48.5,153.9375 L 48.5,155.5 L 53.5,155.5 L 53.5,153.46875 z " style="opacity:0.35135133;color:#000000;fill:url(#linearGradient2162);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"/>
<path id="rect1676" d="M 89.5,134.5 L 88.3125,135.21875 L 89.5,135.09375 L 89.5,134.5 z M 71.5,134.75 L 71.03125,134.78125 L 67.0625,137.15625 L 71.5,136.75 L 71.5,134.75 z M 53.5,136.40625 L 48.5,136.84375 L 48.5,138.875 L 53.5,138.40625 L 53.5,136.40625 z " style="opacity:0.35135133;color:#000000;fill:url(#linearGradient2164);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"/>
<path id="rect1678" d="M 89.5,137.09375 L 84.40625,137.5625 L 78.4375,141.125 L 89.5,140.125 L 89.5,137.09375 z M 71.5,138.75 L 63.125,139.53125 L 57.1875,143.09375 L 71.5,141.78125 L 71.5,138.75 z M 53.5,140.4375 L 48.5,140.875 L 48.5,143.875 L 53.5,143.4375 L 53.5,140.4375 z " style="opacity:0.35135133;color:#000000;fill:url(#linearGradient2166);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"/>
<path id="rect1680" d="M 89.5,142.125 L 74.46875,143.5 L 72,145 L 78.875,149.125 L 89.5,148.15625 L 89.5,142.125 z M 71.5,143.78125 L 54.5625,145.34375 L 63.28125,150.5625 L 71.5,149.8125 L 71.5,143.78125 z M 53.5,145.4375 L 48.5,145.90625 L 48.5,151.90625 L 53.5,151.46875 L 53.5,145.4375 z " style="opacity:0.35135133;color:#000000;fill:url(#linearGradient2168);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"/>
</g>
<rect style="color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient2170);stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" id="rect5434" width="3" height="19" x="49.5" y="135.5"/>
<path style="color:#000000;fill:url(#linearGradient2172);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" d="M 71,135.375 L 54.96875,145 L 71,154.625 L 71,135.375 z M 89,135.375 L 72.96875,145 L 89,154.625 L 89,135.375 z M 70,137.15625 L 70,152.84375 L 56.90625,145 L 70,137.15625 z M 88,137.15625 L 88,152.84375 L 74.90625,145 L 88,137.15625 z " id="path5445" sodipodi:nodetypes="cccccccccccccccc"/>
<path style="color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient2174);stroke-width:1;stroke-linecap:square;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" d="M 48.5,134.5 L 48.5,155.5 L 53.5,155.5 L 53.5,134.5 L 48.5,134.5 z M 71.5,134.5 L 54,145 L 71.5,155.5 L 71.5,134.5 z M 89.5,134.5 L 72,145 L 89.5,155.5 L 89.5,134.5 z " id="path5342"/>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 15 KiB

View File

@ -0,0 +1,115 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://web.resource.org/cc/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" width="48px" height="48px" id="svg1307" sodipodi:version="0.32" inkscape:version="0.43+devel" sodipodi:docbase="/home/jimmac/src/cvs/tango-icon-theme/scalable/actions" sodipodi:docname="media-skip-forward.svg" inkscape:export-filename="/home/lapo/Desktop/Grafica/Icone/media-actions-outlines.png" inkscape:export-xdpi="90" inkscape:export-ydpi="90">
<defs id="defs1309">
<linearGradient id="linearGradient2584">
<stop style="stop-color:#000000;stop-opacity:1;" offset="0" id="stop2586"/>
<stop style="stop-color:#ffffff;stop-opacity:0;" offset="1" id="stop2588"/>
</linearGradient>
<linearGradient id="linearGradient5075">
<stop style="stop-color:#adb0a8;stop-opacity:1;" offset="0" id="stop5077"/>
<stop style="stop-color:#464744;stop-opacity:1" offset="1" id="stop5079"/>
</linearGradient>
<linearGradient id="linearGradient2679" inkscape:collect="always">
<stop id="stop2681" offset="0" style="stop-color:#ffffff;stop-opacity:1"/>
<stop id="stop2683" offset="1" style="stop-color:#d3d7cf"/>
</linearGradient>
<linearGradient id="linearGradient2591">
<stop id="stop2593" offset="0" style="stop-color:#ffffff;stop-opacity:1;"/>
<stop id="stop2595" offset="1" style="stop-color:#eeeeec;stop-opacity:0"/>
</linearGradient>
<linearGradient inkscape:collect="always" id="linearGradient8662">
<stop style="stop-color:#000000;stop-opacity:1;" offset="0" id="stop8664"/>
<stop style="stop-color:#000000;stop-opacity:0;" offset="1" id="stop8666"/>
</linearGradient>
<radialGradient inkscape:collect="always" xlink:href="#linearGradient8662" id="radialGradient2313" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.000000,0.000000,0.000000,0.536723,-1.722274e-12,16.87306)" cx="24.837126" cy="36.421127" fx="24.837126" fy="36.421127" r="15.644737"/>
<radialGradient inkscape:collect="always" xlink:href="#linearGradient2679" id="radialGradient2315" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-0.222659,-0.996273,-2.129992,0.476041,604.9460,141.8517)" cx="64.227074" cy="147.99352" fx="64.227074" fy="147.99352" r="8.75"/>
<radialGradient inkscape:collect="always" xlink:href="#linearGradient2679" id="radialGradient2317" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.264218,-0.986066,-2.238896,-0.599910,486.6020,298.4876)" cx="64.214218" cy="146.18817" fx="64.214218" fy="146.18817" r="8.75"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient2584" id="linearGradient2319" gradientUnits="userSpaceOnUse" gradientTransform="translate(146.4002,36.96061)" x1="53.931114" y1="116.38297" x2="54.390476" y2="122.29481"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient2584" id="linearGradient2321" gradientUnits="userSpaceOnUse" gradientTransform="translate(146.4002,36.96061)" x1="53.017841" y1="99.445641" x2="53.201031" y2="101.35189"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient2584" id="linearGradient2323" gradientUnits="userSpaceOnUse" gradientTransform="translate(146.4002,36.96061)" x1="54.346024" y1="102.97689" x2="54.712406" y2="106.38314"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient8662" id="linearGradient2325" gradientUnits="userSpaceOnUse" gradientTransform="translate(146.4002,36.96061)" x1="55.934441" y1="107.94752" x2="56.941994" y2="113.80963"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient2591" id="linearGradient2327" gradientUnits="userSpaceOnUse" gradientTransform="translate(-326.0000,-290.0000)" x1="52.048431" y1="155" x2="49" y2="142.00146"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient2591" id="linearGradient2329" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-1.000000,0.000000,0.000000,-1.000000,326.0000,290.0000)" x1="89" y1="149.4554" x2="89" y2="140.03592"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient5075" id="linearGradient2331" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-1.000000,4.681043e-17,-4.681043e-17,-1.000000,326.0000,290.0000)" x1="90" y1="155.00908" x2="89.066872" y2="142.03874"/>
<radialGradient inkscape:collect="always" xlink:href="#linearGradient2679" id="radialGradient1535" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.264218,-0.986066,-2.238896,-0.599910,468.6020,298.4876)" cx="64.214218" cy="146.18817" fx="64.214218" fy="146.18817" r="8.75"/>
</defs>
<sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="0.10196078" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="8" inkscape:cx="34.769485" inkscape:cy="9.8471794" inkscape:current-layer="layer1" showgrid="false" inkscape:grid-bbox="true" inkscape:document-units="px" gridspacingx="0.5px" gridspacingy="0.5px" gridempspacing="2" inkscape:grid-points="true" fill="#fcaf3e" showguides="false" inkscape:guide-bbox="true" guidetolerance="1px" stroke="#729fcf" inkscape:window-width="961" inkscape:window-height="839" inkscape:window-x="401" inkscape:window-y="18" showborder="true" inkscape:showpageshadow="false">
<sodipodi:guide orientation="horizontal" position="38.996647" id="guide2194"/>
<sodipodi:guide orientation="horizontal" position="9.0140845" id="guide2196"/>
<sodipodi:guide orientation="vertical" position="9.0140845" id="guide2198"/>
<sodipodi:guide orientation="vertical" position="38.975184" id="guide2200"/>
<sodipodi:guide orientation="horizontal" position="22.988281" id="guide2202"/>
<sodipodi:guide orientation="vertical" position="23.908786" id="guide2204"/>
<sodipodi:guide orientation="vertical" position="157.99417" id="guide4332"/>
<sodipodi:guide orientation="horizontal" position="-36.062446" id="guide4334"/>
<sodipodi:guide orientation="horizontal" position="-58.02695" id="guide4336"/>
<sodipodi:guide orientation="vertical" position="180.00287" id="guide4338"/>
<sodipodi:guide orientation="vertical" position="107.92217" id="guide4417"/>
<sodipodi:guide orientation="vertical" position="129.93087" id="guide4419"/>
<sodipodi:guide orientation="horizontal" position="19.996875" id="guide5106"/>
<sodipodi:guide orientation="horizontal" position="63.039674" id="guide5119"/>
<sodipodi:guide orientation="horizontal" position="49.066305" id="guide5121"/>
<sodipodi:guide orientation="horizontal" position="-87.043372" id="guide5307"/>
<sodipodi:guide orientation="horizontal" position="-102.03286" id="guide5309"/>
<sodipodi:guide orientation="horizontal" position="-100.04058" id="guide3111"/>
<sodipodi:guide orientation="horizontal" position="-92.545841" id="guide1879"/>
</sodipodi:namedview>
<metadata id="metadata1312">
<rdf:RDF>
<cc:Work rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
<dc:title>Media Skip Forward</dc:title>
<dc:creator>
<cc:Agent>
<dc:title>Lapo Calamandrei</dc:title>
</cc:Agent>
</dc:creator>
<cc:license rdf:resource="http://creativecommons.org/licenses/by-sa/2.0/"/>
<dc:subject>
<rdf:Bag>
<rdf:li>media</rdf:li>
<rdf:li>seek</rdf:li>
<rdf:li>skip</rdf:li>
<rdf:li>forward</rdf:li>
<rdf:li>player</rdf:li>
<rdf:li>music</rdf:li>
<rdf:li>video</rdf:li>
</rdf:Bag>
</dc:subject>
</cc:Work>
<cc:License rdf:about="http://creativecommons.org/licenses/by-sa/2.0/">
<cc:permits rdf:resource="http://web.resource.org/cc/Reproduction"/>
<cc:permits rdf:resource="http://web.resource.org/cc/Distribution"/>
<cc:requires rdf:resource="http://web.resource.org/cc/Notice"/>
<cc:requires rdf:resource="http://web.resource.org/cc/Attribution"/>
<cc:permits rdf:resource="http://web.resource.org/cc/DerivativeWorks"/>
<cc:requires rdf:resource="http://web.resource.org/cc/ShareAlike"/>
</cc:License>
</rdf:RDF>
</metadata>
<g id="layer1" inkscape:label="Layer 1" inkscape:groupmode="layer" style="display:inline">
<g id="g1983" transform="translate(-232.9996,-121.0000)">
<path transform="matrix(-1.534050,0.000000,0.000000,0.565685,295.1012,137.6471)" d="M 40.481863 36.421127 A 15.644737 8.3968935 0 1 1 9.1923885,36.421127 A 15.644737 8.3968935 0 1 1 40.481863 36.421127 z" sodipodi:ry="8.3968935" sodipodi:rx="15.644737" sodipodi:cy="36.421127" sodipodi:cx="24.837126" id="path3100" style="opacity:0.03999999;color:#000000;fill:url(#radialGradient2313);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" sodipodi:type="arc" inkscape:export-filename="/home/lapo/Desktop/Grafica/Icone/media-actions.png" inkscape:export-xdpi="90" inkscape:export-ydpi="90"/>
<g id="g1950">
<g id="g1952">
<path inkscape:export-ydpi="90" inkscape:export-xdpi="90" inkscape:export-filename="/home/lapo/Desktop/Grafica/Icone/media-actions.png" sodipodi:nodetypes="ccccc" id="path3110" d="M 272.4996,134.5 L 277.4996,134.5 L 277.4996,155.5 L 272.4996,155.5 L 272.4996,134.5 z " style="color:#000000;fill:url(#radialGradient2315);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.0000006;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"/>
<g inkscape:export-ydpi="90" inkscape:export-xdpi="90" inkscape:export-filename="/home/lapo/Desktop/Grafica/Icone/media-actions.png" transform="translate(85.00040,0.000000)" id="g3200" style="display:inline">
<path inkscape:export-ydpi="90" inkscape:export-xdpi="90" inkscape:export-filename="/home/lapo/Desktop/Grafica/Icone/media-actions.png" sodipodi:nodetypes="cccc" id="path3202" d="M 169.4996,134.5 L 186.9996,145 L 169.4996,155.5 L 169.4996,134.5 z " style="color:#000000;fill:url(#radialGradient2317);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.0000006;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"/>
<path style="color:#000000;fill:url(#radialGradient1535);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.0000006;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" d="M 151.4996,134.5 L 168.9996,145 L 151.4996,155.5 L 151.4996,134.5 z " id="use3204" sodipodi:nodetypes="cccc" inkscape:export-filename="/home/lapo/Desktop/Grafica/Icone/media-actions.png" inkscape:export-xdpi="90" inkscape:export-ydpi="90"/>
</g>
<g transform="translate(38.00000,0.000000)" inkscape:export-ydpi="90" inkscape:export-xdpi="90" inkscape:export-filename="/home/lapo/Desktop/Grafica/Icone/media-actions.png" style="opacity:0.2" id="g3280">
<path style="opacity:0.35135133;color:#000000;fill:url(#linearGradient2319);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" d="M 239.5,149.625 L 234.5,150.0625 L 234.5,155.5 L 239.5,155.5 L 239.5,149.625 z M 223.9375,151.03125 L 216.5,151.71875 L 216.5,155.5 L 223.9375,151.03125 z M 202.65625,153 L 198.5,153.375 L 198.5,155.5 L 202.65625,153 z " id="rect3237"/>
<path style="opacity:0.35135133;color:#000000;fill:url(#linearGradient2321);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" d="M 234.5,134.5 L 234.5,135 L 239.5,134.5625 L 239.5,134.5 L 234.5,134.5 z M 216.71875,134.625 L 216.5,134.65625 L 216.5,136.65625 L 219.625,136.375 L 216.71875,134.625 z M 201.09375,136.0625 L 198.5,136.3125 L 198.5,138.3125 L 204.03125,137.8125 L 201.09375,136.0625 z " id="rect3231"/>
<path style="opacity:0.35135133;color:#000000;fill:url(#linearGradient2323);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" d="M 239.5,136.53125 L 234.5,137 L 234.5,140.03125 L 239.5,139.5625 L 239.5,136.53125 z M 222.5,138.09375 L 216.5,138.65625 L 216.5,141.6875 L 226.875,140.71875 L 222.5,138.09375 z M 206.90625,139.5625 L 198.5,140.34375 L 198.5,143.34375 L 211.25,142.15625 L 206.90625,139.5625 z " id="rect3233"/>
<path style="opacity:0.35135133;color:#000000;fill:url(#linearGradient2325);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" d="M 239.5,141.5625 L 234.5,142.03125 L 234.5,148.0625 L 239.5,147.59375 L 239.5,141.5625 z M 229.78125,142.46875 L 216.5,143.6875 L 216.5,149.71875 L 227.90625,148.65625 L 234,145 L 229.78125,142.46875 z M 214.1875,143.90625 L 198.5,145.34375 L 198.5,151.375 L 206.625,150.625 L 216,145 L 214.1875,143.90625 z " id="rect3235"/>
</g>
</g>
<rect transform="scale(-1.000000,-1.000000)" style="color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient2327);stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" id="rect1923" width="3" height="19" x="-276.5" y="-154.5"/>
<path style="color:#000000;fill:url(#linearGradient2329);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" d="M 255,154.625 L 271.03125,145 L 255,135.375 L 255,154.625 z M 237,154.625 L 253.03125,145 L 237,135.375 L 237,154.625 z M 256,152.84375 L 256,137.15625 L 269.09375,145 L 256,152.84375 z M 238,152.84375 L 238,137.15625 L 251.09375,145 L 238,152.84375 z " id="path1925" sodipodi:nodetypes="cccccccccccccccc"/>
<path style="color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient2331);stroke-width:1;stroke-linecap:square;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" d="M 277.5,155.5 L 277.5,134.5 L 272.5,134.5 L 272.5,155.5 L 277.5,155.5 z M 254.5,155.5 L 272,145 L 254.5,134.5 L 254.5,155.5 z M 236.5,155.5 L 254,145 L 236.5,134.5 L 236.5,155.5 z " id="path1935"/>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 16 KiB

View File

@ -0,0 +1,105 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg id="svg249" xmlns="http://www.w3.org/2000/svg" height="48" width="48" version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs id="defs3">
<radialGradient id="radialGradient15656" gradientUnits="userSpaceOnUse" cy="3.7561" cx="8.8244" gradientTransform="matrix(.96827 0 0 1.0328 3.3536 .64645)" r="37.752">
<stop id="stop270" stop-color="#a3a3a3" offset="0"/>
<stop id="stop271" stop-color="#4c4c4c" offset="1"/>
</radialGradient>
<radialGradient id="radialGradient15658" gradientUnits="userSpaceOnUse" cy="35.737" cx="33.967" gradientTransform="scale(.96049 1.0411)" r="86.708">
<stop id="stop260" stop-color="#fafafa" offset="0"/>
<stop id="stop261" stop-color="#bbb" offset="1"/>
</radialGradient>
<radialGradient id="radialGradient15668" gradientUnits="userSpaceOnUse" cy="7.2679" cx="8.1436" gradientTransform="matrix(.96827 0 0 1.0328 3.3536 .64645)" r="38.159">
<stop id="stop15664" stop-color="#fff" offset="0"/>
<stop id="stop15666" stop-color="#f8f8f8" offset="1"/>
</radialGradient>
<radialGradient id="radialGradient4548" gradientUnits="userSpaceOnUse" cy="42.078" cx="24.307" gradientTransform="matrix(1 0 0 .28492 0 30.089)" r="15.822">
<stop id="stop4544" offset="0"/>
<stop id="stop4546" stop-opacity="0" offset="1"/>
</radialGradient>
<linearGradient id="linearGradient2696" y2="24.842" gradientUnits="userSpaceOnUse" x2="37.124" y1="30.749" x1="32.648">
<stop id="stop2692" stop-color="#c4d7eb" offset="0"/>
<stop id="stop2694" stop-color="#c4d7eb" stop-opacity="0" offset="1"/>
</linearGradient>
<linearGradient id="linearGradient2688" y2="24.842" gradientUnits="userSpaceOnUse" x2="37.124" y1="31.456" x1="36.714">
<stop id="stop2684" stop-color="#3977c3" offset="0"/>
<stop id="stop2686" stop-color="#89aedc" stop-opacity="0" offset="1"/>
</linearGradient>
<linearGradient id="linearGradient2408" y2="26.649" xlink:href="#linearGradient2402" gradientUnits="userSpaceOnUse" x2="53.589" y1="23.668" x1="18.936"/>
<linearGradient id="linearGradient2386" y2="20.609" xlink:href="#linearGradient2380" gradientUnits="userSpaceOnUse" x2="15.985" y1="36.061" x1="62.514"/>
<radialGradient id="radialGradient1503" gradientUnits="userSpaceOnUse" cy="36.421" cx="24.837" gradientTransform="matrix(1 0 0 .53672 0 16.873)" r="15.645">
<stop id="stop8664" offset="0"/>
<stop id="stop8666" stop-opacity="0" offset="1"/>
</radialGradient>
<linearGradient id="linearGradient1501" y2="50.94" xlink:href="#linearGradient2871" gradientUnits="userSpaceOnUse" x2="45.38" y1="45.264" x1="46.835"/>
<linearGradient id="linearGradient1493" y2="26.048" xlink:href="#linearGradient2797" gradientUnits="userSpaceOnUse" x2="52.854" y1="26.048" x1="5.9649"/>
<linearGradient id="linearGradient1488" y2="26.194" gradientUnits="userSpaceOnUse" x2="37.065" gradientTransform="matrix(-1 0 0 -1 47.528 45.847)" y1="29.73" x1="37.128">
<stop id="stop2849" stop-color="#3465a4" offset="0"/>
<stop id="stop2851" stop-color="#3465a4" stop-opacity="0" offset="1"/>
</linearGradient>
<linearGradient id="linearGradient1486" y2="19.115" gradientUnits="userSpaceOnUse" x2="15.419" gradientTransform="translate(.46541 -.27759)" y1="10.612" x1="13.479">
<stop id="stop2833" stop-color="#3465a4" offset="0"/>
<stop id="stop2855" stop-color="#5b86be" offset=".33333"/>
<stop id="stop2835" stop-color="#83a8d8" stop-opacity="0" offset="1"/>
</linearGradient>
<linearGradient id="linearGradient2797">
<stop id="stop2799" stop-color="#fff" offset="0"/>
<stop id="stop2801" stop-color="#fff" stop-opacity="0" offset="1"/>
</linearGradient>
<linearGradient id="linearGradient2871">
<stop id="stop2873" stop-color="#3465a4" offset="0"/>
<stop id="stop2875" stop-color="#3465a4" offset="1"/>
</linearGradient>
<linearGradient id="linearGradient2380">
<stop id="stop2382" stop-color="#b9cfe7" offset="0"/>
<stop id="stop2384" stop-color="#729fcf" offset="1"/>
</linearGradient>
<linearGradient id="linearGradient2402">
<stop id="stop2404" stop-color="#729fcf" offset="0"/>
<stop id="stop2406" stop-color="#528ac5" offset="1"/>
</linearGradient>
<radialGradient id="radialGradient3978" gradientUnits="userSpaceOnUse" cy="64.568" cx="20.892" gradientTransform="matrix(.29695 0 0 .29695 3.6844 -.53993)" r="5.257">
<stop id="stop15573" stop-color="#f0f0f0" offset="0"/>
<stop id="stop15575" stop-color="#9a9a9a" offset="1"/>
</radialGradient>
<radialGradient id="radialGradient3981" gradientUnits="userSpaceOnUse" cy="114.57" cx="20.892" gradientTransform="matrix(.30368 0 0 .30368 3.5269 -4.6868)" r="5.256">
<stop id="stop15566" stop-color="#f0f0f0" offset="0"/>
<stop id="stop15568" stop-color="#9a9a9a" offset="1"/>
</radialGradient>
</defs>
<g id="layer6">
<path id="path3667" opacity=".78363" style="color:#000000" d="m40.128 42.078a15.822 4.5078 0 1 1 -31.643 0 15.822 4.5078 0 1 1 31.643 0z" fill-rule="evenodd" transform="translate(0 .70711)" fill="url(#radialGradient4548)"/>
</g>
<g id="layer1">
<rect id="rect15391" stroke-linejoin="round" style="color:#000000" display="block" ry="1.149" height="40.92" width="34.875" stroke="url(#radialGradient15656)" stroke-linecap="round" y="3.6464" x="6.6036" fill="url(#radialGradient15658)"/>
<rect id="rect15660" stroke-linejoin="round" style="color:#000000" display="block" rx=".14905" ry=".14905" height="38.946" width="32.776" stroke="url(#radialGradient15668)" stroke-linecap="round" y="4.5839" x="7.6661" fill="none"/>
<path id="path1448" d="m10.995 30.18c0 0.453-0.368 0.82-0.821 0.82-0.4532 0-0.8204-0.368-0.8204-0.82 0-0.45343 0.36752-0.82073 0.82073-0.82073 0.4532 0 0.82073 0.36752 0.82073 0.82073z" fill="#fff"/>
<path id="path1456" d="m10.995 18.694c0 0.4532-0.36752 0.82073-0.82073 0.82073-0.45343 0-0.82073-0.36752-0.82073-0.82073 0-0.45343 0.36752-0.82073 0.82073-0.82073 0.4532 0 0.82073 0.36752 0.82073 0.82073z" fill="#fff"/>
<path id="path15570" d="m10.641 29.65c0 0.59916-0.48588 1.0847-1.085 1.0847-0.59946 0-1.085-0.48588-1.085-1.0847 0-0.59946 0.48588-1.085 1.085-1.085 0.59916 0 1.085 0.48588 1.085 1.085z" stroke="#000" stroke-width=".1" fill="url(#radialGradient3981)"/>
<path id="path15577" d="m10.641 18.189c0 0.58589-0.47512 1.061-1.061 1.061-0.58619 0-1.061-0.47512-1.061-1.061 0-0.58619 0.47512-1.061 1.061-1.061 0.58589 0 1.061 0.47512 1.061 1.061z" stroke="#000" stroke-width=".1" fill="url(#radialGradient3978)"/>
<path id="path15672" d="m11.506 5.4943v37.907" stroke-opacity=".017544" stroke="#000" stroke-width=".98855" fill="none"/>
<path id="path15674" d="m12.5 5.0205v38.018" stroke-opacity=".20468" stroke="#fff" fill="none"/>
</g>
<g id="layer5">
<g id="layer1-8" transform="matrix(.70517 0 0 .66345 8.2759 9.5792)">
<path id="path8660" opacity=".38333" style="color:#000000" d="m40.482 36.421a15.645 8.3969 0 1 1 -31.289 0 15.645 8.3969 0 1 1 31.289 0z" fill-rule="evenodd" transform="matrix(-1.4897 0 0 -1.0013 61.209 75.282)" fill="url(#radialGradient1503)"/>
<path id="path2865" style="color:#000000" d="m20.153 10.41s-8.9375-0.625-6.1875 9.875h-7.6875s0.5-11.875 13.875-9.875z" display="block" stroke="url(#linearGradient1488)" fill="url(#linearGradient1486)"/>
<g id="g1878" transform="matrix(-.57905 -.48923 -.48923 .57905 56.916 13.371)" stroke="#3465a4" fill="url(#linearGradient2386)">
<path id="path1880" style="color:#000000" d="m44.307 50.23c18.514-14.411 5.358-36.818-21.845-37.732l-0.348-9.3465-14.49 17.346 15.09 12.721s-0.25192-9.8812-0.25192-9.8812c18.83 0.99898 32.982 14.072 21.844 26.892z" display="block" stroke="url(#linearGradient1501)" stroke-width="1.3192" fill="url(#linearGradient2386)"/>
</g>
<path id="path2839" style="color:#000000" d="m28.375 33.438s8.9375 0.625 6.1875-9.875h7.7759c0 1.5026-0.58839 11.875-13.963 9.875z" display="block" stroke="url(#linearGradient2688)" fill="url(#linearGradient2696)"/>
<g id="g2779" style="color:#000000" display="block" transform="matrix(.57905 .48923 .48923 -.57905 -7.921 30.536)" stroke="url(#linearGradient1501)" stroke-width="1.3192" fill="url(#linearGradient2408)">
<path id="path2781" style="color:#000000" d="m44.307 50.23c18.514-14.411 5.358-36.818-21.845-37.732l-0.063-9.429-14.605 17.355 14.668 12.582v-9.6684c18.83 0.99898 32.982 14.072 21.844 26.892z" display="block" stroke="url(#linearGradient1501)" stroke-width="1.3192" fill="url(#linearGradient2408)"/>
</g>
<path id="path2791" opacity=".27222" style="color:#000000" d="m7.0625 38.188 0.0625-14.875 12.938-0.375-4.3889 5.1788 3.8672 2.3732c-3 2.25-4.5495 2.4221-5.5495 4.9846l-2.818-2.111-4.1115 4.824z" fill="#fff"/>
<g id="g2793" opacity=".5" transform="matrix(.50854 .42965 .42965 -.50854 -3.9732 30.541)" stroke="#fff" fill="none">
<path id="path2795" style="color:#000000" d="m51.09 45.944c9.12-15.22-4.458-33.743-31.605-33.995l0.028-8.2457-12.979 15.594 12.834 10.972s0.05562-9.0069 0.05562-9.0069c17.528-0.22391 35.195 10.103 31.667 24.682z" display="block" stroke="url(#linearGradient1493)" stroke-width="1.5021" fill="none"/>
</g>
<g id="g2805" opacity=".5" transform="matrix(-.50854 -.42965 -.42965 .50854 53.049 13.365)" stroke="#fff" fill="none">
<path id="path2807" style="color:#000000" d="m51.39 46.506c9.12-15.22-4.339-34.074-31.762-34.436l-0.285-8.0193-13.002 15.328 13.468 11.386-0.18176-9.4532c18.245 0.38197 34.784 10.925 31.763 25.195z" display="block" stroke="url(#linearGradient1493)" stroke-width="1.5021" fill="none"/>
</g>
<path id="path2811" opacity=".27222" style="color:#000000" d="m6.8125 16.5c3.5935-10.441 16.444-6.145 20.188-4.5 4.175 0.211 5.675-2.835 9-3-14.05-9.79-28.812-6.5-29.188 7.5z" fill="#fff"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 9.6 KiB

View File

@ -0,0 +1,87 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" version="1.1" width="48" height="48" id="svg11300" inkscape:version="0.48.1 r9760" sodipodi:docname="View-zoom-1.svg">
<sodipodi:namedview pagecolor="#ffffff" bordercolor="#666666" borderopacity="1" objecttolerance="10" gridtolerance="10" guidetolerance="10" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-width="1820" inkscape:window-height="1056" id="namedview5046" showgrid="true" inkscape:zoom="16" inkscape:cx="26.40737" inkscape:cy="24.160965" inkscape:window-x="99" inkscape:window-y="0" inkscape:window-maximized="1" inkscape:current-layer="text3206">
<inkscape:grid type="xygrid" id="grid5048"/>
</sodipodi:namedview>
<defs id="defs3">
<linearGradient id="linearGradient2846">
<stop id="stop2848" style="stop-color:#8a8a8a;stop-opacity:1" offset="0"/>
<stop id="stop2850" style="stop-color:#484848;stop-opacity:1" offset="1"/>
</linearGradient>
<linearGradient id="linearGradient2366">
<stop id="stop2368" style="stop-color:#ffffff;stop-opacity:1" offset="0"/>
<stop id="stop2374" style="stop-color:#ffffff;stop-opacity:0.21904762" offset="0.5"/>
<stop id="stop2370" style="stop-color:#ffffff;stop-opacity:1" offset="1"/>
</linearGradient>
<linearGradient id="linearGradient4487">
<stop id="stop4489" style="stop-color:#ffffff;stop-opacity:1" offset="0"/>
<stop id="stop4491" style="stop-color:#ffffff;stop-opacity:0" offset="1"/>
</linearGradient>
<linearGradient id="linearGradient4477">
<stop id="stop4479" style="stop-color:#000000;stop-opacity:1" offset="0"/>
<stop id="stop4481" style="stop-color:#000000;stop-opacity:0" offset="1"/>
</linearGradient>
<linearGradient id="linearGradient4467">
<stop id="stop4469" style="stop-color:#ffffff;stop-opacity:1" offset="0"/>
<stop id="stop4471" style="stop-color:#ffffff;stop-opacity:0.24761905" offset="1"/>
</linearGradient>
<linearGradient id="linearGradient4454">
<stop id="stop4456" style="stop-color:#729fcf;stop-opacity:0.20784314" offset="0"/>
<stop id="stop4458" style="stop-color:#729fcf;stop-opacity:0.6761905" offset="1"/>
</linearGradient>
<linearGradient id="linearGradient4440">
<stop id="stop4442" style="stop-color:#7d7d7d;stop-opacity:1" offset="0"/>
<stop id="stop4448" style="stop-color:#b1b1b1;stop-opacity:1" offset="0.5"/>
<stop id="stop4444" style="stop-color:#686868;stop-opacity:1" offset="1"/>
</linearGradient>
<linearGradient x1="30.65625" y1="34" x2="33.21875" y2="31.0625" id="linearGradient4446" xlink:href="#linearGradient4440" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.334593,0,0,1.291292,-6.973842,-7.460658)"/>
<radialGradient cx="18.240929" cy="21.817987" r="8.3085051" fx="18.240929" fy="21.817987" id="radialGradient4460" xlink:href="#linearGradient4454" gradientUnits="userSpaceOnUse"/>
<radialGradient cx="15.414371" cy="13.078408" r="6.65625" fx="15.414371" fy="13.078408" id="radialGradient4473" xlink:href="#linearGradient4467" gradientUnits="userSpaceOnUse" gradientTransform="matrix(2.592963,0,0,2.252104,-25.05975,-18.941)"/>
<radialGradient cx="24.130018" cy="37.967922" r="16.528622" fx="24.130018" fy="37.967922" id="radialGradient4493" xlink:href="#linearGradient4487" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1,0,0,0.237968,0,28.93278)"/>
<linearGradient x1="18.292673" y1="13.602121" x2="17.500893" y2="25.743469" id="linearGradient2372" xlink:href="#linearGradient2366" gradientUnits="userSpaceOnUse"/>
<radialGradient cx="24.130018" cy="37.967922" r="16.528622" fx="24.130018" fy="37.967922" id="radialGradient2842" xlink:href="#linearGradient4477" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1,0,0,0.237968,0,28.93278)"/>
<linearGradient x1="27.366341" y1="26.580296" x2="31.335964" y2="30.557772" id="linearGradient2852" xlink:href="#linearGradient2846" gradientUnits="userSpaceOnUse"/>
</defs>
<metadata id="metadata4">
<rdf:RDF>
<cc:Work rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
<dc:creator>
<cc:Agent>
<dc:title>Jakub Steiner</dc:title>
</cc:Agent>
</dc:creator>
<dc:source>http://jimmac.musichall.cz</dc:source>
<cc:license rdf:resource="http://creativecommons.org/licenses/by-sa/2.0/"/>
<dc:title/>
</cc:Work>
<cc:License rdf:about="http://creativecommons.org/licenses/by-sa/2.0/">
<cc:permits rdf:resource="http://web.resource.org/cc/Reproduction"/>
<cc:permits rdf:resource="http://web.resource.org/cc/Distribution"/>
<cc:requires rdf:resource="http://web.resource.org/cc/Notice"/>
<cc:requires rdf:resource="http://web.resource.org/cc/Attribution"/>
<cc:permits rdf:resource="http://web.resource.org/cc/DerivativeWorks"/>
<cc:requires rdf:resource="http://web.resource.org/cc/ShareAlike"/>
</cc:License>
</rdf:RDF>
</metadata>
<g id="layer1">
<g id="g1772">
<path d="m 40.65864,37.967922 a 16.528622,3.9332814 0 1 1 -33.0572434,0 16.528622,3.9332814 0 1 1 33.0572434,0 z" transform="matrix(1.446431,0,0,1.51999,-10.97453,-17.75168)" id="path4475" style="opacity:0.17112301;color:#000000;fill:url(#radialGradient2842);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible"/>
<path d="m 18.627569,3.1435548 c -8.13913,0 -14.7448008,6.6056711 -14.7448008,14.7448012 0,8.13913 6.6056708,14.744802 14.7448008,14.744802 3.479555,0 6.551001,-1.384393 9.073723,-3.402647 -0.205377,1.006881 -0.07803,2.035368 0.756144,2.759925 l 10.964084,9.52741 c 1.233416,1.071329 3.087462,0.93096 4.15879,-0.302457 1.071328,-1.233418 0.930959,-3.087462 -0.302457,-4.15879 L 32.313769,27.529188 c -0.671527,-0.583279 -1.492878,-0.755969 -2.306238,-0.642722 1.9867,-2.512422 3.364839,-5.548803 3.364839,-8.99811 0,-8.1391301 -6.605671,-14.7448012 -14.744801,-14.7448012 z m -0.07562,1.2261833 c 7.639459,0 13.291775,4.7889505 13.291775,13.2917749 0,8.675113 -5.81669,13.291775 -13.291775,13.291775 -7.302949,0 -13.2917734,-5.478092 -13.2917734,-13.291775 0,-7.9841069 5.8246384,-13.291775 13.2917734,-13.2917749 z" id="path2844" style="color:#000000;fill:#dcdcdc;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient2852);stroke-width:2.00000095;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible"/>
<path d="m 18.602905,3.0803551 c -8.16544,0 -14.7924642,6.627024 -14.7924642,14.7924639 0,8.16544 6.6270242,14.792464 14.7924642,14.792464 3.490803,0 6.572177,-1.388867 9.103055,-3.413645 -0.206041,1.010136 -0.07829,2.041947 0.758587,2.768846 l 10.999526,9.558207 c 1.237403,1.074792 3.097442,0.93397 4.172233,-0.303435 1.074791,-1.237404 0.933968,-3.097442 -0.303435,-4.172233 L 32.333346,27.544815 c -0.673698,-0.585164 -1.497704,-0.758413 -2.313693,-0.644799 1.993122,-2.520544 3.375716,-5.56674 3.375716,-9.027197 0,-8.1654399 -6.627024,-14.7924639 -14.792464,-14.7924639 z m -0.07586,3.1860692 c 6.281108,2e-7 11.378818,5.0977107 11.378818,11.3788187 0,6.281108 -5.09771,11.378818 -11.378818,11.378818 -6.281108,0 -11.3788184,-5.09771 -11.3788184,-11.378818 2e-7,-6.281108 5.0977104,-11.3788187 11.3788184,-11.3788187 z" id="path4430" style="color:#000000;fill:#dcdcdc;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.00000036;marker:none;visibility:visible;display:inline;overflow:visible"/>
<path d="m 39.507004,41.57769 c -0.478672,-2.273187 1.39733,-4.811422 3.584053,-4.788375 0,0 -10.760367,-9.258111 -10.760367,-9.258111 -2.944791,-0.05671 -4.269502,2.272616 -3.776814,4.599922 l 10.953128,9.446564 z" id="path4438" style="color:#000000;fill:url(#linearGradient4446);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible"/>
<path d="m 28.549437,18.920233 a 11.048544,11.048544 0 1 1 -22.0970883,0 11.048544,11.048544 0 1 1 22.0970883,0 z" transform="matrix(1.245743,0,0,1.245743,-3.425346,-6.177033)" id="path4450" style="color:#000000;fill:none;stroke:url(#linearGradient2372);stroke-width:0.8027336;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible"/>
<path d="m 40.65864,37.967922 a 16.528622,3.9332814 0 1 1 -33.0572434,0 16.528622,3.9332814 0 1 1 33.0572434,0 z" transform="matrix(0.497764,0,0,0.609621,8.973526,15.61929)" id="path4485" style="color:#000000;fill:url(#radialGradient4493);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible"/>
<rect width="19.048439" height="4.4404783" rx="2.1366608" ry="1.8879365" x="40.373337" y="0.14086054" transform="matrix(0.752986,0.658037,-0.648902,0.760872,0,0)" id="rect4495" style="opacity:0.43315507;color:#000000;fill:none;stroke:#ffffff;stroke-width:1.00003111;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible"/>
<path d="m 25.897786,18.478292 a 8.3085051,8.3085051 0 1 1 -16.61701,0 8.3085051,8.3085051 0 1 1 16.61701,0 z" transform="matrix(1.398614,0,0,1.398614,-6.224338,-8.298958)" id="path4452" style="color:#000000;fill:url(#radialGradient4460);fill-opacity:1;fill-rule:evenodd;stroke:#3063a3;stroke-width:0.71499395;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dashoffset:0;marker:none;visibility:visible"/>
<path d="m 18.156915,7.3966938 c -5.20759,0 -9.4245469,4.2169572 -9.4245469,9.4245472 0,1.503975 0.4203072,2.887773 1.0471719,4.149903 1.25238,0.461613 2.582757,0.775683 3.994767,0.775683 6.170955,0 11.099282,-4.861637 11.480106,-10.937129 C 23.523449,8.7641668 21.044374,7.3966938 18.156915,7.3966938 z" id="path4462" style="opacity:0.83422457;color:#000000;fill:url(#radialGradient4473);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible"/>
</g>
</g>
<g transform="translate(0.78125,-0.419922)" id="text3206" style="font-size:20px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#204a87;fill-opacity:1;stroke:none;font-family:Sans">
<path d="m 16.71875,21.919924 0,-8.646449 -3,0.917777 0,-3.27133 3,-1 3,2e-6 0,11.982422 3,0.01758 0,2.999996 -9,4e-6 0,-2.999996 z" id="path3213" style="font-variant:normal;font-weight:bold;font-stretch:normal;fill:#729fcf;stroke:#3465a4;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans Bold" inkscape:connector-curvature="0" sodipodi:nodetypes="cccccccccccc"/>
<path style="fill:#eeeeec;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;opacity:0.4" d="M 17.65625 10 L 15 10.875 L 15 13.09375 L 17.34375 12.375 L 18 12.1875 L 18 12.875 L 18 16.71875 C 18.311581 16.783849 18.635577 16.878526 19 17 C 19.333462 17.111154 19.670658 17.156288 20 17.15625 L 20 10 L 17.65625 10 z " transform="translate(-0.78125,0.419922)" id="path5050"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 12 KiB

View File

@ -0,0 +1,266 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="48" height="48" id="svg11300">
<defs id="defs3">
<linearGradient id="linearGradient2846">
<stop id="stop2848" style="stop-color:#8a8a8a;stop-opacity:1" offset="0"/>
<stop id="stop2850" style="stop-color:#484848;stop-opacity:1" offset="1"/>
</linearGradient>
<linearGradient id="linearGradient2366">
<stop id="stop2368" style="stop-color:#ffffff;stop-opacity:1" offset="0"/>
<stop id="stop2374" style="stop-color:#ffffff;stop-opacity:0.21904762" offset="0.5"/>
<stop id="stop2370" style="stop-color:#ffffff;stop-opacity:1" offset="1"/>
</linearGradient>
<linearGradient id="linearGradient4487">
<stop id="stop4489" style="stop-color:#ffffff;stop-opacity:1" offset="0"/>
<stop id="stop4491" style="stop-color:#ffffff;stop-opacity:0" offset="1"/>
</linearGradient>
<linearGradient id="linearGradient4477">
<stop id="stop4479" style="stop-color:#000000;stop-opacity:1" offset="0"/>
<stop id="stop4481" style="stop-color:#000000;stop-opacity:0" offset="1"/>
</linearGradient>
<linearGradient id="linearGradient4467">
<stop id="stop4469" style="stop-color:#ffffff;stop-opacity:1" offset="0"/>
<stop id="stop4471" style="stop-color:#ffffff;stop-opacity:0.24761905" offset="1"/>
</linearGradient>
<linearGradient id="linearGradient4454">
<stop id="stop4456" style="stop-color:#729fcf;stop-opacity:0.20784314" offset="0"/>
<stop id="stop4458" style="stop-color:#729fcf;stop-opacity:0.6761905" offset="1"/>
</linearGradient>
<linearGradient id="linearGradient4440">
<stop id="stop4442" style="stop-color:#7d7d7d;stop-opacity:1" offset="0"/>
<stop id="stop4448" style="stop-color:#b1b1b1;stop-opacity:1" offset="0.5"/>
<stop id="stop4444" style="stop-color:#686868;stop-opacity:1" offset="1"/>
</linearGradient>
<radialGradient cx="24.130018" cy="37.967922" r="16.528622" fx="24.130018" fy="37.967922" id="radialGradient4493" xlink:href="#linearGradient4487" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1,0,0,0.237968,0,28.93278)"/>
<radialGradient cx="24.130018" cy="37.967922" r="16.528622" fx="24.130018" fy="37.967922" id="radialGradient2842" xlink:href="#linearGradient4477" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1,0,0,0.237968,0,28.93278)"/>
<radialGradient cx="23.070683" cy="35.127438" r="10.31934" fx="23.070683" fy="35.127438" id="radialGradient2097" xlink:href="#linearGradient2091" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.914812,0.01265023,-0.00821502,0.213562,2.253914,27.18889)"/>
<linearGradient x1="46.834816" y1="45.264122" x2="45.380436" y2="50.939667" id="linearGradient7186" xlink:href="#linearGradient2871" gradientUnits="userSpaceOnUse"/>
<linearGradient x1="18.935766" y1="23.667896" x2="53.588623" y2="26.649363" id="linearGradient7184" xlink:href="#linearGradient2402" gradientUnits="userSpaceOnUse"/>
<linearGradient x1="46.834816" y1="45.264122" x2="45.380436" y2="50.939667" id="linearGradient7182" xlink:href="#linearGradient2871" gradientUnits="userSpaceOnUse"/>
<linearGradient x1="62.513836" y1="36.061237" x2="15.984863" y2="20.60858" id="linearGradient7180" xlink:href="#linearGradient2380" gradientUnits="userSpaceOnUse"/>
<linearGradient x1="13.435029" y1="13.604306" x2="22.374878" y2="23.554308" id="linearGradient7189" xlink:href="#linearGradient7179" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-1,0,0,-1,47.93934,50.02474)"/>
<linearGradient x1="13.435029" y1="13.604306" x2="22.374878" y2="23.554308" id="linearGradient7185" xlink:href="#linearGradient7179" gradientUnits="userSpaceOnUse"/>
<linearGradient id="linearGradient1322">
<stop id="stop1324" style="stop-color:#729fcf;stop-opacity:1" offset="0"/>
<stop id="stop1326" style="stop-color:#5187d6;stop-opacity:1" offset="1"/>
</linearGradient>
<linearGradient id="linearGradient2316">
<stop id="stop2318" style="stop-color:#000000;stop-opacity:1" offset="0"/>
<stop id="stop2320" style="stop-color:#ffffff;stop-opacity:0.65979379" offset="1"/>
</linearGradient>
<linearGradient id="linearGradient7179">
<stop id="stop7181" style="stop-color:#ffffff;stop-opacity:1" offset="0"/>
<stop id="stop7183" style="stop-color:#ffffff;stop-opacity:0" offset="1"/>
</linearGradient>
<linearGradient x1="5.9649177" y1="26.048164" x2="52.854095" y2="26.048164" id="linearGradient1491" xlink:href="#linearGradient2797" gradientUnits="userSpaceOnUse"/>
<linearGradient id="linearGradient2797">
<stop id="stop2799" style="stop-color:#ffffff;stop-opacity:1" offset="0"/>
<stop id="stop2801" style="stop-color:#ffffff;stop-opacity:0" offset="1"/>
</linearGradient>
<linearGradient x1="5.9649177" y1="26.048164" x2="52.854095" y2="26.048164" id="linearGradient1493" xlink:href="#linearGradient2797" gradientUnits="userSpaceOnUse"/>
<linearGradient id="linearGradient2402">
<stop id="stop2404" style="stop-color:#729fcf;stop-opacity:1" offset="0"/>
<stop id="stop2406" style="stop-color:#528ac5;stop-opacity:1" offset="1"/>
</linearGradient>
<linearGradient id="linearGradient2871">
<stop id="stop2873" style="stop-color:#3465a4;stop-opacity:1" offset="0"/>
<stop id="stop2875" style="stop-color:#3465a4;stop-opacity:1" offset="1"/>
</linearGradient>
<linearGradient x1="32.647972" y1="30.748846" x2="37.124462" y2="24.842253" id="linearGradient2696" xlink:href="#linearGradient2690" gradientUnits="userSpaceOnUse" gradientTransform="translate(-48.77039,-5.765705)"/>
<linearGradient id="linearGradient2690">
<stop id="stop2692" style="stop-color:#c4d7eb;stop-opacity:1" offset="0"/>
<stop id="stop2694" style="stop-color:#c4d7eb;stop-opacity:0" offset="1"/>
</linearGradient>
<linearGradient x1="36.713837" y1="31.455952" x2="37.124462" y2="24.842253" id="linearGradient2688" xlink:href="#linearGradient2682" gradientUnits="userSpaceOnUse" gradientTransform="translate(-48.77039,-5.765705)"/>
<linearGradient id="linearGradient2682">
<stop id="stop2684" style="stop-color:#3977c3;stop-opacity:1" offset="0"/>
<stop id="stop2686" style="stop-color:#89aedc;stop-opacity:0" offset="1"/>
</linearGradient>
<linearGradient id="linearGradient2380">
<stop id="stop2382" style="stop-color:#b9cfe7;stop-opacity:1" offset="0"/>
<stop id="stop2384" style="stop-color:#729fcf;stop-opacity:1" offset="1"/>
</linearGradient>
<linearGradient x1="13.478554" y1="10.612206" x2="15.419417" y2="19.115122" id="linearGradient1486" xlink:href="#linearGradient2831" gradientUnits="userSpaceOnUse" gradientTransform="translate(-48.30498,-6.043298)"/>
<linearGradient id="linearGradient2831">
<stop id="stop2833" style="stop-color:#3465a4;stop-opacity:1" offset="0"/>
<stop id="stop2855" style="stop-color:#5b86be;stop-opacity:1" offset="0.33333334"/>
<stop id="stop2835" style="stop-color:#83a8d8;stop-opacity:0" offset="1"/>
</linearGradient>
<linearGradient x1="37.128052" y1="29.729605" x2="37.065414" y2="26.194071" id="linearGradient1488" xlink:href="#linearGradient2847" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-1,0,0,-1,-1.24248,40.0817)"/>
<linearGradient id="linearGradient2847">
<stop id="stop2849" style="stop-color:#3465a4;stop-opacity:1" offset="0"/>
<stop id="stop2851" style="stop-color:#3465a4;stop-opacity:0" offset="1"/>
</linearGradient>
<radialGradient cx="24.837126" cy="36.421127" r="15.644737" fx="24.837126" fy="36.421127" id="radialGradient1503" xlink:href="#linearGradient8662" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1,0,0,0.536723,0,16.87306)"/>
<linearGradient id="linearGradient8662">
<stop id="stop8664" style="stop-color:#000000;stop-opacity:1" offset="0"/>
<stop id="stop8666" style="stop-color:#000000;stop-opacity:0" offset="1"/>
</linearGradient>
<linearGradient id="linearGradient7916">
<stop id="stop7918" style="stop-color:#ffffff;stop-opacity:1" offset="0"/>
<stop id="stop7920" style="stop-color:#ffffff;stop-opacity:0.34020618" offset="1"/>
</linearGradient>
<linearGradient id="linearGradient2091">
<stop id="stop2093" style="stop-color:#000000;stop-opacity:1" offset="0"/>
<stop id="stop2095" style="stop-color:#000000;stop-opacity:0" offset="1"/>
</linearGradient>
<linearGradient id="linearGradient2091-4">
<stop id="stop2093-5" style="stop-color:#000000;stop-opacity:1" offset="0"/>
<stop id="stop2095-1" style="stop-color:#000000;stop-opacity:0" offset="1"/>
</linearGradient>
<linearGradient id="linearGradient7916-4">
<stop id="stop7918-2" style="stop-color:#ffffff;stop-opacity:1" offset="0"/>
<stop id="stop7920-2" style="stop-color:#ffffff;stop-opacity:0.34020618" offset="1"/>
</linearGradient>
<linearGradient id="linearGradient8662-1">
<stop id="stop8664-8" style="stop-color:#000000;stop-opacity:1" offset="0"/>
<stop id="stop8666-3" style="stop-color:#000000;stop-opacity:0" offset="1"/>
</linearGradient>
<radialGradient cx="24.837126" cy="36.421127" r="15.644737" fx="24.837126" fy="36.421127" id="radialGradient1503-3" xlink:href="#linearGradient8662-1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1,0,0,0.536723,0,16.87306)"/>
<linearGradient id="linearGradient2847-9">
<stop id="stop2849-2" style="stop-color:#3465a4;stop-opacity:1" offset="0"/>
<stop id="stop2851-2" style="stop-color:#3465a4;stop-opacity:0" offset="1"/>
</linearGradient>
<linearGradient x1="37.128052" y1="29.729605" x2="37.065414" y2="26.194071" id="linearGradient1488-8" xlink:href="#linearGradient2847-9" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-1,0,0,-1,-1.24248,40.0817)"/>
<linearGradient id="linearGradient2831-3">
<stop id="stop2833-8" style="stop-color:#3465a4;stop-opacity:1" offset="0"/>
<stop id="stop2855-6" style="stop-color:#5b86be;stop-opacity:1" offset="0.33333334"/>
<stop id="stop2835-0" style="stop-color:#83a8d8;stop-opacity:0" offset="1"/>
</linearGradient>
<linearGradient x1="13.478554" y1="10.612206" x2="15.419417" y2="19.115122" id="linearGradient1486-4" xlink:href="#linearGradient2831-3" gradientUnits="userSpaceOnUse" gradientTransform="translate(-48.30498,-6.043298)"/>
<linearGradient id="linearGradient2380-5">
<stop id="stop2382-2" style="stop-color:#b9cfe7;stop-opacity:1" offset="0"/>
<stop id="stop2384-4" style="stop-color:#729fcf;stop-opacity:1" offset="1"/>
</linearGradient>
<linearGradient id="linearGradient2682-7">
<stop id="stop2684-4" style="stop-color:#3977c3;stop-opacity:1" offset="0"/>
<stop id="stop2686-2" style="stop-color:#89aedc;stop-opacity:0" offset="1"/>
</linearGradient>
<linearGradient x1="36.713837" y1="31.455952" x2="37.124462" y2="24.842253" id="linearGradient2688-2" xlink:href="#linearGradient2682-7" gradientUnits="userSpaceOnUse" gradientTransform="translate(-48.77039,-5.765705)"/>
<linearGradient id="linearGradient2690-3">
<stop id="stop2692-4" style="stop-color:#c4d7eb;stop-opacity:1" offset="0"/>
<stop id="stop2694-9" style="stop-color:#c4d7eb;stop-opacity:0" offset="1"/>
</linearGradient>
<linearGradient x1="32.647972" y1="30.748846" x2="37.124462" y2="24.842253" id="linearGradient2696-0" xlink:href="#linearGradient2690-3" gradientUnits="userSpaceOnUse" gradientTransform="translate(-48.77039,-5.765705)"/>
<linearGradient id="linearGradient2871-3">
<stop id="stop2873-7" style="stop-color:#3465a4;stop-opacity:1" offset="0"/>
<stop id="stop2875-0" style="stop-color:#3465a4;stop-opacity:1" offset="1"/>
</linearGradient>
<linearGradient id="linearGradient2402-2">
<stop id="stop2404-8" style="stop-color:#729fcf;stop-opacity:1" offset="0"/>
<stop id="stop2406-0" style="stop-color:#528ac5;stop-opacity:1" offset="1"/>
</linearGradient>
<linearGradient x1="5.9649177" y1="26.048164" x2="52.854095" y2="26.048164" id="linearGradient1493-3" xlink:href="#linearGradient2797-7" gradientUnits="userSpaceOnUse"/>
<linearGradient id="linearGradient2797-7">
<stop id="stop2799-4" style="stop-color:#ffffff;stop-opacity:1" offset="0"/>
<stop id="stop2801-0" style="stop-color:#ffffff;stop-opacity:0" offset="1"/>
</linearGradient>
<linearGradient x1="5.9649177" y1="26.048164" x2="52.854095" y2="26.048164" id="linearGradient1491-2" xlink:href="#linearGradient2797-7" gradientUnits="userSpaceOnUse"/>
<linearGradient id="linearGradient7179-1">
<stop id="stop7181-0" style="stop-color:#ffffff;stop-opacity:1" offset="0"/>
<stop id="stop7183-4" style="stop-color:#ffffff;stop-opacity:0" offset="1"/>
</linearGradient>
<linearGradient id="linearGradient2316-2">
<stop id="stop2318-6" style="stop-color:#000000;stop-opacity:1" offset="0"/>
<stop id="stop2320-9" style="stop-color:#ffffff;stop-opacity:0.65979379" offset="1"/>
</linearGradient>
<linearGradient id="linearGradient1322-8">
<stop id="stop1324-1" style="stop-color:#729fcf;stop-opacity:1" offset="0"/>
<stop id="stop1326-2" style="stop-color:#5187d6;stop-opacity:1" offset="1"/>
</linearGradient>
<linearGradient x1="13.435029" y1="13.604306" x2="22.374878" y2="23.554308" id="linearGradient7185-5" xlink:href="#linearGradient7179-1" gradientUnits="userSpaceOnUse"/>
<linearGradient x1="13.435029" y1="13.604306" x2="22.374878" y2="23.554308" id="linearGradient7189-6" xlink:href="#linearGradient7179-1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-1,0,0,-1,47.93934,50.02474)"/>
<linearGradient x1="62.513836" y1="36.061237" x2="15.984863" y2="20.60858" id="linearGradient7180-0" xlink:href="#linearGradient2380-5" gradientUnits="userSpaceOnUse"/>
<linearGradient x1="46.834816" y1="45.264122" x2="45.380436" y2="50.939667" id="linearGradient7182-5" xlink:href="#linearGradient2871-3" gradientUnits="userSpaceOnUse"/>
<linearGradient x1="18.935766" y1="23.667896" x2="53.588623" y2="26.649363" id="linearGradient7184-1" xlink:href="#linearGradient2402-2" gradientUnits="userSpaceOnUse"/>
<linearGradient x1="46.834816" y1="45.264122" x2="45.380436" y2="50.939667" id="linearGradient7186-6" xlink:href="#linearGradient2871-3" gradientUnits="userSpaceOnUse"/>
<radialGradient cx="23.070683" cy="35.127438" r="10.31934" fx="23.070683" fy="35.127438" id="radialGradient2097-3" xlink:href="#linearGradient2091-4" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.914812,0.01265023,-0.00821502,0.213562,2.253914,27.18889)"/>
<linearGradient id="linearGradient4440-0">
<stop id="stop4442-8" style="stop-color:#7d7d7d;stop-opacity:1" offset="0"/>
<stop id="stop4448-3" style="stop-color:#b1b1b1;stop-opacity:1" offset="0.5"/>
<stop id="stop4444-5" style="stop-color:#686868;stop-opacity:1" offset="1"/>
</linearGradient>
<linearGradient id="linearGradient4454-4">
<stop id="stop4456-1" style="stop-color:#729fcf;stop-opacity:0.20784314" offset="0"/>
<stop id="stop4458-5" style="stop-color:#729fcf;stop-opacity:0.6761905" offset="1"/>
</linearGradient>
<linearGradient id="linearGradient4467-5">
<stop id="stop4469-9" style="stop-color:#ffffff;stop-opacity:1" offset="0"/>
<stop id="stop4471-3" style="stop-color:#ffffff;stop-opacity:0.24761905" offset="1"/>
</linearGradient>
<linearGradient id="linearGradient2366-6">
<stop id="stop2368-3" style="stop-color:#ffffff;stop-opacity:1" offset="0"/>
<stop id="stop2374-5" style="stop-color:#ffffff;stop-opacity:0.21904762" offset="0.5"/>
<stop id="stop2370-0" style="stop-color:#ffffff;stop-opacity:1" offset="1"/>
</linearGradient>
<linearGradient id="linearGradient2846-0">
<stop id="stop2848-8" style="stop-color:#8a8a8a;stop-opacity:1" offset="0"/>
<stop id="stop2850-7" style="stop-color:#484848;stop-opacity:1" offset="1"/>
</linearGradient>
<linearGradient x1="27.366341" y1="26.580296" x2="31.335964" y2="30.557772" id="linearGradient3882" xlink:href="#linearGradient2846" gradientUnits="userSpaceOnUse"/>
<linearGradient x1="30.65625" y1="34" x2="33.21875" y2="31.0625" id="linearGradient3884" xlink:href="#linearGradient4440" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.334593,0,0,1.291292,-6.973842,-7.460658)"/>
<linearGradient x1="18.292673" y1="13.602121" x2="17.500893" y2="25.743469" id="linearGradient3886" xlink:href="#linearGradient2366" gradientUnits="userSpaceOnUse"/>
<radialGradient cx="18.240929" cy="21.817987" r="8.3085051" fx="18.240929" fy="21.817987" id="radialGradient3888" xlink:href="#linearGradient4454" gradientUnits="userSpaceOnUse"/>
<radialGradient cx="15.414371" cy="13.078408" r="6.65625" fx="15.414371" fy="13.078408" id="radialGradient3890" xlink:href="#linearGradient4467" gradientUnits="userSpaceOnUse" gradientTransform="matrix(2.592963,0,0,2.252104,-25.05975,-18.941)"/>
</defs>
<metadata id="metadata4">
<rdf:RDF>
<cc:Work rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
<dc:creator>
<cc:Agent>
<dc:title>Martin Ruskov</dc:title>
</cc:Agent>
</dc:creator>
<dc:source>http://commons.wikimedia.org/wiki/Tango_icon</dc:source>
<cc:license rdf:resource="http://creativecommons.org/licenses/by-sa/2.0/"/>
<dc:title/>
</cc:Work>
<cc:License rdf:about="http://creativecommons.org/licenses/by-sa/2.0/">
<cc:permits rdf:resource="http://web.resource.org/cc/Reproduction"/>
<cc:permits rdf:resource="http://web.resource.org/cc/Distribution"/>
<cc:requires rdf:resource="http://web.resource.org/cc/Notice"/>
<cc:requires rdf:resource="http://web.resource.org/cc/Attribution"/>
<cc:permits rdf:resource="http://web.resource.org/cc/DerivativeWorks"/>
<cc:requires rdf:resource="http://web.resource.org/cc/ShareAlike"/>
</cc:License>
</rdf:RDF>
</metadata>
<g id="layer2">
<path d="m 40.65864,37.967922 a 16.528622,3.9332814 0 1 1 -33.0572434,0 16.528622,3.9332814 0 1 1 33.0572434,0 z" transform="matrix(1.446431,0,0,1.51999,-10.97453,-17.75168)" id="path4475" style="opacity:0.17112301;color:#000000;fill:url(#radialGradient2842);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible"/>
<path d="m 40.65864,37.967922 a 16.528622,3.9332814 0 1 1 -33.0572434,0 16.528622,3.9332814 0 1 1 33.0572434,0 z" transform="matrix(0.497764,0,0,0.609621,8.973526,15.61929)" id="path4485" style="color:#000000;fill:url(#radialGradient4493);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible"/>
</g>
<g id="layer3">
<g transform="translate(0.12372323,0.07535096)" id="g1772">
<path d="m 18.627569,3.1435548 c -8.13913,0 -14.7448008,6.6056711 -14.7448008,14.7448012 0,8.13913 6.6056708,14.744802 14.7448008,14.744802 3.479555,0 6.551001,-1.384393 9.073723,-3.402647 -0.205377,1.006881 -0.07803,2.035368 0.756144,2.759925 l 10.964084,9.52741 c 1.233416,1.071329 3.087462,0.93096 4.15879,-0.302457 1.071328,-1.233418 0.930959,-3.087462 -0.302457,-4.15879 L 32.313769,27.529188 c -0.671527,-0.583279 -1.492878,-0.755969 -2.306238,-0.642722 1.9867,-2.512422 3.364839,-5.548803 3.364839,-8.99811 0,-8.1391301 -6.605671,-14.7448012 -14.744801,-14.7448012 z m -0.07562,1.2261833 c 7.639459,0 13.291775,4.7889505 13.291775,13.2917749 0,8.675113 -5.81669,13.291775 -13.291775,13.291775 -7.302949,0 -13.2917734,-5.478092 -13.2917734,-13.291775 0,-7.9841069 5.8246384,-13.291775 13.2917734,-13.2917749 z" id="path2844" style="color:#000000;fill:#dcdcdc;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient3882);stroke-width:2.00000095;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible"/>
<path d="m 18.602905,3.0803551 c -8.16544,0 -14.7924642,6.627024 -14.7924642,14.7924639 0,8.16544 6.6270242,14.792464 14.7924642,14.792464 3.490803,0 6.572177,-1.388867 9.103055,-3.413645 -0.206041,1.010136 -0.07829,2.041947 0.758587,2.768846 l 10.999526,9.558207 c 1.237403,1.074792 3.097442,0.93397 4.172233,-0.303435 1.074791,-1.237404 0.933968,-3.097442 -0.303435,-4.172233 L 32.333346,27.544815 c -0.673698,-0.585164 -1.497704,-0.758413 -2.313693,-0.644799 1.993122,-2.520544 3.375716,-5.56674 3.375716,-9.027197 0,-8.1654399 -6.627024,-14.7924639 -14.792464,-14.7924639 z m -0.07586,3.1860692 c 6.281108,2e-7 11.378818,5.0977107 11.378818,11.3788187 0,6.281108 -5.09771,11.378818 -11.378818,11.378818 -6.281108,0 -11.3788184,-5.09771 -11.3788184,-11.378818 2e-7,-6.281108 5.0977104,-11.3788187 11.3788184,-11.3788187 z" id="path4430" style="color:#000000;fill:#dcdcdc;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.00000036;marker:none;visibility:visible;display:inline;overflow:visible"/>
<path d="m 39.507004,41.57769 c -0.478672,-2.273187 1.39733,-4.811422 3.584053,-4.788375 0,0 -10.760367,-9.258111 -10.760367,-9.258111 -2.944791,-0.05671 -4.269502,2.272616 -3.776814,4.599922 l 10.953128,9.446564 z" id="path4438" style="color:#000000;fill:url(#linearGradient3884);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible"/>
<path d="m 28.549437,18.920233 a 11.048544,11.048544 0 1 1 -22.0970883,0 11.048544,11.048544 0 1 1 22.0970883,0 z" transform="matrix(1.245743,0,0,1.245743,-3.425346,-6.177033)" id="path4450" style="color:#000000;fill:none;stroke:url(#linearGradient3886);stroke-width:0.8027336;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible"/>
<rect width="19.048439" height="4.4404783" rx="2.1366608" ry="1.8879365" x="40.373337" y="0.14086054" transform="matrix(0.752986,0.658037,-0.648902,0.760872,0,0)" id="rect4495" style="opacity:0.43315507;color:#000000;fill:none;stroke:#ffffff;stroke-width:1.00003111;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible"/>
<path d="m 25.897786,18.478292 a 8.3085051,8.3085051 0 1 1 -16.61701,0 8.3085051,8.3085051 0 1 1 16.61701,0 z" transform="matrix(1.398614,0,0,1.398614,-6.224338,-8.298958)" id="path4452" style="color:#000000;fill:url(#radialGradient3888);fill-opacity:1;fill-rule:evenodd;stroke:#3063a3;stroke-width:0.71499395;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dashoffset:0;marker:none;visibility:visible"/>
<path d="m 18.156915,7.3966938 c -5.20759,0 -9.4245469,4.2169572 -9.4245469,9.4245472 0,1.503975 0.4203072,2.887773 1.0471719,4.149903 1.25238,0.461613 2.582757,0.775683 3.994767,0.775683 6.170955,0 11.099282,-4.861637 11.480106,-10.937129 C 23.523449,8.7641668 21.044374,7.3966938 18.156915,7.3966938 z" id="path4462" style="opacity:0.83422457;color:#000000;fill:url(#radialGradient3890);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible"/>
</g>
</g>
<g id="layer1" style="display:inline">
<g transform="matrix(0.5028156,0,0,0.5028156,6.3171967,5.1658557)" id="g4336">
<g transform="translate(1.9888007,-1.9888007)" id="g4679">
<path d="m 26.217967,10.60855 0,7.955203 3.977602,0 -10e-7,3.977601 7.955203,0 0,-11.932804 1e-6,0 -7.955203,0 z" id="path3853" style="fill:#85add6;fill-opacity:1;stroke:#3465a4;stroke-width:1.98880064px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"/>
<path d="m 28.206767,12.59735 0,3.977601 3.977603,1e-6 -1e-6,3.977601 3.977601,0 0,-7.955203 1e-6,10e-7 -3.977601,0 z" id="path3855" style="opacity:0.41000001;fill:none;stroke:#eeeeec;stroke-width:1.98880064px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"/>
</g>
<g transform="matrix(0,-1,1,0,-2.2897877,46.77052)" id="g4683">
<path d="m 26.217967,10.60855 0,7.955203 3.977602,0 -10e-7,3.977601 7.955203,0 0,-11.932804 1e-6,0 -7.955203,0 z" id="path4685" style="fill:#86aed6;fill-opacity:1;stroke:#3465a4;stroke-width:1.98880064px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"/>
<path d="m 28.206767,12.59735 0,3.977601 3.977603,1e-6 -1e-6,3.977601 3.977601,0 0,-7.955203 1e-6,10e-7 -3.977601,0 z" id="path4687" style="opacity:0.41000001;fill:none;stroke:#eeeeec;stroke-width:1.98880064px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"/>
</g>
<g transform="matrix(-1,0,0,-1,46.469534,51.049102)" id="g4689">
<path d="m 26.217967,10.60855 0,7.955203 3.977602,0 -10e-7,3.977601 7.955203,0 0,-11.932804 1e-6,0 -7.955203,0 z" id="path4691" style="fill:#518ac4;fill-opacity:1;stroke:#3465a4;stroke-width:1.98880064px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"/>
<path d="m 28.206767,12.59735 0,3.977601 3.977603,1e-6 -1e-6,3.977601 3.977601,0 0,-7.955203 1e-6,10e-7 -3.977601,0 z" id="path4693" style="opacity:0.41000001;fill:none;stroke:#eeeeec;stroke-width:1.98880064px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"/>
</g>
<g transform="matrix(0,1,-1,0,50.748119,2.2897821)" id="g4695">
<path d="m 26.217967,10.60855 0,7.955203 3.977602,0 -10e-7,3.977601 7.955203,0 0,-11.932804 1e-6,0 -7.955203,0 z" id="path4697" style="fill:#518ac4;fill-opacity:1;stroke:#3465a4;stroke-width:1.98880064px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"/>
<path d="m 28.206767,12.59735 0,3.977601 3.977603,1e-6 -1e-6,3.977601 3.977601,0 0,-7.955203 1e-6,10e-7 -3.977601,0 z" id="path4699" style="opacity:0.41000001;fill:none;stroke:#eeeeec;stroke-width:1.98880064px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"/>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 26 KiB

View File

@ -0,0 +1,277 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" sodipodi:docname="View-zoom-in.svg" inkscape:version="0.48.1 r9760" sodipodi:version="0.32" id="svg11300" height="48px" width="48px" inkscape:output_extension="org.inkscape.output.svg.inkscape" version="1.1">
<defs id="defs3">
<linearGradient id="linearGradient2846">
<stop id="stop2848" offset="0.0000000" style="stop-color:#8a8a8a;stop-opacity:1.0000000;"/>
<stop id="stop2850" offset="1.0000000" style="stop-color:#484848;stop-opacity:1.0000000;"/>
</linearGradient>
<linearGradient id="linearGradient2366">
<stop id="stop2368" offset="0" style="stop-color:#ffffff;stop-opacity:1;"/>
<stop style="stop-color:#ffffff;stop-opacity:0.21904762;" offset="0.50000000" id="stop2374"/>
<stop id="stop2370" offset="1.0000000" style="stop-color:#ffffff;stop-opacity:1.0000000;"/>
</linearGradient>
<linearGradient inkscape:collect="always" id="linearGradient4487">
<stop style="stop-color:#ffffff;stop-opacity:1;" offset="0" id="stop4489"/>
<stop style="stop-color:#ffffff;stop-opacity:0;" offset="1" id="stop4491"/>
</linearGradient>
<linearGradient inkscape:collect="always" id="linearGradient4477">
<stop style="stop-color:#000000;stop-opacity:1;" offset="0" id="stop4479"/>
<stop style="stop-color:#000000;stop-opacity:0;" offset="1" id="stop4481"/>
</linearGradient>
<linearGradient id="linearGradient4467">
<stop style="stop-color:#ffffff;stop-opacity:1;" offset="0" id="stop4469"/>
<stop style="stop-color:#ffffff;stop-opacity:0.24761905;" offset="1.0000000" id="stop4471"/>
</linearGradient>
<linearGradient id="linearGradient4454">
<stop style="stop-color:#729fcf;stop-opacity:0.20784314;" offset="0.0000000" id="stop4456"/>
<stop style="stop-color:#729fcf;stop-opacity:0.67619050;" offset="1.0000000" id="stop4458"/>
</linearGradient>
<linearGradient id="linearGradient4440">
<stop style="stop-color:#7d7d7d;stop-opacity:1;" offset="0" id="stop4442"/>
<stop id="stop4448" offset="0.50000000" style="stop-color:#b1b1b1;stop-opacity:1.0000000;"/>
<stop style="stop-color:#686868;stop-opacity:1.0000000;" offset="1.0000000" id="stop4444"/>
</linearGradient>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient4440" id="linearGradient4446" x1="30.656250" y1="34.000000" x2="33.218750" y2="31.062500" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.334593,0.000000,0.000000,1.291292,-6.973842,-7.460658)"/>
<radialGradient inkscape:collect="always" xlink:href="#linearGradient4454" id="radialGradient4460" cx="18.240929" cy="21.817987" fx="18.240929" fy="21.817987" r="8.3085051" gradientUnits="userSpaceOnUse"/>
<radialGradient inkscape:collect="always" xlink:href="#linearGradient4467" id="radialGradient4473" cx="15.414371" cy="13.078408" fx="15.414371" fy="13.078408" r="6.6562500" gradientTransform="matrix(2.592963,-7.746900e-24,-5.714443e-24,2.252104,-25.05975,-18.94100)" gradientUnits="userSpaceOnUse"/>
<radialGradient inkscape:collect="always" xlink:href="#linearGradient4487" id="radialGradient4493" cx="24.130018" cy="37.967922" fx="24.130018" fy="37.967922" r="16.528622" gradientTransform="matrix(1.000000,0.000000,0.000000,0.237968,3.152859e-15,28.93278)" gradientUnits="userSpaceOnUse"/>
<linearGradient gradientUnits="userSpaceOnUse" y2="25.743469" x2="17.500893" y1="13.602121" x1="18.292673" id="linearGradient2372" xlink:href="#linearGradient2366" inkscape:collect="always"/>
<radialGradient r="16.528622" fy="37.967922" fx="24.130018" cy="37.967922" cx="24.130018" gradientTransform="matrix(1.000000,0.000000,0.000000,0.237968,-2.471981e-16,28.93278)" gradientUnits="userSpaceOnUse" id="radialGradient2842" xlink:href="#linearGradient4477" inkscape:collect="always"/>
<linearGradient gradientUnits="userSpaceOnUse" y2="30.557772" x2="31.335964" y1="26.580296" x1="27.366341" id="linearGradient2852" xlink:href="#linearGradient2846" inkscape:collect="always"/>
<radialGradient gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.914812,1.265023e-2,-8.21502e-3,0.213562,2.253914,27.18889)" r="10.319340" fy="35.127438" fx="23.070683" cy="35.127438" cx="23.070683" id="radialGradient2097" xlink:href="#linearGradient2091" inkscape:collect="always"/>
<linearGradient y2="50.939667" x2="45.380436" y1="45.264122" x1="46.834816" gradientUnits="userSpaceOnUse" id="linearGradient7186" xlink:href="#linearGradient2871" inkscape:collect="always"/>
<linearGradient y2="26.649362" x2="53.588622" y1="23.667896" x1="18.935766" gradientUnits="userSpaceOnUse" id="linearGradient7184" xlink:href="#linearGradient2402" inkscape:collect="always"/>
<linearGradient y2="50.939667" x2="45.380436" y1="45.264122" x1="46.834816" gradientUnits="userSpaceOnUse" id="linearGradient7182" xlink:href="#linearGradient2871" inkscape:collect="always"/>
<linearGradient y2="20.60858" x2="15.984863" y1="36.061237" x1="62.513836" gradientUnits="userSpaceOnUse" id="linearGradient7180" xlink:href="#linearGradient2380" inkscape:collect="always"/>
<linearGradient gradientTransform="matrix(-1.000000,0.000000,0.000000,-1.000000,47.93934,50.02474)" y2="23.554308" x2="22.374878" y1="13.604306" x1="13.435029" gradientUnits="userSpaceOnUse" id="linearGradient7189" xlink:href="#linearGradient7179" inkscape:collect="always"/>
<linearGradient gradientUnits="userSpaceOnUse" y2="23.554308" x2="22.374878" y1="13.604306" x1="13.435029" id="linearGradient7185" xlink:href="#linearGradient7179" inkscape:collect="always"/>
<linearGradient id="linearGradient1322">
<stop style="stop-color:#729fcf" offset="0.0000000" id="stop1324"/>
<stop style="stop-color:#5187d6;stop-opacity:1.0000000;" offset="1.0000000" id="stop1326"/>
</linearGradient>
<linearGradient id="linearGradient2316">
<stop id="stop2318" offset="0" style="stop-color:#000000;stop-opacity:1;"/>
<stop id="stop2320" offset="1" style="stop-color:#ffffff;stop-opacity:0.65979379;"/>
</linearGradient>
<linearGradient id="linearGradient7179" inkscape:collect="always">
<stop id="stop7181" offset="0" style="stop-color:#ffffff;stop-opacity:1;"/>
<stop id="stop7183" offset="1" style="stop-color:#ffffff;stop-opacity:0;"/>
</linearGradient>
<linearGradient y2="26.048164" x2="52.854097" y1="26.048164" x1="5.9649176" gradientUnits="userSpaceOnUse" id="linearGradient1491" xlink:href="#linearGradient2797" inkscape:collect="always"/>
<linearGradient id="linearGradient2797" inkscape:collect="always">
<stop id="stop2799" offset="0" style="stop-color:#ffffff;stop-opacity:1;"/>
<stop id="stop2801" offset="1" style="stop-color:#ffffff;stop-opacity:0;"/>
</linearGradient>
<linearGradient y2="26.048164" x2="52.854097" y1="26.048164" x1="5.9649176" gradientUnits="userSpaceOnUse" id="linearGradient1493" xlink:href="#linearGradient2797" inkscape:collect="always"/>
<linearGradient id="linearGradient2402">
<stop id="stop2404" offset="0" style="stop-color:#729fcf;stop-opacity:1;"/>
<stop id="stop2406" offset="1" style="stop-color:#528ac5;stop-opacity:1;"/>
</linearGradient>
<linearGradient id="linearGradient2871" inkscape:collect="always">
<stop id="stop2873" offset="0" style="stop-color:#3465a4;stop-opacity:1;"/>
<stop id="stop2875" offset="1" style="stop-color:#3465a4;stop-opacity:1"/>
</linearGradient>
<linearGradient gradientTransform="translate(-48.77039,-5.765705)" gradientUnits="userSpaceOnUse" y2="24.842253" x2="37.124462" y1="30.748846" x1="32.647972" id="linearGradient2696" xlink:href="#linearGradient2690" inkscape:collect="always"/>
<linearGradient id="linearGradient2690" inkscape:collect="always">
<stop id="stop2692" offset="0" style="stop-color:#c4d7eb;stop-opacity:1;"/>
<stop id="stop2694" offset="1" style="stop-color:#c4d7eb;stop-opacity:0;"/>
</linearGradient>
<linearGradient gradientTransform="translate(-48.77039,-5.765705)" gradientUnits="userSpaceOnUse" y2="24.842253" x2="37.124462" y1="31.455952" x1="36.713837" id="linearGradient2688" xlink:href="#linearGradient2682" inkscape:collect="always"/>
<linearGradient id="linearGradient2682">
<stop id="stop2684" offset="0" style="stop-color:#3977c3;stop-opacity:1;"/>
<stop id="stop2686" offset="1" style="stop-color:#89aedc;stop-opacity:0;"/>
</linearGradient>
<linearGradient id="linearGradient2380">
<stop id="stop2382" offset="0" style="stop-color:#b9cfe7;stop-opacity:1"/>
<stop id="stop2384" offset="1" style="stop-color:#729fcf;stop-opacity:1"/>
</linearGradient>
<linearGradient y2="19.115122" x2="15.419417" y1="10.612206" x1="13.478554" gradientTransform="translate(-48.30498,-6.043298)" gradientUnits="userSpaceOnUse" id="linearGradient1486" xlink:href="#linearGradient2831" inkscape:collect="always"/>
<linearGradient id="linearGradient2831">
<stop id="stop2833" offset="0" style="stop-color:#3465a4;stop-opacity:1;"/>
<stop style="stop-color:#5b86be;stop-opacity:1;" offset="0.33333334" id="stop2855"/>
<stop id="stop2835" offset="1" style="stop-color:#83a8d8;stop-opacity:0;"/>
</linearGradient>
<linearGradient y2="26.194071" x2="37.065414" y1="29.729605" x1="37.128052" gradientTransform="matrix(-1.000000,0.000000,0.000000,-1.000000,-1.242480,40.08170)" gradientUnits="userSpaceOnUse" id="linearGradient1488" xlink:href="#linearGradient2847" inkscape:collect="always"/>
<linearGradient id="linearGradient2847" inkscape:collect="always">
<stop id="stop2849" offset="0" style="stop-color:#3465a4;stop-opacity:1;"/>
<stop id="stop2851" offset="1" style="stop-color:#3465a4;stop-opacity:0;"/>
</linearGradient>
<radialGradient r="15.644737" fy="36.421127" fx="24.837126" cy="36.421127" cx="24.837126" gradientTransform="matrix(1.000000,0.000000,0.000000,0.536723,-1.018989e-13,16.87306)" gradientUnits="userSpaceOnUse" id="radialGradient1503" xlink:href="#linearGradient8662" inkscape:collect="always"/>
<linearGradient id="linearGradient8662" inkscape:collect="always">
<stop id="stop8664" offset="0" style="stop-color:#000000;stop-opacity:1;"/>
<stop id="stop8666" offset="1" style="stop-color:#000000;stop-opacity:0;"/>
</linearGradient>
<linearGradient id="linearGradient7916">
<stop id="stop7918" offset="0" style="stop-color:#ffffff;stop-opacity:1;"/>
<stop id="stop7920" offset="1.0000000" style="stop-color:#ffffff;stop-opacity:0.34020618;"/>
</linearGradient>
<linearGradient id="linearGradient2091" inkscape:collect="always">
<stop id="stop2093" offset="0" style="stop-color:#000000;stop-opacity:1;"/>
<stop id="stop2095" offset="1" style="stop-color:#000000;stop-opacity:0;"/>
</linearGradient>
<linearGradient inkscape:collect="always" id="linearGradient2091-4">
<stop style="stop-color:#000000;stop-opacity:1;" offset="0" id="stop2093-5"/>
<stop style="stop-color:#000000;stop-opacity:0;" offset="1" id="stop2095-1"/>
</linearGradient>
<linearGradient id="linearGradient7916-4">
<stop style="stop-color:#ffffff;stop-opacity:1;" offset="0" id="stop7918-2"/>
<stop style="stop-color:#ffffff;stop-opacity:0.34020618;" offset="1.0000000" id="stop7920-2"/>
</linearGradient>
<linearGradient inkscape:collect="always" id="linearGradient8662-1">
<stop style="stop-color:#000000;stop-opacity:1;" offset="0" id="stop8664-8"/>
<stop style="stop-color:#000000;stop-opacity:0;" offset="1" id="stop8666-3"/>
</linearGradient>
<radialGradient inkscape:collect="always" xlink:href="#linearGradient8662-1" id="radialGradient1503-3" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.000000,0.000000,0.000000,0.536723,-1.018989e-13,16.87306)" cx="24.837126" cy="36.421127" fx="24.837126" fy="36.421127" r="15.644737"/>
<linearGradient inkscape:collect="always" id="linearGradient2847-9">
<stop style="stop-color:#3465a4;stop-opacity:1;" offset="0" id="stop2849-2"/>
<stop style="stop-color:#3465a4;stop-opacity:0;" offset="1" id="stop2851-2"/>
</linearGradient>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient2847-9" id="linearGradient1488-8" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-1.000000,0.000000,0.000000,-1.000000,-1.242480,40.08170)" x1="37.128052" y1="29.729605" x2="37.065414" y2="26.194071"/>
<linearGradient id="linearGradient2831-3">
<stop style="stop-color:#3465a4;stop-opacity:1;" offset="0" id="stop2833-8"/>
<stop id="stop2855-6" offset="0.33333334" style="stop-color:#5b86be;stop-opacity:1;"/>
<stop style="stop-color:#83a8d8;stop-opacity:0;" offset="1" id="stop2835-0"/>
</linearGradient>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient2831-3" id="linearGradient1486-4" gradientUnits="userSpaceOnUse" gradientTransform="translate(-48.30498,-6.043298)" x1="13.478554" y1="10.612206" x2="15.419417" y2="19.115122"/>
<linearGradient id="linearGradient2380-5">
<stop style="stop-color:#b9cfe7;stop-opacity:1" offset="0" id="stop2382-2"/>
<stop style="stop-color:#729fcf;stop-opacity:1" offset="1" id="stop2384-4"/>
</linearGradient>
<linearGradient id="linearGradient2682-7">
<stop style="stop-color:#3977c3;stop-opacity:1;" offset="0" id="stop2684-4"/>
<stop style="stop-color:#89aedc;stop-opacity:0;" offset="1" id="stop2686-2"/>
</linearGradient>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient2682-7" id="linearGradient2688-2" x1="36.713837" y1="31.455952" x2="37.124462" y2="24.842253" gradientUnits="userSpaceOnUse" gradientTransform="translate(-48.77039,-5.765705)"/>
<linearGradient inkscape:collect="always" id="linearGradient2690-3">
<stop style="stop-color:#c4d7eb;stop-opacity:1;" offset="0" id="stop2692-4"/>
<stop style="stop-color:#c4d7eb;stop-opacity:0;" offset="1" id="stop2694-9"/>
</linearGradient>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient2690-3" id="linearGradient2696-0" x1="32.647972" y1="30.748846" x2="37.124462" y2="24.842253" gradientUnits="userSpaceOnUse" gradientTransform="translate(-48.77039,-5.765705)"/>
<linearGradient inkscape:collect="always" id="linearGradient2871-3">
<stop style="stop-color:#3465a4;stop-opacity:1;" offset="0" id="stop2873-7"/>
<stop style="stop-color:#3465a4;stop-opacity:1" offset="1" id="stop2875-0"/>
</linearGradient>
<linearGradient id="linearGradient2402-2">
<stop style="stop-color:#729fcf;stop-opacity:1;" offset="0" id="stop2404-8"/>
<stop style="stop-color:#528ac5;stop-opacity:1;" offset="1" id="stop2406-0"/>
</linearGradient>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient2797-7" id="linearGradient1493-3" gradientUnits="userSpaceOnUse" x1="5.9649176" y1="26.048164" x2="52.854097" y2="26.048164"/>
<linearGradient inkscape:collect="always" id="linearGradient2797-7">
<stop style="stop-color:#ffffff;stop-opacity:1;" offset="0" id="stop2799-4"/>
<stop style="stop-color:#ffffff;stop-opacity:0;" offset="1" id="stop2801-0"/>
</linearGradient>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient2797-7" id="linearGradient1491-2" gradientUnits="userSpaceOnUse" x1="5.9649176" y1="26.048164" x2="52.854097" y2="26.048164"/>
<linearGradient inkscape:collect="always" id="linearGradient7179-1">
<stop style="stop-color:#ffffff;stop-opacity:1;" offset="0" id="stop7181-0"/>
<stop style="stop-color:#ffffff;stop-opacity:0;" offset="1" id="stop7183-4"/>
</linearGradient>
<linearGradient id="linearGradient2316-2">
<stop style="stop-color:#000000;stop-opacity:1;" offset="0" id="stop2318-6"/>
<stop style="stop-color:#ffffff;stop-opacity:0.65979379;" offset="1" id="stop2320-9"/>
</linearGradient>
<linearGradient id="linearGradient1322-8">
<stop id="stop1324-1" offset="0.0000000" style="stop-color:#729fcf"/>
<stop id="stop1326-2" offset="1.0000000" style="stop-color:#5187d6;stop-opacity:1.0000000;"/>
</linearGradient>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient1322-8" id="linearGradient4975-0" x1="34.892849" y1="36.422989" x2="45.918697" y2="48.547989" gradientUnits="userSpaceOnUse" gradientTransform="translate(-18.01785,-13.57119)"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient7179-1" id="linearGradient7185-5" x1="13.435029" y1="13.604306" x2="22.374878" y2="23.554308" gradientUnits="userSpaceOnUse"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient7179-1" id="linearGradient7189-6" gradientUnits="userSpaceOnUse" x1="13.435029" y1="13.604306" x2="22.374878" y2="23.554308" gradientTransform="matrix(-1.000000,0.000000,0.000000,-1.000000,47.93934,50.02474)"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient2380-5" id="linearGradient7180-0" gradientUnits="userSpaceOnUse" x1="62.513836" y1="36.061237" x2="15.984863" y2="20.60858"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient2871-3" id="linearGradient7182-5" gradientUnits="userSpaceOnUse" x1="46.834816" y1="45.264122" x2="45.380436" y2="50.939667"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient2402-2" id="linearGradient7184-1" gradientUnits="userSpaceOnUse" x1="18.935766" y1="23.667896" x2="53.588622" y2="26.649362"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient2871-3" id="linearGradient7186-6" gradientUnits="userSpaceOnUse" x1="46.834816" y1="45.264122" x2="45.380436" y2="50.939667"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient7916-4" id="linearGradient7922-7" x1="16.874998" y1="22.851799" x2="27.900846" y2="34.976799" gradientUnits="userSpaceOnUse"/>
<radialGradient inkscape:collect="always" xlink:href="#linearGradient2091-4" id="radialGradient2097-3" cx="23.070683" cy="35.127438" fx="23.070683" fy="35.127438" r="10.319340" gradientTransform="matrix(0.914812,1.265023e-2,-8.21502e-3,0.213562,2.253914,27.18889)" gradientUnits="userSpaceOnUse"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient2846-0" id="linearGradient2852-6" x1="27.366341" y1="26.580296" x2="31.335964" y2="30.557772" gradientUnits="userSpaceOnUse"/>
<radialGradient inkscape:collect="always" xlink:href="#linearGradient4477-1" id="radialGradient2842-7" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1,0,0,0.237968,0,28.93278)" cx="24.130018" cy="37.967922" fx="24.130018" fy="37.967922" r="16.528622"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient2366-6" id="linearGradient2372-0" x1="18.292673" y1="13.602121" x2="17.500893" y2="25.743469" gradientUnits="userSpaceOnUse"/>
<radialGradient gradientUnits="userSpaceOnUse" gradientTransform="matrix(1,0,0,0.237968,0,28.93278)" r="16.528622" fy="37.967922" fx="24.130018" cy="37.967922" cx="24.130018" id="radialGradient4493-9" xlink:href="#linearGradient4487-8" inkscape:collect="always"/>
<radialGradient gradientUnits="userSpaceOnUse" gradientTransform="matrix(2.592963,0,0,2.252104,-25.05975,-18.941)" r="6.6562500" fy="13.078408" fx="15.414371" cy="13.078408" cx="15.414371" id="radialGradient4473-9" xlink:href="#linearGradient4467-5" inkscape:collect="always"/>
<radialGradient gradientUnits="userSpaceOnUse" r="8.3085051" fy="21.817987" fx="18.240929" cy="21.817987" cx="18.240929" id="radialGradient4460-5" xlink:href="#linearGradient4454-4" inkscape:collect="always"/>
<linearGradient gradientTransform="matrix(1.334593,0,0,1.291292,-6.973842,-7.460658)" gradientUnits="userSpaceOnUse" y2="31.062500" x2="33.218750" y1="34.000000" x1="30.656250" id="linearGradient4446-6" xlink:href="#linearGradient4440-0" inkscape:collect="always"/>
<linearGradient id="linearGradient4440-0">
<stop id="stop4442-8" offset="0" style="stop-color:#7d7d7d;stop-opacity:1;"/>
<stop style="stop-color:#b1b1b1;stop-opacity:1.0000000;" offset="0.50000000" id="stop4448-3"/>
<stop id="stop4444-5" offset="1.0000000" style="stop-color:#686868;stop-opacity:1.0000000;"/>
</linearGradient>
<linearGradient id="linearGradient4454-4">
<stop id="stop4456-1" offset="0.0000000" style="stop-color:#729fcf;stop-opacity:0.20784314;"/>
<stop id="stop4458-5" offset="1.0000000" style="stop-color:#729fcf;stop-opacity:0.67619050;"/>
</linearGradient>
<linearGradient id="linearGradient4467-5">
<stop id="stop4469-9" offset="0" style="stop-color:#ffffff;stop-opacity:1;"/>
<stop id="stop4471-3" offset="1.0000000" style="stop-color:#ffffff;stop-opacity:0.24761905;"/>
</linearGradient>
<linearGradient id="linearGradient4477-1" inkscape:collect="always">
<stop id="stop4479-1" offset="0" style="stop-color:#000000;stop-opacity:1;"/>
<stop id="stop4481-3" offset="1" style="stop-color:#000000;stop-opacity:0;"/>
</linearGradient>
<linearGradient id="linearGradient4487-8" inkscape:collect="always">
<stop id="stop4489-0" offset="0" style="stop-color:#ffffff;stop-opacity:1;"/>
<stop id="stop4491-4" offset="1" style="stop-color:#ffffff;stop-opacity:0;"/>
</linearGradient>
<linearGradient id="linearGradient2366-6">
<stop style="stop-color:#ffffff;stop-opacity:1;" offset="0" id="stop2368-3"/>
<stop id="stop2374-5" offset="0.50000000" style="stop-color:#ffffff;stop-opacity:0.21904762;"/>
<stop style="stop-color:#ffffff;stop-opacity:1.0000000;" offset="1.0000000" id="stop2370-0"/>
</linearGradient>
<linearGradient id="linearGradient2846-0">
<stop style="stop-color:#8a8a8a;stop-opacity:1.0000000;" offset="0.0000000" id="stop2848-8"/>
<stop style="stop-color:#484848;stop-opacity:1.0000000;" offset="1.0000000" id="stop2850-7"/>
</linearGradient>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient2846" id="linearGradient3882" gradientUnits="userSpaceOnUse" x1="27.366341" y1="26.580296" x2="31.335964" y2="30.557772"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient4440" id="linearGradient3884" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.334593,0,0,1.291292,-6.973842,-7.460658)" x1="30.656250" y1="34.000000" x2="33.218750" y2="31.062500"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient2366" id="linearGradient3886" gradientUnits="userSpaceOnUse" x1="18.292673" y1="13.602121" x2="17.500893" y2="25.743469"/>
<radialGradient inkscape:collect="always" xlink:href="#linearGradient4454" id="radialGradient3888" gradientUnits="userSpaceOnUse" cx="18.240929" cy="21.817987" fx="18.240929" fy="21.817987" r="8.3085051"/>
<radialGradient inkscape:collect="always" xlink:href="#linearGradient4467" id="radialGradient3890" gradientUnits="userSpaceOnUse" gradientTransform="matrix(2.592963,0,0,2.252104,-25.05975,-18.941)" cx="15.414371" cy="13.078408" fx="15.414371" fy="13.078408" r="6.6562500"/>
</defs>
<sodipodi:namedview stroke="#3465a4" inkscape:window-y="0" inkscape:window-x="99" inkscape:window-height="1056" inkscape:window-width="1820" inkscape:showpageshadow="false" inkscape:document-units="px" inkscape:grid-bbox="true" showgrid="false" inkscape:current-layer="g4336" inkscape:cy="23.077298" inkscape:cx="19.627259" inkscape:zoom="16" inkscape:pageshadow="2" inkscape:pageopacity="0.0" borderopacity="0.25490196" bordercolor="#666666" pagecolor="#ffffff" id="base" fill="#729fcf" inkscape:object-paths="true" inkscape:window-maximized="1">
<inkscape:grid type="xygrid" id="grid3085"/>
</sodipodi:namedview>
<metadata id="metadata4">
<rdf:RDF>
<cc:Work rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
<dc:creator>
<cc:Agent>
<dc:title>Martin Ruskov</dc:title>
</cc:Agent>
</dc:creator>
<dc:source>http://commons.wikimedia.org/wiki/Tango_icon</dc:source>
<cc:license rdf:resource="http://creativecommons.org/licenses/by-sa/2.0/"/>
</cc:Work>
<cc:License rdf:about="http://creativecommons.org/licenses/by-sa/2.0/">
<cc:permits rdf:resource="http://web.resource.org/cc/Reproduction"/>
<cc:permits rdf:resource="http://web.resource.org/cc/Distribution"/>
<cc:requires rdf:resource="http://web.resource.org/cc/Notice"/>
<cc:requires rdf:resource="http://web.resource.org/cc/Attribution"/>
<cc:permits rdf:resource="http://web.resource.org/cc/DerivativeWorks"/>
<cc:requires rdf:resource="http://web.resource.org/cc/ShareAlike"/>
</cc:License>
</rdf:RDF>
</metadata>
<g inkscape:groupmode="layer" id="layer2" inkscape:label="Shadow" sodipodi:insensitive="true">
<path sodipodi:type="arc" style="opacity:0.17112301;color:#000000;fill:url(#radialGradient2842);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible" id="path4475" sodipodi:cx="24.130018" sodipodi:cy="37.967922" sodipodi:rx="16.528622" sodipodi:ry="3.9332814" d="m 40.65864,37.967922 a 16.528622,3.9332814 0 1 1 -33.0572434,0 16.528622,3.9332814 0 1 1 33.0572434,0 z" transform="matrix(1.446431,0,0,1.51999,-10.97453,-17.75168)"/>
<path transform="matrix(0.497764,0,0,0.609621,8.973526,15.61929)" d="m 40.65864,37.967922 a 16.528622,3.9332814 0 1 1 -33.0572434,0 16.528622,3.9332814 0 1 1 33.0572434,0 z" sodipodi:ry="3.9332814" sodipodi:rx="16.528622" sodipodi:cy="37.967922" sodipodi:cx="24.130018" id="path4485" style="color:#000000;fill:url(#radialGradient4493);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible" sodipodi:type="arc"/>
</g>
<g inkscape:groupmode="layer" id="layer3" inkscape:label="Magnifying glass" sodipodi:insensitive="true">
<g id="g1772" transform="translate(0.12372323,0.07535096)">
<path sodipodi:nodetypes="csscccscccscczzzz" id="path2844" d="m 18.627569,3.1435548 c -8.13913,0 -14.7448008,6.6056711 -14.7448008,14.7448012 0,8.13913 6.6056708,14.744802 14.7448008,14.744802 3.479555,0 6.551001,-1.384393 9.073723,-3.402647 -0.205377,1.006881 -0.07803,2.035368 0.756144,2.759925 l 10.964084,9.52741 c 1.233416,1.071329 3.087462,0.93096 4.15879,-0.302457 1.071328,-1.233418 0.930959,-3.087462 -0.302457,-4.15879 L 32.313769,27.529188 c -0.671527,-0.583279 -1.492878,-0.755969 -2.306238,-0.642722 1.9867,-2.512422 3.364839,-5.548803 3.364839,-8.99811 0,-8.1391301 -6.605671,-14.7448012 -14.744801,-14.7448012 z m -0.07562,1.2261833 c 7.639459,0 13.291775,4.7889505 13.291775,13.2917749 0,8.675113 -5.81669,13.291775 -13.291775,13.291775 -7.302949,0 -13.2917734,-5.478092 -13.2917734,-13.291775 0,-7.9841069 5.8246384,-13.291775 13.2917734,-13.2917749 z" style="color:#000000;fill:#dcdcdc;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient3882);stroke-width:2.00000095;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible" inkscape:connector-curvature="0"/>
<path style="color:#000000;fill:#dcdcdc;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.00000036;marker:none;visibility:visible;display:inline;overflow:visible" d="m 18.602905,3.0803551 c -8.16544,0 -14.7924642,6.627024 -14.7924642,14.7924639 0,8.16544 6.6270242,14.792464 14.7924642,14.792464 3.490803,0 6.572177,-1.388867 9.103055,-3.413645 -0.206041,1.010136 -0.07829,2.041947 0.758587,2.768846 l 10.999526,9.558207 c 1.237403,1.074792 3.097442,0.93397 4.172233,-0.303435 1.074791,-1.237404 0.933968,-3.097442 -0.303435,-4.172233 L 32.333346,27.544815 c -0.673698,-0.585164 -1.497704,-0.758413 -2.313693,-0.644799 1.993122,-2.520544 3.375716,-5.56674 3.375716,-9.027197 0,-8.1654399 -6.627024,-14.7924639 -14.792464,-14.7924639 z m -0.07586,3.1860692 c 6.281108,2e-7 11.378818,5.0977107 11.378818,11.3788187 0,6.281108 -5.09771,11.378818 -11.378818,11.378818 -6.281108,0 -11.3788184,-5.09771 -11.3788184,-11.378818 2e-7,-6.281108 5.0977104,-11.3788187 11.3788184,-11.3788187 z" id="path4430" inkscape:connector-curvature="0"/>
<path style="color:#000000;fill:url(#linearGradient3884);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible" d="m 39.507004,41.57769 c -0.478672,-2.273187 1.39733,-4.811422 3.584053,-4.788375 0,0 -10.760367,-9.258111 -10.760367,-9.258111 -2.944791,-0.05671 -4.269502,2.272616 -3.776814,4.599922 l 10.953128,9.446564 z" id="path4438" sodipodi:nodetypes="ccccc" inkscape:connector-curvature="0"/>
<path sodipodi:type="arc" style="color:#000000;fill:none;stroke:url(#linearGradient3886);stroke-width:0.8027336;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible" id="path4450" sodipodi:cx="17.500893" sodipodi:cy="18.920233" sodipodi:rx="11.048544" sodipodi:ry="11.048544" d="m 28.549437,18.920233 a 11.048544,11.048544 0 1 1 -22.0970883,0 11.048544,11.048544 0 1 1 22.0970883,0 z" transform="matrix(1.245743,0,0,1.245743,-3.425346,-6.177033)"/>
<rect style="opacity:0.43315507;color:#000000;fill:none;stroke:#ffffff;stroke-width:1.00003111;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible" id="rect4495" width="19.048439" height="4.4404783" x="40.373337" y="0.14086054" rx="2.1366608" ry="1.8879365" transform="matrix(0.752986,0.658037,-0.648902,0.760872,0,0)"/>
<path sodipodi:type="arc" style="color:#000000;fill:url(#radialGradient3888);fill-opacity:1;fill-rule:evenodd;stroke:#3063a3;stroke-width:0.71499395;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dashoffset:0;marker:none;visibility:visible" id="path4452" sodipodi:cx="17.589281" sodipodi:cy="18.478292" sodipodi:rx="8.3085051" sodipodi:ry="8.3085051" d="m 25.897786,18.478292 a 8.3085051,8.3085051 0 1 1 -16.61701,0 8.3085051,8.3085051 0 1 1 16.61701,0 z" transform="matrix(1.398614,0,0,1.398614,-6.224338,-8.298958)"/>
<path style="opacity:0.83422457;color:#000000;fill:url(#radialGradient3890);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible" d="m 18.156915,7.3966938 c -5.20759,0 -9.4245469,4.2169572 -9.4245469,9.4245472 0,1.503975 0.4203072,2.887773 1.0471719,4.149903 1.25238,0.461613 2.582757,0.775683 3.994767,0.775683 6.170955,0 11.099282,-4.861637 11.480106,-10.937129 C 23.523449,8.7641668 21.044374,7.3966938 18.156915,7.3966938 z" id="path4462" inkscape:connector-curvature="0"/>
</g>
</g>
<g inkscape:groupmode="layer" inkscape:label="Symbol" id="layer1" style="display:inline">
<g inkscape:label="Layer 1" id="g4336" transform="matrix(0.5028156,0,0,0.5028156,6.3171967,5.1658557)">
<path style="fill:#518ac4;stroke:#3465a4;stroke-width:1.98880064000000001px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;fill-opacity:1" d="m 10.307563,20.552553 0,7.955203 9.944004,0 0,9.944003 7.955203,0 0,-9.944003 9.944003,0 0,-7.955203 -9.944003,0 0,-9.944004 -7.955203,0 0,9.944004 z" id="path3853" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccccccccccc"/>
<path style="opacity:0.41000001;fill:none;stroke:#eeeeec;stroke-width:1.98880064px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="m 12.296364,22.541354 0,3.977601 9.944004,0 0,9.944003 3.977601,0 0,-9.944003 9.944003,0 c 0,0 0,-3.977601 0,-3.977601 l -9.944003,0 0,-9.944004 -3.977601,0 0,9.944004 z" id="path3855" inkscape:connector-curvature="0"/>
<path style="opacity:0.4;fill:#eeeeec;stroke:none" d="m 17,11 0,4.5 0,0.5 -0.5,0 -4.5,0 0,2.1875 c 1.648689,-0.854731 4.029588,-1.379968 6.461167,-0.702665 C 20.155915,17.956898 23.079975,17.91651 25,17.625 L 25,16 20.5,16 20,16 20,15.5 20,11 z" transform="matrix(1.9888007,0,0,1.9888007,-12.563645,-10.273857)" id="path3857" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccccsccccccc"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 32 KiB

View File

@ -0,0 +1,278 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" sodipodi:docname="View-zoom-in.svg" inkscape:version="0.48.1 r9760" sodipodi:version="0.32" id="svg11300" height="48px" width="48px" inkscape:output_extension="org.inkscape.output.svg.inkscape" version="1.1">
<defs id="defs3">
<linearGradient id="linearGradient2846">
<stop id="stop2848" offset="0.0000000" style="stop-color:#8a8a8a;stop-opacity:1.0000000;"/>
<stop id="stop2850" offset="1.0000000" style="stop-color:#484848;stop-opacity:1.0000000;"/>
</linearGradient>
<linearGradient id="linearGradient2366">
<stop id="stop2368" offset="0" style="stop-color:#ffffff;stop-opacity:1;"/>
<stop style="stop-color:#ffffff;stop-opacity:0.21904762;" offset="0.50000000" id="stop2374"/>
<stop id="stop2370" offset="1.0000000" style="stop-color:#ffffff;stop-opacity:1.0000000;"/>
</linearGradient>
<linearGradient inkscape:collect="always" id="linearGradient4487">
<stop style="stop-color:#ffffff;stop-opacity:1;" offset="0" id="stop4489"/>
<stop style="stop-color:#ffffff;stop-opacity:0;" offset="1" id="stop4491"/>
</linearGradient>
<linearGradient inkscape:collect="always" id="linearGradient4477">
<stop style="stop-color:#000000;stop-opacity:1;" offset="0" id="stop4479"/>
<stop style="stop-color:#000000;stop-opacity:0;" offset="1" id="stop4481"/>
</linearGradient>
<linearGradient id="linearGradient4467">
<stop style="stop-color:#ffffff;stop-opacity:1;" offset="0" id="stop4469"/>
<stop style="stop-color:#ffffff;stop-opacity:0.24761905;" offset="1.0000000" id="stop4471"/>
</linearGradient>
<linearGradient id="linearGradient4454">
<stop style="stop-color:#729fcf;stop-opacity:0.20784314;" offset="0.0000000" id="stop4456"/>
<stop style="stop-color:#729fcf;stop-opacity:0.67619050;" offset="1.0000000" id="stop4458"/>
</linearGradient>
<linearGradient id="linearGradient4440">
<stop style="stop-color:#7d7d7d;stop-opacity:1;" offset="0" id="stop4442"/>
<stop id="stop4448" offset="0.50000000" style="stop-color:#b1b1b1;stop-opacity:1.0000000;"/>
<stop style="stop-color:#686868;stop-opacity:1.0000000;" offset="1.0000000" id="stop4444"/>
</linearGradient>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient4440" id="linearGradient4446" x1="30.656250" y1="34.000000" x2="33.218750" y2="31.062500" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.334593,0.000000,0.000000,1.291292,-6.973842,-7.460658)"/>
<radialGradient inkscape:collect="always" xlink:href="#linearGradient4454" id="radialGradient4460" cx="18.240929" cy="21.817987" fx="18.240929" fy="21.817987" r="8.3085051" gradientUnits="userSpaceOnUse"/>
<radialGradient inkscape:collect="always" xlink:href="#linearGradient4467" id="radialGradient4473" cx="15.414371" cy="13.078408" fx="15.414371" fy="13.078408" r="6.6562500" gradientTransform="matrix(2.592963,-7.746900e-24,-5.714443e-24,2.252104,-25.05975,-18.94100)" gradientUnits="userSpaceOnUse"/>
<radialGradient inkscape:collect="always" xlink:href="#linearGradient4487" id="radialGradient4493" cx="24.130018" cy="37.967922" fx="24.130018" fy="37.967922" r="16.528622" gradientTransform="matrix(1.000000,0.000000,0.000000,0.237968,3.152859e-15,28.93278)" gradientUnits="userSpaceOnUse"/>
<linearGradient gradientUnits="userSpaceOnUse" y2="25.743469" x2="17.500893" y1="13.602121" x1="18.292673" id="linearGradient2372" xlink:href="#linearGradient2366" inkscape:collect="always"/>
<radialGradient r="16.528622" fy="37.967922" fx="24.130018" cy="37.967922" cx="24.130018" gradientTransform="matrix(1.000000,0.000000,0.000000,0.237968,-2.471981e-16,28.93278)" gradientUnits="userSpaceOnUse" id="radialGradient2842" xlink:href="#linearGradient4477" inkscape:collect="always"/>
<linearGradient gradientUnits="userSpaceOnUse" y2="30.557772" x2="31.335964" y1="26.580296" x1="27.366341" id="linearGradient2852" xlink:href="#linearGradient2846" inkscape:collect="always"/>
<radialGradient gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.914812,1.265023e-2,-8.21502e-3,0.213562,2.253914,27.18889)" r="10.319340" fy="35.127438" fx="23.070683" cy="35.127438" cx="23.070683" id="radialGradient2097" xlink:href="#linearGradient2091" inkscape:collect="always"/>
<linearGradient y2="50.939667" x2="45.380436" y1="45.264122" x1="46.834816" gradientUnits="userSpaceOnUse" id="linearGradient7186" xlink:href="#linearGradient2871" inkscape:collect="always"/>
<linearGradient y2="26.649362" x2="53.588622" y1="23.667896" x1="18.935766" gradientUnits="userSpaceOnUse" id="linearGradient7184" xlink:href="#linearGradient2402" inkscape:collect="always"/>
<linearGradient y2="50.939667" x2="45.380436" y1="45.264122" x1="46.834816" gradientUnits="userSpaceOnUse" id="linearGradient7182" xlink:href="#linearGradient2871" inkscape:collect="always"/>
<linearGradient y2="20.60858" x2="15.984863" y1="36.061237" x1="62.513836" gradientUnits="userSpaceOnUse" id="linearGradient7180" xlink:href="#linearGradient2380" inkscape:collect="always"/>
<linearGradient gradientTransform="matrix(-1.000000,0.000000,0.000000,-1.000000,47.93934,50.02474)" y2="23.554308" x2="22.374878" y1="13.604306" x1="13.435029" gradientUnits="userSpaceOnUse" id="linearGradient7189" xlink:href="#linearGradient7179" inkscape:collect="always"/>
<linearGradient gradientUnits="userSpaceOnUse" y2="23.554308" x2="22.374878" y1="13.604306" x1="13.435029" id="linearGradient7185" xlink:href="#linearGradient7179" inkscape:collect="always"/>
<linearGradient id="linearGradient1322">
<stop style="stop-color:#729fcf" offset="0.0000000" id="stop1324"/>
<stop style="stop-color:#5187d6;stop-opacity:1.0000000;" offset="1.0000000" id="stop1326"/>
</linearGradient>
<linearGradient id="linearGradient2316">
<stop id="stop2318" offset="0" style="stop-color:#000000;stop-opacity:1;"/>
<stop id="stop2320" offset="1" style="stop-color:#ffffff;stop-opacity:0.65979379;"/>
</linearGradient>
<linearGradient id="linearGradient7179" inkscape:collect="always">
<stop id="stop7181" offset="0" style="stop-color:#ffffff;stop-opacity:1;"/>
<stop id="stop7183" offset="1" style="stop-color:#ffffff;stop-opacity:0;"/>
</linearGradient>
<linearGradient y2="26.048164" x2="52.854097" y1="26.048164" x1="5.9649176" gradientUnits="userSpaceOnUse" id="linearGradient1491" xlink:href="#linearGradient2797" inkscape:collect="always"/>
<linearGradient id="linearGradient2797" inkscape:collect="always">
<stop id="stop2799" offset="0" style="stop-color:#ffffff;stop-opacity:1;"/>
<stop id="stop2801" offset="1" style="stop-color:#ffffff;stop-opacity:0;"/>
</linearGradient>
<linearGradient y2="26.048164" x2="52.854097" y1="26.048164" x1="5.9649176" gradientUnits="userSpaceOnUse" id="linearGradient1493" xlink:href="#linearGradient2797" inkscape:collect="always"/>
<linearGradient id="linearGradient2402">
<stop id="stop2404" offset="0" style="stop-color:#729fcf;stop-opacity:1;"/>
<stop id="stop2406" offset="1" style="stop-color:#528ac5;stop-opacity:1;"/>
</linearGradient>
<linearGradient id="linearGradient2871" inkscape:collect="always">
<stop id="stop2873" offset="0" style="stop-color:#3465a4;stop-opacity:1;"/>
<stop id="stop2875" offset="1" style="stop-color:#3465a4;stop-opacity:1"/>
</linearGradient>
<linearGradient gradientTransform="translate(-48.77039,-5.765705)" gradientUnits="userSpaceOnUse" y2="24.842253" x2="37.124462" y1="30.748846" x1="32.647972" id="linearGradient2696" xlink:href="#linearGradient2690" inkscape:collect="always"/>
<linearGradient id="linearGradient2690" inkscape:collect="always">
<stop id="stop2692" offset="0" style="stop-color:#c4d7eb;stop-opacity:1;"/>
<stop id="stop2694" offset="1" style="stop-color:#c4d7eb;stop-opacity:0;"/>
</linearGradient>
<linearGradient gradientTransform="translate(-48.77039,-5.765705)" gradientUnits="userSpaceOnUse" y2="24.842253" x2="37.124462" y1="31.455952" x1="36.713837" id="linearGradient2688" xlink:href="#linearGradient2682" inkscape:collect="always"/>
<linearGradient id="linearGradient2682">
<stop id="stop2684" offset="0" style="stop-color:#3977c3;stop-opacity:1;"/>
<stop id="stop2686" offset="1" style="stop-color:#89aedc;stop-opacity:0;"/>
</linearGradient>
<linearGradient id="linearGradient2380">
<stop id="stop2382" offset="0" style="stop-color:#b9cfe7;stop-opacity:1"/>
<stop id="stop2384" offset="1" style="stop-color:#729fcf;stop-opacity:1"/>
</linearGradient>
<linearGradient y2="19.115122" x2="15.419417" y1="10.612206" x1="13.478554" gradientTransform="translate(-48.30498,-6.043298)" gradientUnits="userSpaceOnUse" id="linearGradient1486" xlink:href="#linearGradient2831" inkscape:collect="always"/>
<linearGradient id="linearGradient2831">
<stop id="stop2833" offset="0" style="stop-color:#3465a4;stop-opacity:1;"/>
<stop style="stop-color:#5b86be;stop-opacity:1;" offset="0.33333334" id="stop2855"/>
<stop id="stop2835" offset="1" style="stop-color:#83a8d8;stop-opacity:0;"/>
</linearGradient>
<linearGradient y2="26.194071" x2="37.065414" y1="29.729605" x1="37.128052" gradientTransform="matrix(-1.000000,0.000000,0.000000,-1.000000,-1.242480,40.08170)" gradientUnits="userSpaceOnUse" id="linearGradient1488" xlink:href="#linearGradient2847" inkscape:collect="always"/>
<linearGradient id="linearGradient2847" inkscape:collect="always">
<stop id="stop2849" offset="0" style="stop-color:#3465a4;stop-opacity:1;"/>
<stop id="stop2851" offset="1" style="stop-color:#3465a4;stop-opacity:0;"/>
</linearGradient>
<radialGradient r="15.644737" fy="36.421127" fx="24.837126" cy="36.421127" cx="24.837126" gradientTransform="matrix(1.000000,0.000000,0.000000,0.536723,-1.018989e-13,16.87306)" gradientUnits="userSpaceOnUse" id="radialGradient1503" xlink:href="#linearGradient8662" inkscape:collect="always"/>
<linearGradient id="linearGradient8662" inkscape:collect="always">
<stop id="stop8664" offset="0" style="stop-color:#000000;stop-opacity:1;"/>
<stop id="stop8666" offset="1" style="stop-color:#000000;stop-opacity:0;"/>
</linearGradient>
<linearGradient id="linearGradient7916">
<stop id="stop7918" offset="0" style="stop-color:#ffffff;stop-opacity:1;"/>
<stop id="stop7920" offset="1.0000000" style="stop-color:#ffffff;stop-opacity:0.34020618;"/>
</linearGradient>
<linearGradient id="linearGradient2091" inkscape:collect="always">
<stop id="stop2093" offset="0" style="stop-color:#000000;stop-opacity:1;"/>
<stop id="stop2095" offset="1" style="stop-color:#000000;stop-opacity:0;"/>
</linearGradient>
<linearGradient inkscape:collect="always" id="linearGradient2091-4">
<stop style="stop-color:#000000;stop-opacity:1;" offset="0" id="stop2093-5"/>
<stop style="stop-color:#000000;stop-opacity:0;" offset="1" id="stop2095-1"/>
</linearGradient>
<linearGradient id="linearGradient7916-4">
<stop style="stop-color:#ffffff;stop-opacity:1;" offset="0" id="stop7918-2"/>
<stop style="stop-color:#ffffff;stop-opacity:0.34020618;" offset="1.0000000" id="stop7920-2"/>
</linearGradient>
<linearGradient inkscape:collect="always" id="linearGradient8662-1">
<stop style="stop-color:#000000;stop-opacity:1;" offset="0" id="stop8664-8"/>
<stop style="stop-color:#000000;stop-opacity:0;" offset="1" id="stop8666-3"/>
</linearGradient>
<radialGradient inkscape:collect="always" xlink:href="#linearGradient8662-1" id="radialGradient1503-3" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.000000,0.000000,0.000000,0.536723,-1.018989e-13,16.87306)" cx="24.837126" cy="36.421127" fx="24.837126" fy="36.421127" r="15.644737"/>
<linearGradient inkscape:collect="always" id="linearGradient2847-9">
<stop style="stop-color:#3465a4;stop-opacity:1;" offset="0" id="stop2849-2"/>
<stop style="stop-color:#3465a4;stop-opacity:0;" offset="1" id="stop2851-2"/>
</linearGradient>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient2847-9" id="linearGradient1488-8" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-1.000000,0.000000,0.000000,-1.000000,-1.242480,40.08170)" x1="37.128052" y1="29.729605" x2="37.065414" y2="26.194071"/>
<linearGradient id="linearGradient2831-3">
<stop style="stop-color:#3465a4;stop-opacity:1;" offset="0" id="stop2833-8"/>
<stop id="stop2855-6" offset="0.33333334" style="stop-color:#5b86be;stop-opacity:1;"/>
<stop style="stop-color:#83a8d8;stop-opacity:0;" offset="1" id="stop2835-0"/>
</linearGradient>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient2831-3" id="linearGradient1486-4" gradientUnits="userSpaceOnUse" gradientTransform="translate(-48.30498,-6.043298)" x1="13.478554" y1="10.612206" x2="15.419417" y2="19.115122"/>
<linearGradient id="linearGradient2380-5">
<stop style="stop-color:#b9cfe7;stop-opacity:1" offset="0" id="stop2382-2"/>
<stop style="stop-color:#729fcf;stop-opacity:1" offset="1" id="stop2384-4"/>
</linearGradient>
<linearGradient id="linearGradient2682-7">
<stop style="stop-color:#3977c3;stop-opacity:1;" offset="0" id="stop2684-4"/>
<stop style="stop-color:#89aedc;stop-opacity:0;" offset="1" id="stop2686-2"/>
</linearGradient>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient2682-7" id="linearGradient2688-2" x1="36.713837" y1="31.455952" x2="37.124462" y2="24.842253" gradientUnits="userSpaceOnUse" gradientTransform="translate(-48.77039,-5.765705)"/>
<linearGradient inkscape:collect="always" id="linearGradient2690-3">
<stop style="stop-color:#c4d7eb;stop-opacity:1;" offset="0" id="stop2692-4"/>
<stop style="stop-color:#c4d7eb;stop-opacity:0;" offset="1" id="stop2694-9"/>
</linearGradient>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient2690-3" id="linearGradient2696-0" x1="32.647972" y1="30.748846" x2="37.124462" y2="24.842253" gradientUnits="userSpaceOnUse" gradientTransform="translate(-48.77039,-5.765705)"/>
<linearGradient inkscape:collect="always" id="linearGradient2871-3">
<stop style="stop-color:#3465a4;stop-opacity:1;" offset="0" id="stop2873-7"/>
<stop style="stop-color:#3465a4;stop-opacity:1" offset="1" id="stop2875-0"/>
</linearGradient>
<linearGradient id="linearGradient2402-2">
<stop style="stop-color:#729fcf;stop-opacity:1;" offset="0" id="stop2404-8"/>
<stop style="stop-color:#528ac5;stop-opacity:1;" offset="1" id="stop2406-0"/>
</linearGradient>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient2797-7" id="linearGradient1493-3" gradientUnits="userSpaceOnUse" x1="5.9649176" y1="26.048164" x2="52.854097" y2="26.048164"/>
<linearGradient inkscape:collect="always" id="linearGradient2797-7">
<stop style="stop-color:#ffffff;stop-opacity:1;" offset="0" id="stop2799-4"/>
<stop style="stop-color:#ffffff;stop-opacity:0;" offset="1" id="stop2801-0"/>
</linearGradient>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient2797-7" id="linearGradient1491-2" gradientUnits="userSpaceOnUse" x1="5.9649176" y1="26.048164" x2="52.854097" y2="26.048164"/>
<linearGradient inkscape:collect="always" id="linearGradient7179-1">
<stop style="stop-color:#ffffff;stop-opacity:1;" offset="0" id="stop7181-0"/>
<stop style="stop-color:#ffffff;stop-opacity:0;" offset="1" id="stop7183-4"/>
</linearGradient>
<linearGradient id="linearGradient2316-2">
<stop style="stop-color:#000000;stop-opacity:1;" offset="0" id="stop2318-6"/>
<stop style="stop-color:#ffffff;stop-opacity:0.65979379;" offset="1" id="stop2320-9"/>
</linearGradient>
<linearGradient id="linearGradient1322-8">
<stop id="stop1324-1" offset="0.0000000" style="stop-color:#729fcf"/>
<stop id="stop1326-2" offset="1.0000000" style="stop-color:#5187d6;stop-opacity:1.0000000;"/>
</linearGradient>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient1322-8" id="linearGradient4975-0" x1="34.892849" y1="36.422989" x2="45.918697" y2="48.547989" gradientUnits="userSpaceOnUse" gradientTransform="translate(-18.01785,-13.57119)"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient7179-1" id="linearGradient7185-5" x1="13.435029" y1="13.604306" x2="22.374878" y2="23.554308" gradientUnits="userSpaceOnUse"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient7179-1" id="linearGradient7189-6" gradientUnits="userSpaceOnUse" x1="13.435029" y1="13.604306" x2="22.374878" y2="23.554308" gradientTransform="matrix(-1.000000,0.000000,0.000000,-1.000000,47.93934,50.02474)"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient2380-5" id="linearGradient7180-0" gradientUnits="userSpaceOnUse" x1="62.513836" y1="36.061237" x2="15.984863" y2="20.60858"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient2871-3" id="linearGradient7182-5" gradientUnits="userSpaceOnUse" x1="46.834816" y1="45.264122" x2="45.380436" y2="50.939667"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient2402-2" id="linearGradient7184-1" gradientUnits="userSpaceOnUse" x1="18.935766" y1="23.667896" x2="53.588622" y2="26.649362"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient2871-3" id="linearGradient7186-6" gradientUnits="userSpaceOnUse" x1="46.834816" y1="45.264122" x2="45.380436" y2="50.939667"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient7916-4" id="linearGradient7922-7" x1="16.874998" y1="22.851799" x2="27.900846" y2="34.976799" gradientUnits="userSpaceOnUse"/>
<radialGradient inkscape:collect="always" xlink:href="#linearGradient2091-4" id="radialGradient2097-3" cx="23.070683" cy="35.127438" fx="23.070683" fy="35.127438" r="10.319340" gradientTransform="matrix(0.914812,1.265023e-2,-8.21502e-3,0.213562,2.253914,27.18889)" gradientUnits="userSpaceOnUse"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient2846-0" id="linearGradient2852-6" x1="27.366341" y1="26.580296" x2="31.335964" y2="30.557772" gradientUnits="userSpaceOnUse"/>
<radialGradient inkscape:collect="always" xlink:href="#linearGradient4477-1" id="radialGradient2842-7" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1,0,0,0.237968,0,28.93278)" cx="24.130018" cy="37.967922" fx="24.130018" fy="37.967922" r="16.528622"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient2366-6" id="linearGradient2372-0" x1="18.292673" y1="13.602121" x2="17.500893" y2="25.743469" gradientUnits="userSpaceOnUse"/>
<radialGradient gradientUnits="userSpaceOnUse" gradientTransform="matrix(1,0,0,0.237968,0,28.93278)" r="16.528622" fy="37.967922" fx="24.130018" cy="37.967922" cx="24.130018" id="radialGradient4493-9" xlink:href="#linearGradient4487-8" inkscape:collect="always"/>
<radialGradient gradientUnits="userSpaceOnUse" gradientTransform="matrix(2.592963,0,0,2.252104,-25.05975,-18.941)" r="6.6562500" fy="13.078408" fx="15.414371" cy="13.078408" cx="15.414371" id="radialGradient4473-9" xlink:href="#linearGradient4467-5" inkscape:collect="always"/>
<radialGradient gradientUnits="userSpaceOnUse" r="8.3085051" fy="21.817987" fx="18.240929" cy="21.817987" cx="18.240929" id="radialGradient4460-5" xlink:href="#linearGradient4454-4" inkscape:collect="always"/>
<linearGradient gradientTransform="matrix(1.334593,0,0,1.291292,-6.973842,-7.460658)" gradientUnits="userSpaceOnUse" y2="31.062500" x2="33.218750" y1="34.000000" x1="30.656250" id="linearGradient4446-6" xlink:href="#linearGradient4440-0" inkscape:collect="always"/>
<linearGradient id="linearGradient4440-0">
<stop id="stop4442-8" offset="0" style="stop-color:#7d7d7d;stop-opacity:1;"/>
<stop style="stop-color:#b1b1b1;stop-opacity:1.0000000;" offset="0.50000000" id="stop4448-3"/>
<stop id="stop4444-5" offset="1.0000000" style="stop-color:#686868;stop-opacity:1.0000000;"/>
</linearGradient>
<linearGradient id="linearGradient4454-4">
<stop id="stop4456-1" offset="0.0000000" style="stop-color:#729fcf;stop-opacity:0.20784314;"/>
<stop id="stop4458-5" offset="1.0000000" style="stop-color:#729fcf;stop-opacity:0.67619050;"/>
</linearGradient>
<linearGradient id="linearGradient4467-5">
<stop id="stop4469-9" offset="0" style="stop-color:#ffffff;stop-opacity:1;"/>
<stop id="stop4471-3" offset="1.0000000" style="stop-color:#ffffff;stop-opacity:0.24761905;"/>
</linearGradient>
<linearGradient id="linearGradient4477-1" inkscape:collect="always">
<stop id="stop4479-1" offset="0" style="stop-color:#000000;stop-opacity:1;"/>
<stop id="stop4481-3" offset="1" style="stop-color:#000000;stop-opacity:0;"/>
</linearGradient>
<linearGradient id="linearGradient4487-8" inkscape:collect="always">
<stop id="stop4489-0" offset="0" style="stop-color:#ffffff;stop-opacity:1;"/>
<stop id="stop4491-4" offset="1" style="stop-color:#ffffff;stop-opacity:0;"/>
</linearGradient>
<linearGradient id="linearGradient2366-6">
<stop style="stop-color:#ffffff;stop-opacity:1;" offset="0" id="stop2368-3"/>
<stop id="stop2374-5" offset="0.50000000" style="stop-color:#ffffff;stop-opacity:0.21904762;"/>
<stop style="stop-color:#ffffff;stop-opacity:1.0000000;" offset="1.0000000" id="stop2370-0"/>
</linearGradient>
<linearGradient id="linearGradient2846-0">
<stop style="stop-color:#8a8a8a;stop-opacity:1.0000000;" offset="0.0000000" id="stop2848-8"/>
<stop style="stop-color:#484848;stop-opacity:1.0000000;" offset="1.0000000" id="stop2850-7"/>
</linearGradient>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient2846" id="linearGradient3882" gradientUnits="userSpaceOnUse" x1="27.366341" y1="26.580296" x2="31.335964" y2="30.557772"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient4440" id="linearGradient3884" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.334593,0,0,1.291292,-6.973842,-7.460658)" x1="30.656250" y1="34.000000" x2="33.218750" y2="31.062500"/>
<linearGradient inkscape:collect="always" xlink:href="#linearGradient2366" id="linearGradient3886" gradientUnits="userSpaceOnUse" x1="18.292673" y1="13.602121" x2="17.500893" y2="25.743469"/>
<radialGradient inkscape:collect="always" xlink:href="#linearGradient4454" id="radialGradient3888" gradientUnits="userSpaceOnUse" cx="18.240929" cy="21.817987" fx="18.240929" fy="21.817987" r="8.3085051"/>
<radialGradient inkscape:collect="always" xlink:href="#linearGradient4467" id="radialGradient3890" gradientUnits="userSpaceOnUse" gradientTransform="matrix(2.592963,0,0,2.252104,-25.05975,-18.941)" cx="15.414371" cy="13.078408" fx="15.414371" fy="13.078408" r="6.6562500"/>
</defs>
<sodipodi:namedview stroke="#3465a4" inkscape:window-y="0" inkscape:window-x="99" inkscape:window-height="1056" inkscape:window-width="1820" inkscape:showpageshadow="false" inkscape:document-units="px" inkscape:grid-bbox="true" showgrid="false" inkscape:current-layer="g4336" inkscape:cy="27.97775" inkscape:cx="15.962112" inkscape:zoom="1" inkscape:pageshadow="2" inkscape:pageopacity="0.0" borderopacity="0.25490196" bordercolor="#666666" pagecolor="#ffffff" id="base" fill="#729fcf" inkscape:object-paths="true" inkscape:window-maximized="1">
<inkscape:grid type="xygrid" id="grid3085"/>
</sodipodi:namedview>
<metadata id="metadata4">
<rdf:RDF>
<cc:Work rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
<dc:creator>
<cc:Agent>
<dc:title>Martin Ruskov</dc:title>
</cc:Agent>
</dc:creator>
<dc:source>http://commons.wikimedia.org/wiki/Tango_icon</dc:source>
<cc:license rdf:resource="http://creativecommons.org/licenses/by-sa/2.0/"/>
<dc:title/>
</cc:Work>
<cc:License rdf:about="http://creativecommons.org/licenses/by-sa/2.0/">
<cc:permits rdf:resource="http://web.resource.org/cc/Reproduction"/>
<cc:permits rdf:resource="http://web.resource.org/cc/Distribution"/>
<cc:requires rdf:resource="http://web.resource.org/cc/Notice"/>
<cc:requires rdf:resource="http://web.resource.org/cc/Attribution"/>
<cc:permits rdf:resource="http://web.resource.org/cc/DerivativeWorks"/>
<cc:requires rdf:resource="http://web.resource.org/cc/ShareAlike"/>
</cc:License>
</rdf:RDF>
</metadata>
<g inkscape:groupmode="layer" id="layer2" inkscape:label="Shadow" sodipodi:insensitive="true">
<path sodipodi:type="arc" style="opacity:0.17112301;color:#000000;fill:url(#radialGradient2842);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible" id="path4475" sodipodi:cx="24.130018" sodipodi:cy="37.967922" sodipodi:rx="16.528622" sodipodi:ry="3.9332814" d="m 40.65864,37.967922 a 16.528622,3.9332814 0 1 1 -33.0572434,0 16.528622,3.9332814 0 1 1 33.0572434,0 z" transform="matrix(1.446431,0,0,1.51999,-10.97453,-17.75168)"/>
<path transform="matrix(0.497764,0,0,0.609621,8.973526,15.61929)" d="m 40.65864,37.967922 a 16.528622,3.9332814 0 1 1 -33.0572434,0 16.528622,3.9332814 0 1 1 33.0572434,0 z" sodipodi:ry="3.9332814" sodipodi:rx="16.528622" sodipodi:cy="37.967922" sodipodi:cx="24.130018" id="path4485" style="color:#000000;fill:url(#radialGradient4493);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible" sodipodi:type="arc"/>
</g>
<g inkscape:groupmode="layer" id="layer3" inkscape:label="Magnifying glass" sodipodi:insensitive="true">
<g id="g1772" transform="translate(0.12372323,0.07535096)">
<path sodipodi:nodetypes="csscccscccscczzzz" id="path2844" d="m 18.627569,3.1435548 c -8.13913,0 -14.7448008,6.6056711 -14.7448008,14.7448012 0,8.13913 6.6056708,14.744802 14.7448008,14.744802 3.479555,0 6.551001,-1.384393 9.073723,-3.402647 -0.205377,1.006881 -0.07803,2.035368 0.756144,2.759925 l 10.964084,9.52741 c 1.233416,1.071329 3.087462,0.93096 4.15879,-0.302457 1.071328,-1.233418 0.930959,-3.087462 -0.302457,-4.15879 L 32.313769,27.529188 c -0.671527,-0.583279 -1.492878,-0.755969 -2.306238,-0.642722 1.9867,-2.512422 3.364839,-5.548803 3.364839,-8.99811 0,-8.1391301 -6.605671,-14.7448012 -14.744801,-14.7448012 z m -0.07562,1.2261833 c 7.639459,0 13.291775,4.7889505 13.291775,13.2917749 0,8.675113 -5.81669,13.291775 -13.291775,13.291775 -7.302949,0 -13.2917734,-5.478092 -13.2917734,-13.291775 0,-7.9841069 5.8246384,-13.291775 13.2917734,-13.2917749 z" style="color:#000000;fill:#dcdcdc;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient3882);stroke-width:2.00000095;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible" inkscape:connector-curvature="0"/>
<path style="color:#000000;fill:#dcdcdc;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.00000036;marker:none;visibility:visible;display:inline;overflow:visible" d="m 18.602905,3.0803551 c -8.16544,0 -14.7924642,6.627024 -14.7924642,14.7924639 0,8.16544 6.6270242,14.792464 14.7924642,14.792464 3.490803,0 6.572177,-1.388867 9.103055,-3.413645 -0.206041,1.010136 -0.07829,2.041947 0.758587,2.768846 l 10.999526,9.558207 c 1.237403,1.074792 3.097442,0.93397 4.172233,-0.303435 1.074791,-1.237404 0.933968,-3.097442 -0.303435,-4.172233 L 32.333346,27.544815 c -0.673698,-0.585164 -1.497704,-0.758413 -2.313693,-0.644799 1.993122,-2.520544 3.375716,-5.56674 3.375716,-9.027197 0,-8.1654399 -6.627024,-14.7924639 -14.792464,-14.7924639 z m -0.07586,3.1860692 c 6.281108,2e-7 11.378818,5.0977107 11.378818,11.3788187 0,6.281108 -5.09771,11.378818 -11.378818,11.378818 -6.281108,0 -11.3788184,-5.09771 -11.3788184,-11.378818 2e-7,-6.281108 5.0977104,-11.3788187 11.3788184,-11.3788187 z" id="path4430" inkscape:connector-curvature="0"/>
<path style="color:#000000;fill:url(#linearGradient3884);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible" d="m 39.507004,41.57769 c -0.478672,-2.273187 1.39733,-4.811422 3.584053,-4.788375 0,0 -10.760367,-9.258111 -10.760367,-9.258111 -2.944791,-0.05671 -4.269502,2.272616 -3.776814,4.599922 l 10.953128,9.446564 z" id="path4438" sodipodi:nodetypes="ccccc" inkscape:connector-curvature="0"/>
<path sodipodi:type="arc" style="color:#000000;fill:none;stroke:url(#linearGradient3886);stroke-width:0.8027336;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible" id="path4450" sodipodi:cx="17.500893" sodipodi:cy="18.920233" sodipodi:rx="11.048544" sodipodi:ry="11.048544" d="m 28.549437,18.920233 a 11.048544,11.048544 0 1 1 -22.0970883,0 11.048544,11.048544 0 1 1 22.0970883,0 z" transform="matrix(1.245743,0,0,1.245743,-3.425346,-6.177033)"/>
<rect style="opacity:0.43315507;color:#000000;fill:none;stroke:#ffffff;stroke-width:1.00003111;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible" id="rect4495" width="19.048439" height="4.4404783" x="40.373337" y="0.14086054" rx="2.1366608" ry="1.8879365" transform="matrix(0.752986,0.658037,-0.648902,0.760872,0,0)"/>
<path sodipodi:type="arc" style="color:#000000;fill:url(#radialGradient3888);fill-opacity:1;fill-rule:evenodd;stroke:#3063a3;stroke-width:0.71499395;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dashoffset:0;marker:none;visibility:visible" id="path4452" sodipodi:cx="17.589281" sodipodi:cy="18.478292" sodipodi:rx="8.3085051" sodipodi:ry="8.3085051" d="m 25.897786,18.478292 a 8.3085051,8.3085051 0 1 1 -16.61701,0 8.3085051,8.3085051 0 1 1 16.61701,0 z" transform="matrix(1.398614,0,0,1.398614,-6.224338,-8.298958)"/>
<path style="opacity:0.83422457;color:#000000;fill:url(#radialGradient3890);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible" d="m 18.156915,7.3966938 c -5.20759,0 -9.4245469,4.2169572 -9.4245469,9.4245472 0,1.503975 0.4203072,2.887773 1.0471719,4.149903 1.25238,0.461613 2.582757,0.775683 3.994767,0.775683 6.170955,0 11.099282,-4.861637 11.480106,-10.937129 C 23.523449,8.7641668 21.044374,7.3966938 18.156915,7.3966938 z" id="path4462" inkscape:connector-curvature="0"/>
</g>
</g>
<g inkscape:groupmode="layer" inkscape:label="Symbol" id="layer1" style="display:inline">
<g inkscape:label="Layer 1" id="g4336" transform="matrix(0.5028156,0,0,0.5028156,6.3171967,5.1658557)">
<path style="fill:#518ac4;fill-opacity:1;stroke:#3465a4;stroke-width:1.98880064px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="m 10.307563,20.552553 0,7.955203 9.944004,0 7.955203,0 9.944003,0 0,-7.955203 -9.944003,0 -7.955203,0 z" id="path3853" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccccccc"/>
<path style="opacity:0.41000001;fill:none;stroke:#eeeeec;stroke-width:1.98880064px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="m 12.296364,22.541354 0,3.977601 9.944004,0 3.977601,0 9.944003,0 0,-3.977601 -9.944003,0 -3.977601,0 z" id="path3855" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccccccc"/>
<path style="opacity:0.4;fill:#eeeeec;stroke:none" d="m 17,16 -0.5,0 -4.5,0 0,2.1875 c 1.648689,-0.854731 4.029588,-1.379968 6.461167,-0.702665 C 20.155915,17.956898 23.079975,17.91651 25,17.625 L 25,16 20.5,16 20,16 z" transform="matrix(1.9888007,0,0,1.9888007,-12.563645,-10.273857)" id="path3857" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccsccccc"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 32 KiB

View File

@ -0,0 +1,976 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="60.000004"
height="59.999847"
id="svg1306"
sodipodi:version="0.32"
inkscape:version="0.91 r13725"
sodipodi:docname="logo.svg"
inkscape:output_extension="org.inkscape.output.svg.inkscape"
version="1.1"
inkscape:export-filename="/home/ruess/Projekte/trunk/scannerExtract/ico/scannedImageExtractor128x128.png"
inkscape:export-xdpi="90.93"
inkscape:export-ydpi="90.93">
<defs
id="defs1308">
<linearGradient
inkscape:collect="always"
id="linearGradient5060">
<stop
style="stop-color:black;stop-opacity:1;"
offset="0"
id="stop5062" />
<stop
style="stop-color:black;stop-opacity:0;"
offset="1"
id="stop5064" />
</linearGradient>
<linearGradient
id="linearGradient5048">
<stop
style="stop-color:black;stop-opacity:0;"
offset="0"
id="stop5050" />
<stop
id="stop5056"
offset="0.5"
style="stop-color:black;stop-opacity:1;" />
<stop
style="stop-color:black;stop-opacity:0;"
offset="1"
id="stop5052" />
</linearGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient6431">
<stop
style="stop-color:#ffffff;stop-opacity:1;"
offset="0"
id="stop6433" />
<stop
style="stop-color:#ffffff;stop-opacity:0;"
offset="1"
id="stop6435" />
</linearGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient6390">
<stop
style="stop-color:#ffffff;stop-opacity:1"
offset="0"
id="stop6392" />
<stop
style="stop-color:#ffffff;stop-opacity:0;"
offset="1"
id="stop6394" />
</linearGradient>
<linearGradient
id="linearGradient6374">
<stop
style="stop-color:#555753;stop-opacity:1;"
offset="0"
id="stop6376" />
<stop
style="stop-color:#888a85;stop-opacity:1"
offset="1"
id="stop6378" />
</linearGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient6366">
<stop
style="stop-color:#ffffff;stop-opacity:1;"
offset="0"
id="stop6368" />
<stop
style="stop-color:#ffffff;stop-opacity:0;"
offset="1"
id="stop6370" />
</linearGradient>
<linearGradient
id="linearGradient6327">
<stop
style="stop-color:#888a85;stop-opacity:1"
offset="0"
id="stop6329" />
<stop
style="stop-color:#eeeeec;stop-opacity:1"
offset="1"
id="stop6331" />
</linearGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient4616">
<stop
style="stop-color:#2e3436;stop-opacity:1;"
offset="0"
id="stop4618" />
<stop
style="stop-color:#2e3436;stop-opacity:0;"
offset="1"
id="stop4620" />
</linearGradient>
<linearGradient
id="linearGradient4928">
<stop
id="stop4930"
offset="0"
style="stop-color:#fce94f;stop-opacity:1;" />
<stop
id="stop4932"
offset="1"
style="stop-color:#fce94f;stop-opacity:0;" />
</linearGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient2065">
<stop
style="stop-color:#555753"
offset="0"
id="stop2067" />
<stop
style="stop-color:#fcaf3e"
offset="1"
id="stop2069" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2065"
id="linearGradient2071"
x1="-11.986486"
y1="13.122552"
x2="-11.986486"
y2="29.726542"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.1141976,0,0,1.1666667,37.36883,-3.916667)" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient4928"
id="radialGradient4915"
cx="-6.0070167"
cy="32.837029"
fx="-6.0070167"
fy="32.837029"
r="9.90625"
gradientTransform="matrix(1,-1.487184e-8,1.425535e-8,0.958546,22.7158,2.575973)"
gradientUnits="userSpaceOnUse" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient4616"
id="linearGradient4622"
x1="25.355263"
y1="33.654644"
x2="25.355263"
y2="32.409008"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.117647,0,0,1.5,-2.8235294,-15.5)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6327"
id="linearGradient6333"
x1="42.999424"
y1="36.811924"
x2="40.621296"
y2="34.433796"
gradientUnits="userSpaceOnUse" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6327"
id="linearGradient6360"
x1="61.18124"
y1="137.97644"
x2="20.420683"
y2="2.6749926"
gradientUnits="userSpaceOnUse" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6366"
id="linearGradient6372"
x1="40.941582"
y1="37.639805"
x2="35.496311"
y2="32.194534"
gradientUnits="userSpaceOnUse" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient6374"
id="radialGradient6382"
cx="39.437065"
cy="34.33852"
fx="39.437065"
fy="34.33852"
r="6"
gradientTransform="matrix(0.1875,-1.053432,0.7180811,0.127811,7.8227088,71.030427)"
gradientUnits="userSpaceOnUse" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient6390"
id="radialGradient6396"
cx="20.236877"
cy="25.043303"
fx="20.236877"
fy="25.043303"
r="22"
gradientTransform="matrix(0.9409062,-0.2066504,0.109821,0.5000295,-1.5544064,13.219564)"
gradientUnits="userSpaceOnUse" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient6431"
id="radialGradient6437"
cx="40.179535"
cy="34.080399"
fx="40.179535"
fy="34.080399"
r="4.125"
gradientTransform="matrix(1,0,0,0.9356061,0,2.3071141)"
gradientUnits="userSpaceOnUse" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient5060"
id="radialGradient6909"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(-0.01606477,0,0,0.07411765,11.681601,-1.1750779)"
cx="605.71429"
cy="486.64789"
fx="605.71429"
fy="486.64789"
r="117.14286" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient5060"
id="radialGradient6912"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.1044211,0,0,0.07411765,-27.930451,-1.1750779)"
cx="605.71429"
cy="486.64789"
fx="605.71429"
fy="486.64789"
r="117.14286" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient5048"
id="linearGradient6915"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.0683432,0,0,0.07411765,-6.2011835,-1.1750779)"
x1="302.85715"
y1="366.64789"
x2="302.85715"
y2="609.50507" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient5236"
id="radialGradient5242"
cx="23.5"
cy="33.25"
fx="23.5"
fy="33.25"
r="19"
gradientTransform="matrix(1,0,0,0.802632,0,6.5625)"
gradientUnits="userSpaceOnUse" />
<linearGradient
inkscape:collect="always"
id="linearGradient5236">
<stop
style="stop-color:#000000;stop-opacity:1;"
offset="0"
id="stop5238" />
<stop
style="stop-color:#000000;stop-opacity:0;"
offset="1"
id="stop5240" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient5277"
id="linearGradient5283"
x1="43.870953"
y1="15.846735"
x2="47.283165"
y2="9.129221"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(-2,0)" />
<linearGradient
inkscape:collect="always"
id="linearGradient5277">
<stop
style="stop-color:#a6a6a6;stop-opacity:1;"
offset="0"
id="stop5279" />
<stop
style="stop-color:#a6a6a6;stop-opacity:0;"
offset="1"
id="stop5281" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient5214"
id="linearGradient5220"
x1="22.657747"
y1="14.85437"
x2="22.657747"
y2="41.054031"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(-2,0)" />
<linearGradient
id="linearGradient5214">
<stop
style="stop-color:#7f8578;stop-opacity:1;"
offset="0"
id="stop5216" />
<stop
id="stop5222"
offset="0.25"
style="stop-color:#c8c8c8;stop-opacity:1;" />
<stop
style="stop-color:#c8c8c8;stop-opacity:1;"
offset="0.65909094"
id="stop5224" />
<stop
style="stop-color:#666666;stop-opacity:1;"
offset="1"
id="stop5218" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient5293"
id="linearGradient5299"
x1="19.483202"
y1="5.532073"
x2="21.567848"
y2="12.289182"
gradientUnits="userSpaceOnUse" />
<linearGradient
id="linearGradient5293">
<stop
style="stop-color:#888a85;stop-opacity:1;"
offset="0"
id="stop5295" />
<stop
style="stop-color:#6a6b67;stop-opacity:1;"
offset="1"
id="stop5297" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient5166"
id="linearGradient5172"
x1="23.599689"
y1="17.461824"
x2="23.599689"
y2="33.902058"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(-2,0)" />
<linearGradient
id="linearGradient5166">
<stop
style="stop-color:#000000;stop-opacity:1;"
offset="0"
id="stop5168" />
<stop
style="stop-color:#434c4f;stop-opacity:1;"
offset="1"
id="stop5170" />
</linearGradient>
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient5176"
id="radialGradient5182"
cx="23.33452"
cy="27.39226"
fx="23.33452"
fy="27.39226"
r="11.136932"
gradientTransform="matrix(1.968254,1.16303e-7,-9.004103e-8,1.52381,-24.68213,-14.68863)"
gradientUnits="userSpaceOnUse" />
<linearGradient
inkscape:collect="always"
id="linearGradient5176">
<stop
style="stop-color:#ffffff;stop-opacity:1;"
offset="0"
id="stop5178" />
<stop
style="stop-color:#ffffff;stop-opacity:0;"
offset="1"
id="stop5180" />
</linearGradient>
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient5190"
id="radialGradient5273"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1,0,0,0.5,-2,9.681087)"
cx="22.804193"
cy="19.362175"
fx="22.804193"
fy="19.362175"
r="18.031223" />
<linearGradient
inkscape:collect="always"
id="linearGradient5190">
<stop
style="stop-color:#000000;stop-opacity:1;"
offset="0"
id="stop5192" />
<stop
style="stop-color:#000000;stop-opacity:0;"
offset="1"
id="stop5194" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient5255"
id="linearGradient5263"
gradientUnits="userSpaceOnUse"
x1="11.998403"
y1="36.5"
x2="17"
y2="36.5"
gradientTransform="translate(-2,0)" />
<linearGradient
id="linearGradient5255">
<stop
style="stop-color:#8e8e8e;stop-opacity:1;"
offset="0"
id="stop5257" />
<stop
style="stop-color:#d0d0d0;stop-opacity:1;"
offset="1"
id="stop5259" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient5255"
id="linearGradient5261"
x1="18"
y1="36.5"
x2="23"
y2="36.5"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(-2,0)" />
<linearGradient
id="linearGradient3393">
<stop
style="stop-color:#8e8e8e;stop-opacity:1;"
offset="0"
id="stop3395" />
<stop
style="stop-color:#d0d0d0;stop-opacity:1;"
offset="1"
id="stop3397" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient5255"
id="linearGradient5267"
gradientUnits="userSpaceOnUse"
x1="14.03125"
y1="36.864582"
x2="12"
y2="36.854168"
gradientTransform="matrix(0.6,0,0,0.6,3.8,14)" />
<linearGradient
id="linearGradient3400">
<stop
style="stop-color:#8e8e8e;stop-opacity:1;"
offset="0"
id="stop3402" />
<stop
style="stop-color:#d0d0d0;stop-opacity:1;"
offset="1"
id="stop3404" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient5255"
id="linearGradient5271"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.6,0,0,0.6,9.8,14)"
x1="14.03125"
y1="36.864582"
x2="12"
y2="36.854168" />
<linearGradient
id="linearGradient3407">
<stop
style="stop-color:#8e8e8e;stop-opacity:1;"
offset="0"
id="stop3409" />
<stop
style="stop-color:#d0d0d0;stop-opacity:1;"
offset="1"
id="stop3411" />
</linearGradient>
<linearGradient
y2="36.854168"
x2="12"
y1="36.864582"
x1="14.03125"
gradientTransform="matrix(0.6,0,0,0.6,9.8,14)"
gradientUnits="userSpaceOnUse"
id="linearGradient3434"
xlink:href="#linearGradient5255"
inkscape:collect="always" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient5048"
id="linearGradient3596"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.0683432,0,0,0.07411765,-6.2011835,-1.1750779)"
x1="302.85715"
y1="366.64789"
x2="302.85715"
y2="609.50507" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient5060"
id="radialGradient3598"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.1044211,0,0,0.07411765,-27.930451,-1.1750779)"
cx="605.71429"
cy="486.64789"
fx="605.71429"
fy="486.64789"
r="117.14286" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient5060"
id="radialGradient3600"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(-0.01606477,0,0,0.07411765,11.681601,-1.1750779)"
cx="605.71429"
cy="486.64789"
fx="605.71429"
fy="486.64789"
r="117.14286" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6327"
id="linearGradient3602"
gradientUnits="userSpaceOnUse"
x1="61.18124"
y1="137.97644"
x2="20.420683"
y2="2.6749926" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2065"
id="linearGradient3604"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.1141976,0,0,1.1666667,37.36883,-3.916667)"
x1="-11.986486"
y1="13.122552"
x2="-11.986486"
y2="29.726542" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient4928"
id="radialGradient3606"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1,-1.487184e-8,1.425535e-8,0.958546,22.7158,2.575973)"
cx="-6.0070167"
cy="32.837029"
fx="-6.0070167"
fy="32.837029"
r="9.90625" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient4616"
id="linearGradient3608"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.117647,0,0,1.5,-2.8235294,-15.5)"
x1="25.355263"
y1="33.654644"
x2="25.355263"
y2="32.409008" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6366"
id="linearGradient3610"
gradientUnits="userSpaceOnUse"
x1="40.941582"
y1="37.639805"
x2="35.496311"
y2="32.194534" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6327"
id="linearGradient3612"
gradientUnits="userSpaceOnUse"
x1="42.999424"
y1="36.811924"
x2="40.621296"
y2="34.433796" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient6374"
id="radialGradient3614"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.1875,-1.053432,0.7180811,0.127811,7.8227088,71.030427)"
cx="39.437065"
cy="34.33852"
fx="39.437065"
fy="34.33852"
r="6" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient6431"
id="radialGradient3616"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1,0,0,0.9356061,0,2.3071141)"
cx="40.179535"
cy="34.080399"
fx="40.179535"
fy="34.080399"
r="4.125" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient6390"
id="radialGradient3618"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.9409062,-0.2066504,0.109821,0.5000295,-1.5544064,13.219564)"
cx="20.236877"
cy="25.043303"
fx="20.236877"
fy="25.043303"
r="22" />
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="7.9999999"
inkscape:cx="9.7472027"
inkscape:cy="41.176212"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:grid-bbox="true"
inkscape:document-units="px"
fill="#fcaf3e"
stroke="#555753"
showguides="true"
inkscape:guide-bbox="false"
inkscape:window-width="1360"
inkscape:window-height="880"
inkscape:window-x="528"
inkscape:window-y="106"
inkscape:showpageshadow="false"
showborder="false"
inkscape:grid-points="false"
gridtolerance="50"
inkscape:object-paths="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-maximized="0"
units="px">
<inkscape:grid
id="GridFromPre046Settings"
type="xygrid"
originx="3.577825e-07"
originy="0.26100278"
spacingx="0.5px"
spacingy="0.5px"
color="#0000ff"
empcolor="#0000ff"
opacity="0.2"
empopacity="0.4"
empspacing="2"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true" />
</sodipodi:namedview>
<metadata
id="metadata1311">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
<dc:creator>
<cc:Agent>
<dc:title>Lapo Calamandrei</dc:title>
</cc:Agent>
</dc:creator>
<dc:source>http://www.gnome.org</dc:source>
<dc:contributor>
<cc:Agent>
<dc:title>Jakub Steiner, Andreas Nilsson</dc:title>
</cc:Agent>
</dc:contributor>
<cc:license
rdf:resource="http://creativecommons.org/licenses/GPL/2.0/" />
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/GPL/2.0/">
<cc:permits
rdf:resource="http://web.resource.org/cc/Reproduction" />
<cc:permits
rdf:resource="http://web.resource.org/cc/Distribution" />
<cc:requires
rdf:resource="http://web.resource.org/cc/Notice" />
<cc:permits
rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
<cc:requires
rdf:resource="http://web.resource.org/cc/ShareAlike" />
<cc:requires
rdf:resource="http://web.resource.org/cc/SourceCode" />
</cc:License>
</rdf:RDF>
</metadata>
<g
id="layer1"
inkscape:label="Layer 1"
inkscape:groupmode="layer"
transform="translate(11.388722,15.738847)">
<g
transform="translate(-10.888723,-18.762097)"
id="g3326">
<ellipse
transform="matrix(1.151316,0,0,0.565573,-5.680921,18.56968)"
id="path5234"
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.38333333;fill:url(#radialGradient5242);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none"
cx="23.5"
cy="33.25"
rx="19"
ry="15.25" />
<path
inkscape:connector-curvature="0"
sodipodi:nodetypes="czzc"
id="path5275"
d="m 25.046834,19.008622 c 0,0 8.529476,-5.08233 12.020816,-4.596194 3.49134,0.486136 2.993093,5.374038 6.187184,3.358757 3.271364,-2.064035 1.944544,-9.8994949 1.944544,-9.8994949"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:url(#linearGradient5283);stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none" />
<path
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccccccc"
id="path4287"
d="M 7.5459416,12.291107 2.1542523,33.769476 2.331029,39.514719 c 0,1.1875 0.8088204,2.18382 2.1213204,2.12132 l 34.0295136,0 c 1.18566,0.05178 2.209709,-0.618718 2.121321,-2.12132 L 40.691572,33.681088 34.681164,12.556273 7.5459416,12.291107 Z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient5220);fill-opacity:1;fill-rule:evenodd;stroke:#555753;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none" />
<ellipse
transform="translate(-1.646447,-0.441941)"
id="path5184"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#888a85;fill-opacity:1;fill-rule:evenodd;stroke:#555753;stroke-width:1.00000012;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
cx="14.18633"
cy="13.882098"
rx="1.281631"
ry="1.3258252" />
<ellipse
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#888a85;fill-opacity:1;fill-rule:evenodd;stroke:#555753;stroke-width:1.00000012;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
id="path5186"
transform="translate(16.35355,-0.441941)"
cx="14.18633"
cy="13.882098"
rx="1.281631"
ry="1.3258252" />
<path
inkscape:connector-curvature="0"
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.38333333;fill:none;stroke:#ffffff;stroke-width:0.99999982;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
d="m 8.379527,13.172561 -5.1928106,20.563164 0.1661577,5.150126 c 0,1.116167 0.1352345,1.740138 1.3688927,1.681392 l 33.4228602,0 c 1.114438,0.04867 1.514472,-0.206551 1.431394,-1.618892 L 39.659099,33.715146 33.884736,13.421799 8.379527,13.172561 Z"
id="path5228"
sodipodi:nodetypes="ccccccccc" />
<path
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccccc"
id="path4289"
d="M 9.402097,13.437047 3.1265241,5.062044 C 2.6845824,4.5317139 3.3033006,3.4416435 4.4523491,3.5300318 l 34.2062909,0 c 0.795495,-0.088388 2.032932,1.0291737 1.237437,1.7362805 L 33.266951,13.539182 9.402097,13.437047 Z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient5299);fill-opacity:1;fill-rule:evenodd;stroke:#555753;stroke-width:1.00000012;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none" />
<path
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccccc"
id="path4291"
d="M 10.993087,16.533748 9.313709,28.73134 c -0.088388,0.419845 -0.044194,0.972272 0.53033,0.972272 l 23.422912,0 c 0.464039,0 0.729203,-0.331456 0.618718,-0.972272 l -2.209708,-12.197592 -20.682874,0 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient5172);fill-opacity:1;fill-rule:evenodd;stroke:#363636;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none" />
<path
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccc"
id="path5174"
d="m 11.747529,17.464967 -0.700825,5.461995 c 6.540738,0.265165 11.700194,-2.505204 20.273864,-2.858757 l -0.524049,-2.655015 -19.04899,0.05178 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.86666667;fill:url(#radialGradient5182);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none" />
<path
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccsccccc"
id="path5188"
d="m 9.625,12.3125 c -0.850553,0.337151 -1.128542,0.686534 -1.8446699,1.09375 l -2.5,10.0625 C 8.26835,26.384304 13.814131,28.375 20.8125,28.375 c 7.601006,0 13.568443,-2.357715 16.21967,-5.6875 l -2.5,-8.84375 C 33.807902,13.377305 33.515399,12.918304 32.625,12.53125 l -0.03125,0 L 9.625,12.3125 Z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.40555558;fill:url(#radialGradient5273);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.00000012;marker:none" />
<path
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccccc"
id="path5204"
d="m 10.020815,29.173282 22.804194,0 c 0.353553,-0.0221 0.640815,-0.265165 0.618718,-0.53033 l -2.032932,-11.402097 1.237437,11.048543 -22.627417,0.883884 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.40555558;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.00000012;marker:none" />
<path
inkscape:connector-curvature="0"
id="path5226"
d="m 4.25,4.5624999 34.5625,0"
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.40555558;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none" />
<path
inkscape:connector-curvature="0"
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.40555558;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
d="m 8.46363,34.5625 29.795388,0"
id="path5230" />
<circle
transform="translate(-0.5,-0.375)"
id="path5232"
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.38333333;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none"
cx="6.5"
cy="34.375"
r="1" />
<path
inkscape:connector-curvature="0"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:#fce94f;stroke-width:2.93673611;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.39884392;marker:none"
d="m 11.613399,24.562172 19.638587,0"
id="path5246" />
<path
inkscape:connector-curvature="0"
id="path5244"
d="m 11.613399,24.5625 19.638587,0"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.99999982;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none" />
<path
inkscape:connector-curvature="0"
id="rect5248"
d="m 10.002853,35 0,1.538783 c 0,0.06309 -0.00642,0.141533 0,0.202471 0.01072,0.08463 0.04527,0.204346 0.06749,0.28346 0.01359,0.0447 0.05047,0.119472 0.06749,0.161977 0.04461,0.104798 0.105177,0.235866 0.168726,0.323954 0.02611,0.03449 0.0725,0.09015 0.101236,0.121483 0.07341,0.07626 0.18263,0.148938 0.269962,0.202472 0.03542,0.02042 0.09773,0.06468 0.134981,0.08099 0.06593,0.02667 0.16569,0.06813 0.236216,0.08099 0.05078,0.0077 0.116147,0 0.168726,0 l 2.564638,0 c 0.05258,0 0.117944,0.0077 0.168726,0 0.07053,-0.01286 0.170289,-0.05432 0.236217,-0.08099 0.03725,-0.01631 0.09956,-0.06057 0.134981,-0.08099 0.08733,-0.05353 0.196555,-0.126213 0.269961,-0.202472 0.02874,-0.03133 0.07513,-0.087 0.101236,-0.121483 0.06355,-0.08809 0.124115,-0.219156 0.168726,-0.323954 0.01702,-0.04251 0.0539,-0.117279 0.06749,-0.161977 0.02222,-0.07911 0.05677,-0.198829 0.06749,-0.28346 0.0064,-0.06094 0,-0.139377 0,-0.202471 l 0,-1.538783 -4.994294,0 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient5263);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none" />
<path
inkscape:connector-curvature="0"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient5261);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none"
d="m 16.002853,35 0,1.538783 c 0,0.06309 -0.0064,0.141533 0,0.202471 0.01072,0.08463 0.04527,0.204346 0.06749,0.28346 0.01359,0.0447 0.05047,0.119472 0.06749,0.161977 0.04461,0.104798 0.105177,0.235866 0.168726,0.323954 0.02611,0.03449 0.0725,0.09015 0.101236,0.121483 0.07341,0.07626 0.18263,0.148938 0.269962,0.202472 0.03542,0.02042 0.09773,0.06468 0.134981,0.08099 0.06593,0.02667 0.16569,0.06813 0.236216,0.08099 0.05078,0.0077 0.116147,0 0.168726,0 l 2.564638,0 c 0.05258,0 0.117944,0.0077 0.168726,0 0.07053,-0.01286 0.170289,-0.05432 0.236217,-0.08099 0.03725,-0.01631 0.09956,-0.06057 0.134981,-0.08099 0.08733,-0.05353 0.196555,-0.126213 0.269961,-0.202472 0.02874,-0.03133 0.07513,-0.087 0.101236,-0.121483 0.06355,-0.08809 0.124115,-0.219156 0.168726,-0.323954 0.01702,-0.04251 0.0539,-0.117279 0.06749,-0.161977 0.02222,-0.07911 0.05677,-0.198829 0.06749,-0.28346 0.0064,-0.06094 0,-0.139377 0,-0.202471 l 0,-1.538783 -4.994294,0 z"
id="path5253" />
<path
inkscape:connector-curvature="0"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient5267);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none"
d="m 11.001712,35 0,0.92327 c 0,0.03786 -0.0039,0.08492 0,0.121482 0.0064,0.05078 0.02716,0.122608 0.04049,0.170076 0.0082,0.02682 0.03028,0.07168 0.04049,0.09719 0.02677,0.06288 0.06311,0.141519 0.101236,0.194372 0.01566,0.02069 0.0435,0.05409 0.06074,0.07289 0.04404,0.04575 0.109578,0.08936 0.161977,0.121483 0.02125,0.01225 0.05864,0.03881 0.08099,0.04859 0.03956,0.016 0.09941,0.04088 0.14173,0.04859 0.03047,0.0046 0.06969,0 0.101236,0 l 1.538782,0 c 0.03155,0 0.07077,0.0046 0.101236,0 0.04232,-0.0077 0.102173,-0.03259 0.14173,-0.04859 0.02235,-0.0098 0.05974,-0.03634 0.08099,-0.04859 0.0524,-0.03212 0.117933,-0.07573 0.161976,-0.121483 0.01724,-0.0188 0.04508,-0.0522 0.06074,-0.07289 0.03813,-0.05285 0.07447,-0.131494 0.101236,-0.194372 0.01021,-0.0255 0.03234,-0.07037 0.04049,-0.09719 0.01333,-0.04747 0.03407,-0.119297 0.04049,-0.170076 0.0039,-0.03656 0,-0.08363 0,-0.121482 l 0,-0.92327 -2.996576,0 z"
id="path5265" />
<path
inkscape:connector-curvature="0"
id="path5269"
d="m 17.001712,35 0,0.92327 c 0,0.03786 -0.0039,0.08492 0,0.121482 0.0064,0.05078 0.02716,0.122608 0.04049,0.170076 0.0082,0.02682 0.03028,0.07168 0.04049,0.09719 0.02677,0.06288 0.06311,0.141519 0.101236,0.194372 0.01566,0.02069 0.0435,0.05409 0.06074,0.07289 0.04404,0.04575 0.109578,0.08936 0.161977,0.121483 0.02125,0.01225 0.05864,0.03881 0.08099,0.04859 0.03956,0.016 0.09941,0.04088 0.14173,0.04859 0.03047,0.0046 0.06969,0 0.101236,0 l 1.538782,0 c 0.03155,0 0.07077,0.0046 0.101236,0 0.04232,-0.0077 0.102173,-0.03259 0.14173,-0.04859 0.02235,-0.0098 0.05974,-0.03634 0.08099,-0.04859 0.0524,-0.03212 0.117933,-0.07573 0.161976,-0.121483 0.01724,-0.0188 0.04508,-0.0522 0.06074,-0.07289 0.03813,-0.05285 0.07447,-0.131494 0.101236,-0.194372 0.01021,-0.0255 0.03234,-0.07037 0.04049,-0.09719 0.01333,-0.04747 0.03407,-0.119297 0.04049,-0.170076 0.0039,-0.03656 0,-0.08363 0,-0.121482 l 0,-0.92327 -2.996576,0 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient3434);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none" />
</g>
<g
id="g3577"
transform="translate(0.61128,0.261)">
<g
id="g6917">
<rect
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.39195981;fill:url(#linearGradient3596);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none"
id="rect6057"
width="33"
height="18"
x="2"
y="26" />
<path
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.40206185;fill:url(#radialGradient3598);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none"
d="m 35,26.00062 c 0,0 0,17.999007 0,17.999007 2.30962,0.01455 5.033409,-0.727312 7.389531,-1.972134 C 45.519106,40.37403 48.000002,37.833194 48,34.998965 48,30.030967 41.999197,26.000621 35,26.00062 Z"
id="path6059"
sodipodi:nodetypes="ccscc"
inkscape:connector-curvature="0" />
<path
sodipodi:nodetypes="cccc"
id="path6061"
d="m 2,26.00062 c 0,0 0,17.999007 0,17.999007 C 1.172704,44.03351 1.3577825e-6,39.966963 1.3577825e-6,34.998965 1.3577825e-6,30.030967 0.92320113,26.000621 2,26.00062 Z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.40206185;fill:url(#radialGradient3600);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none"
inkscape:connector-curvature="0" />
</g>
<path
sodipodi:nodetypes="ccccccccc"
id="rect5350"
d="m 2.767767,6.5 42.46447,0 c 0.702343,0 1.267767,0.5654241 1.267767,1.267767 L 46.5,30.5 c 0,0.702343 -10.297657,10 -11,10 l -32.732233,0 C 2.0654241,40.5 1.5,39.934576 1.5,39.232233 L 1.5,7.767767 C 1.5,7.0654241 2.0654241,6.5 2.767767,6.5 Z"
style="fill:url(#linearGradient3602);fill-opacity:1;stroke:#888a85;stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
inkscape:connector-curvature="0" />
<path
sodipodi:nodetypes="ccccccccc"
id="rect2063"
d="m 4.9874617,9.5 38.0521033,0 c 0.270054,0 0.487462,0.2276458 0.487462,0.510417 l 0,23.979166 L 40.039565,37.5 4.9874617,37.5 C 4.7174079,37.5 4.5,37.272354 4.5,36.989583 l 0,-26.979166 C 4.5,9.7276458 4.7174079,9.5 4.9874617,9.5 Z"
style="fill:url(#linearGradient3604);fill-opacity:1;stroke:#888a85;stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
inkscape:connector-curvature="0" />
<path
inkscape:r_cy="true"
inkscape:r_cx="true"
id="path4898"
d="m 16.083789,23.551777 c -5.168779,0.327955 -9.2812506,4.655188 -9.2812506,9.90625 0,0.202785 0.01921,0.393975 0.03125,0.59375 l 19.7500006,0 c 0.01204,-0.199775 0.03125,-0.390965 0.03125,-0.59375 0,-5.464521 -4.441729,-9.90625 -9.90625,-9.90625 -0.213458,0 -0.414887,-0.01333 -0.625,0 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#radialGradient3606);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none"
inkscape:connector-curvature="0" />
<rect
ry="0"
rx="0"
y="34"
x="5"
height="3"
width="38"
id="rect1324"
style="fill:url(#linearGradient3608);fill-opacity:1;stroke:none" />
<path
sodipodi:nodetypes="ccsssssssccc"
id="path6364"
d="m 14.78125,40 20.625,0 c 0.0102,-0.0045 0.01696,-0.004 0.0625,-0.03125 0.09108,-0.05454 0.239108,-0.158764 0.40625,-0.28125 0.334283,-0.244972 0.784837,-0.593604 1.3125,-1.03125 1.055327,-0.875293 2.42316,-2.047759 3.75,-3.25 1.32684,-1.202241 2.626277,-2.44468 3.59375,-3.40625 0.483737,-0.480785 0.886656,-0.881222 1.15625,-1.1875 0.134797,-0.153139 0.223302,-0.293223 0.28125,-0.375 C 45.98324,30.41706 45.99168,30.41954 46,30.40625 L 46,13.78125 14.78125,40 Z"
style="opacity:0.81896548;fill:url(#linearGradient3610);fill-opacity:1;stroke:none"
inkscape:connector-curvature="0" />
<path
sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccc"
id="path2079"
d="m 29.555584,34.972272 c 0,0 -0.555584,-3.239746 -0.555584,-5.224471 0.01541,-0.905405 7.786707,-7.958802 7.806757,-9.009433 L 35,22.392753 33.734835,18.776232 38,19.24059 40,17.139148 37.734835,18.886405 36.955806,18.700662 36,15.037705 36.486136,18.607791 32.955806,18.422048 34.06066,21.376634 31,18.189869 34.237437,22.62545 c 8.5e-5,0.989283 -6.380874,7.028486 -6.37002,5.987149 L 25.220971,24.882982 25,19.841002 27,19.24059 28.752155,14.700822 26.442435,18.896683 24.639267,18.810834 20.602879,15.228917 15.06066,13 19.795495,15.734242 16,16.088427 l 5,0 3,3.152163 0.353553,5.444817 L 19,19.24059 21.251301,22.085004 18,24.494195 21.571429,22.392753 27.220971,29.869807 27,34.972272 l 2.555584,0 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
inkscape:connector-curvature="0" />
<path
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#fef39e;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none"
d="m 16.367734,28.233668 c -2.820539,0.178961 -5.064664,2.540279 -5.064664,5.405719 0,0.110657 0.01048,0.214987 0.01705,0.324002 l 10.777333,0 c 0.0066,-0.109015 0.01705,-0.213345 0.01705,-0.324002 0,-2.981922 -2.423797,-5.405719 -5.405719,-5.405719 -0.116482,0 -0.226399,-0.0073 -0.341055,0 z"
id="path4924"
inkscape:r_cx="true"
inkscape:r_cy="true"
inkscape:connector-curvature="0" />
<path
inkscape:r_cy="true"
inkscape:r_cx="true"
id="path4926"
d="m 16.448682,29.531973 c -2.151088,0.136486 -3.862573,1.937349 -3.862573,4.122681 0,0.08439 0.008,0.16396 0.013,0.2471 l 8.219349,0 c 0.005,-0.08314 0.01301,-0.162708 0.01301,-0.2471 0,-2.274167 -1.848512,-4.122681 -4.12268,-4.122681 -0.08883,0 -0.172663,-0.0055 -0.260107,0 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#fffbd7;fill-opacity:0.55681817;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none"
inkscape:connector-curvature="0" />
<path
sodipodi:nodetypes="ccccccccc"
id="path6351"
d="M 2.78125,7.5 C 2.6253137,7.5 2.5,7.6253137 2.5,7.78125 l 0,31.4375 C 2.5,39.374686 2.6253136,39.5 2.78125,39.5 l 34.5,0 C 40.921301,36.704635 42.365769,35.606734 45.5,32.25 l 0,-24.46875 C 45.5,7.6253155 45.374683,7.5 45.21875,7.5 l -42.4375,0 z"
style="fill:none;stroke:#ffffff;stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
inkscape:connector-curvature="0" />
<path
sodipodi:nodetypes="cccc"
id="path6322"
d="m 46.5,30.5 c 0,5 -6,10 -11,10 0,0 4.432134,-2.16262 4,-7 4.379686,0.416135 7,-3 7,-3 z"
style="fill:url(#linearGradient3612);fill-opacity:1;fill-rule:evenodd;stroke:url(#radialGradient3614);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1"
inkscape:connector-curvature="0" />
<path
id="path6339"
d="m 45.71875,31.96875 c -1.141161,0.963781 -3.038894,2.12059 -5.6875,2.0625 0.02848,2.743194 -1.332152,4.55626 -2.5625,5.65625 1.484391,-0.981249 3.356416,-2.315695 3.5625,-4.65625 2.161131,-0.0033 3.587964,-1.720595 4.65625,-3 0.0055,-0.02167 0.02592,-0.04082 0.03125,-0.0625 z"
style="opacity:0.73275865;fill:url(#radialGradient3616);fill-opacity:1;fill-rule:evenodd;stroke:none"
inkscape:connector-curvature="0" />
<path
sodipodi:nodetypes="ccccccc"
id="path6384"
d="M 2.78125,7 C 2.3536576,7 2,7.3536576 2,7.78125 l 0,23.3125 C 14.714701,22.184679 34.055102,15.625228 46,19.3125 L 46,7.78125 C 46,7.3536585 45.64634,7 45.21875,7 L 2.78125,7 Z"
style="opacity:0.34482757;fill:url(#radialGradient3618);fill-opacity:1;stroke:none"
inkscape:connector-curvature="0" />
<path
d="M 2.78125,7.5 C 2.628408,7.5 2.5,7.628408 2.5,7.78125 l 0,31.4375 C 2.5,39.371592 2.6284079,39.5 2.78125,39.5 L 35.5,39.5 c 2.166667,0 4.743499,-1.137302 6.712891,-2.875 C 44.182282,34.887302 45.5,32.6 45.5,30.5 l 0,-22.71875 C 45.5,7.6284098 45.371589,7.5 45.21875,7.5 l -42.4375,0 z"
id="path6427"
style="opacity:0.41810345;fill:none;stroke:#ffffff;stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
inkscape:original="M 2.78125 6.5 C 2.0789071 6.5 1.5 7.0789071 1.5 7.78125 L 1.5 39.21875 C 1.5 39.921093 2.0789071 40.5 2.78125 40.5 L 35.5 40.5 C 40.5 40.5 46.5 35.5 46.5 30.5 L 46.5 7.78125 C 46.5 7.0789071 45.921091 6.5 45.21875 6.5 L 2.78125 6.5 z "
inkscape:radius="-1"
sodipodi:type="inkscape:offset" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 43 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 312 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 808 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 342 B

File diff suppressed because it is too large Load Diff

241
scannerExtract/imagescene.h Normal file
View File

@ -0,0 +1,241 @@
/***********************************************************************
* This file is part of Scanned Image Extract.
*
* Scanned Image Extract 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.
*
* Scanned Image Extract 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 Scanned Image Extract. If not, see <http://www.gnu.org/licenses/>
*
*
* Copyright (C) 2015, Dominik Rueß; info@dominik-ruess.de
**********************************************************************/
#ifndef IMAGESCENE_H
#define IMAGESCENE_H
#include <QtWidgets/QGraphicsScene>
#include <QtWidgets/QGraphicsView>
#include <QVector>
#include <QPixmap>
#include <QTransform>
#include <QFileInfoList>
#include <QImage>
#include <QtWidgets/QGraphicsPixmapItem>
#include <QProgressBar>
#include "imageboundary.h"
#include "sourcefile.h"
#include "preloadsource.h"
#include "copytargets.h"
#include "extracttargets.h"
#define DISTANCE_GRAB_CORNER 10
#define DISTANCE_GRAB_EDGE 15
#define NEW_BOX_LINE_COLOR QColor(255,0,0,255)
enum MouseState
{
MouseStateNotLoaded,
MouseStateNone,
MouseStateSelectItem,
MouseStateReleaseItem,
MouseStateNewItem,
MouseStateNewItemRelease,
MouseStateMoveItem,
MouseStateRotateItem,
MouseStateMoveCorner,
MouseStateMoveEdge,
MouseStateMoveEdgePre,
};
class ImageScene : public QGraphicsScene
{
Q_OBJECT
public:
explicit ImageScene(QObject *parent = 0);
~ImageScene();
TargetImagePtr addBoundary(ImageBoundaryPtr);
void init();
signals:
void updateTargetDisplay(const QPixmap& pixmap);
void rotation90(const Rotation90 rotation);
void resetAspect();
void fileName(const QString&);
void landscapeButton(bool landscape);
void changed(bool hasChanges);
void selectedAspect(float aspect);
void newCrop(const double cropPerc);
void noAspect(); // no unique aspect
void noCrop();
void noRotation();
void reloadSettings();
void renewList(QFileInfoList,int);
void extractTarget(int, int);
void setTargetWaiting(bool);
void filePosition(QString);
void targetPosition(QString);
void numSelected(int);
void doneCopying(const QString&, const QString&);
public slots:
void newImageList(const QFileInfoList& images = QFileInfoList(),
const int selectedIndex = 0);
void loadPosition(const int newPosition = -1,
const bool increment= false,
const bool forceReload = false);
void newRotation(const Rotation90);
void newIndividualCrop(const double percentage);
void deleteSelection();
void nextTarget(const int increment);
void newAspectRatio(const double ratio);
void zoom(double factor);
void zoomFit();
void zoom1();
void saveCurrent(const bool noUpdate = false,
const bool force = false);
void updateMinMax(const int, const int);
void getIsFirstLast(bool &isFirst, bool &isLast);
void setEnforceAspect(const bool enforce);
void setDestination(QString destination);
void setPrefix(const QString prefix) { _copyTargetThread.setPrefix(prefix); }
void setThresh(const double thresh) { if (hasLoader()) _backgroundLoader->setThresh(thresh); }
void setMaxAspect(const double maxAspect) { if (hasLoader())_backgroundLoader->setMaxAspect(maxAspect); }
void setLevels(const int levels) { if (hasLoader()) _backgroundLoader->setLevels(levels); }
void setMaxOverlap(const double maxOverlap) { if (hasLoader()) _backgroundLoader->setMaxOverlap(maxOverlap); }
void setMinArea(const double minArea) { if (hasLoader()) _backgroundLoader->setMinArea(minArea); }
void setMinAreaWithinImage(const double minArea) { if (hasLoader()) _backgroundLoader->setMinAreaWithinImage(minArea); }
void setSplitMaxOffset(const double maxOffset) { if (hasLoader()) _backgroundLoader->setSplitMaxOffset(maxOffset); }
void setSplitMinCornerDist(const double minCornerDist) { if (hasLoader()) _backgroundLoader->setSplitMinCornerDist(minCornerDist); }
void setSplitMinLengthFrac(const double minLengthFrac) { if (hasLoader()) _backgroundLoader->setSplitMinLengthFrac(minLengthFrac); }
void setMaximumHierarchyLevel(const int level) { if (hasLoader()) _backgroundLoader->setMaxHierarchyLevel(level); }
void setNumPreLoad(const int num) { _numNeighbours = num; }
void reloadFromNewSettings();
void doneLoadingTarget(const TargetImagePtr& target);
void refreshView();
void selectAll();
void initialCropChanged(const double val);
protected:
void mousePressEvent(QGraphicsSceneMouseEvent *mouseEvent);
void mouseMoveEvent(QGraphicsSceneMouseEvent *mouseEvent);
void mouseReleaseEvent(QGraphicsSceneMouseEvent *mouseEvent);
void keyPressEvent ( QKeyEvent * keyEvent );
void wheelEvent(QGraphicsSceneWheelEvent *event);
private slots:
void doneCopy(const QString&, const QString&);
void onSelectionChanged();
void _doneLoading(const SourceFilePtr &, const int position);
void _onCopyError(SourceFilePtr, TargetImagePtr);
void updateSelection();
void clear();
void _extractTarget(const int fromImageId,
const TargetImagePtr target,
const bool highPriority = false);
private:
QList<TargetImagePtr> _findSelectedTarget();
inline double _norm(const QPointF&);
inline double _dot(const QPointF&, const QPointF&);
inline double _norm2(const QPointF& );
inline double _lineDist(const QPointF& l1,
const QPointF& l2,
const QPointF& p);
void _updateTarget(const bool changed = false, bool dirty = false);
bool _correctAspectRatio(TargetImagePtr target);
MouseState _currentState;
MouseState _currentMouseState;
QGraphicsView* _view;
int _currentCorner;
int _currentEdge;
TargetImagePtr _currentTarget;
QPixmap _sizeChange;
QPixmap _rotate;
double _lastAngle;
QPointF _rotationCenter;
QTransform _lastTransformation;
QPointF _lastCornerPos[4];
QVector<SourceFilePtr> _currentFiles;
int _currentIndex;
QGraphicsLineItem* _currLine;
double _cropPercentage;
Rotation90 _currGlobalRotation;
double _aspectRatio;
double _currAspectRatio;
PreloadSource* _backgroundLoader;
bool hasLoader() const { return _backgroundLoader != 0; }
bool _isWaiting;
CopyTargets _copyTargetThread;
QTimer _timer;
bool _enforceAspectForNew;
QProgressBar* _waitBar;
QMutex _extractMutex;
ExtractTargets _targetExtractor;
int _numNeighbours;
};
#endif // IMAGESCENE_H

88
scannerExtract/main.cpp Normal file
View File

@ -0,0 +1,88 @@
/***********************************************************************
* This file is part of Scanned Image Extract.
*
* Scanned Image Extract 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.
*
* Scanned Image Extract 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 Scanned Image Extract. If not, see <http://www.gnu.org/licenses/>
*
*
* Copyright (C) 2015, Dominik Rueß; info@dominik-ruess.de
**********************************************************************/
#include <QtGui>
#include <iostream>
#include "mainwindow.h"
#include "TargetImage.h"
#include "sourcefile.h"
#include "translation.h"
#include <QApplication>
int main(int argc, char *argv[])
{
qRegisterMetaType<Rotation90>("Rotation90");
qRegisterMetaType<SourceFile>("SourceFile");
QApplication app(argc, argv);
QStringList args = app.arguments();
// ### load locale
QString locale = QLocale::system().name();
for (int i=args.length()-1; i>0; i--) {
if (args[i]== "-l" || args[i] == "--locale") {
if (argc <= i+1) {
qWarning() << QString("please provide a locale, e.g.: %1 -l en").arg(args[0]);
} else {
locale = args[i+1];
qDebug() << "trying to load locale " << locale << "...";
args.removeAt(i+1);
}
args.removeAt(i);
}
}
// set locale and load translations
MiscTools::Translation::setDefaultLocale(locale);
QStringList langPaths = QStringList() << QString(":/");
app.installTranslator(MiscTools::Translation::getTranslator(locale, langPaths, "qt_"));
app.installTranslator(MiscTools::Translation::getTranslator(locale, langPaths, "qtbase_"));
app.installTranslator(MiscTools::Translation::getTranslator(locale, langPaths, "qt_help_"));
app.installTranslator(MiscTools::Translation::getTranslator(locale, langPaths, "trans_scannedImageExtractor_"));
// ### setup warranty display
QFile file(QApplication::tr(":/WARRANTY_EN", "start"));
std::cout << "This is Scanned Image Extractor - version "
<< version_scannerExtract.getVersionMajor() << "."
<< version_scannerExtract.getVersionMinor() << "."
<< version_scannerExtract.getVersionPatch()
<< std::endl;
if (file.open(QIODevice::ReadOnly | QIODevice::Text))
{
QTextStream in(&file);
while (!in.atEnd()) {
std::cout << in.readLine().toStdString() << std::endl;
}
std::cout << std::endl;
} else {
std::cout << "not found" << std::endl;
}
file.close();
MainWindow mainWindow;
mainWindow.show();
return app.exec();
}

View File

@ -0,0 +1,906 @@
/***********************************************************************
* This file is part of Scanned Image Extract.
*
* Scanned Image Extract 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.
*
* Scanned Image Extract 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 Scanned Image Extract. If not, see <http://www.gnu.org/licenses/>
*
*
* Copyright (C) 2015, Dominik Rueß; info@dominik-ruess.de
**********************************************************************/
#include "mainwindow.h"
#include "ui_mainwindow.h"
#include <QDate>
#include <QDateTime>
#include <QWhatsThis>
#include <QPolygonF>
#include <QtWidgets/QFileDialog>
#include <QSettings>
#include <QImage>
#include <QImageReader>
#include <QFileInfo>
#include <QFileInfoList>
#include <QDebug>
#include <QTimer>
#include <QMessageBox>
#include <QProgressDialog>
#include <QTextBrowser>
#include <QCheckBox>
#include <QPushButton>
#include <QShortcut>
#include "pQPixmap.h"
#include "imageboundary.h"
#include "TargetImage.h"
#include "settings.h"
MainWindow::MainWindow(QWidget *parent):
QMainWindow(parent),
ui(new Ui::MainWindow),
_dialogLock(false),
_title(tr("Scanned Image Extractor")),
_targetWait(0),
_tearDown(false)
{
ui->setupUi(this);
qRegisterMetaType<QFileInfoList>("QFileInfoList");
qRegisterMetaType<SourceFilePtr>("SourceFilePtr");
qRegisterMetaType<TargetImagePtr>("TargetImagePtr");
ui->graphicsView_Source->setScene(&_scene);
_scene.init();
connect(&_scene, SIGNAL(doneCopying(QString,QString)), SLOT(doneCopy(QString,QString)));
setWindowTitle(_title);
connect(ui->actionLoad_Directory, SIGNAL(triggered()),
this, SLOT(_onLoadFile()));
connect(&_scene, SIGNAL(changed(bool)), this, SLOT(currImageHasChanges(bool)), Qt::QueuedConnection);
connect(&_scene, SIGNAL(selectedAspect(float)), this, SLOT(toggleAspect(float)), Qt::QueuedConnection);
connect(&_scene, SIGNAL(numSelected(int)), this, SLOT(numSelectionChanged(int)), Qt::QueuedConnection);
connect(this, SIGNAL(newList(QFileInfoList,int)),
&_scene, SLOT(newImageList(QFileInfoList,int)), Qt::QueuedConnection);
statusBar()->showMessage(tr("Hover the mouse pointer over an element to get help"));
QSettings settings(tr(IMAGE_ORGANIZATION_ORG), tr(IMAGE_ORGANIZATION_APP));
restoreGeometry(settings.value("mainwin_geom").toByteArray());
ui->splitter->restoreState(settings.value("mainwin_splitter").toByteArray());
ui->doubleSpinBox_cropInitial->setValue(settings.value("cropdistance", 2.0).toDouble());
ui->doubleSpinBox_crop->setValue(settings.value("cropdistance", 3.0).toDouble());
ui->lineEdit_aspectRatio->setText(settings.value("manualaspect", "4:3").toString());
ui->graphicsView_Target->setScene(&_sceneTarget);
connect(ui->checkBox_enforceAspect, SIGNAL(toggled(bool)), &_scene, SLOT(setEnforceAspect(bool)), Qt::QueuedConnection);
ui->checkBox_enforceAspect->setChecked(settings.value("enforceAspectNextIm", true).toBool());
connect(&_scene, SIGNAL(updateTargetDisplay(QPixmap)),
this, SLOT(_onNewTargetImage(QPixmap)), Qt::QueuedConnection);
connect(&_scene, SIGNAL(rotation90(Rotation90)),
this, SLOT(_onRotation90(Rotation90)), Qt::QueuedConnection);
connect(this, SIGNAL(newOrientation(Rotation90)),
&_scene, SLOT(newRotation(Rotation90)), Qt::QueuedConnection);
connect(&_scene, SIGNAL(resetAspect()), this, SLOT(_resetAspect()), Qt::QueuedConnection);
connect(&_scene, SIGNAL(filePosition(QString)), ui->label_imagePosition, SLOT(setText(QString)), Qt::QueuedConnection);
connect(&_scene, SIGNAL(targetPosition(QString)), ui->label_targetPosition, SLOT(setText(QString)), Qt::QueuedConnection);
connect(ui->doubleSpinBox_crop, SIGNAL(valueChanged(double)),
&_scene, SLOT(newIndividualCrop(double)), Qt::QueuedConnection);
connect(ui->splitter, SIGNAL(splitterMoved(int,int)),
this, SLOT(_updateTargetView(int,int)), Qt::QueuedConnection);
connect(ui->radioButton_1_1, SIGNAL(toggled(bool)), this, SLOT(_getAspectRatio()));
connect(ui->radioButton_2_1, SIGNAL(toggled(bool)), this, SLOT(_getAspectRatio()));
connect(ui->radioButton_3_1, SIGNAL(toggled(bool)), this, SLOT(_getAspectRatio()));
connect(ui->radioButton_3_2, SIGNAL(toggled(bool)), this, SLOT(_getAspectRatio()));
connect(ui->radioButton_4_3, SIGNAL(toggled(bool)), this, SLOT(_getAspectRatio()));
connect(ui->radioButton_5_3, SIGNAL(toggled(bool)), this, SLOT(_getAspectRatio()));
connect(ui->radioButton_5_4, SIGNAL(toggled(bool)), this, SLOT(_getAspectRatio()));
connect(ui->radioButton_16_9, SIGNAL(toggled(bool)), this, SLOT(_getAspectRatio()));
connect(ui->radioButton_free, SIGNAL(toggled(bool)), this, SLOT(_getAspectRatio()));
connect(ui->radioButton_manual, SIGNAL(toggled(bool)), this, SLOT(_getAspectRatio()));
connect(ui->lineEdit_aspectRatio, SIGNAL(textChanged(QString)), this, SLOT(_getAspectRatio()));
// connect(ui->lineEdit_aspectRatio, SIGNAL(textEdited(QString)), this, SLOT(_getAspectRatio()));
connect(this, SIGNAL(newAspectRatio(double)),
&_scene, SLOT(newAspectRatio(double)), Qt::QueuedConnection);
ui->radioButton_rot0->setChecked(true);
ui->graphicsView_Source->setBackgroundBrush( QPalette().dark() );//QBrush(IMAGE_BACKGROUND_COLOR));
ui->graphicsView_Target->setBackgroundBrush(QPalette().dark());//QBrush(IMAGE_BACKGROUND_COLOR));
//_getAspectRatio();
connect(&_scene, SIGNAL(fileName(const QString)),
ui->label_filename, SLOT(setText(QString)), Qt::QueuedConnection);
connect(&_scene, SIGNAL(fileName(const QString)), SLOT(newFileName(QString)), Qt::QueuedConnection);
connect(&_scene, SIGNAL(noAspect()), SLOT(noAspect()), Qt::QueuedConnection);
connect(&_scene, SIGNAL(noRotation()), SLOT(noRotation()), Qt::QueuedConnection);
connect(&_scene, SIGNAL(noCrop()), SLOT(noCrop()), Qt::QueuedConnection);
if (QIcon::hasThemeIcon("go-first"))
ui->toolButton_firstImage->setIcon(QIcon::fromTheme("go-first"));
if (QIcon::hasThemeIcon("go-last"))
ui->toolButton_lastImage->setIcon(QIcon::fromTheme("go-last"));
if (QIcon::hasThemeIcon("go-next"))
{
ui->toolButton_nextImage->setIcon(QIcon::fromTheme("go-next"));
ui->toolButton_nextItem->setIcon(QIcon::fromTheme("go-next"));
}
if (QIcon::hasThemeIcon("go-previous"))
{
ui->toolButton_prevImage->setIcon(QIcon::fromTheme("go-previous"));
ui->toolButton_prevItem->setIcon(QIcon::fromTheme("go-previous"));
}
if (QIcon::hasThemeIcon("zoom-in"))
ui->toolButton_zoomIn->setIcon(QIcon::fromTheme("zoom-in"));
if (QIcon::hasThemeIcon("zoom-out"))
ui->toolButton_zoomOut->setIcon(QIcon::fromTheme("zoom-out"));
if (QIcon::hasThemeIcon("zoom-original"))
ui->toolButton_zoomOriginal->setIcon(QIcon::fromTheme("zoom-original"));
if (QIcon::hasThemeIcon("zoom-fit-best"))
ui->toolButton_zoomFit->setIcon(QIcon::fromTheme("zoom-fit-best"));
if (QIcon::hasThemeIcon("view-refresh"))
ui->toolButton_refresh->setIcon(QIcon::fromTheme("view-refresh"));
if (QIcon::hasThemeIcon("help"))
ui->toolButton_Help->setIcon(QIcon::fromTheme("help"));
connect(ui->toolButton_refresh, SIGNAL(clicked()), &_scene, SLOT(refreshView()), Qt::QueuedConnection);
// check for update after two minutes
QTimer::singleShot( WAIT_FOR_DONATE_HINT_MS, this, SLOT(on_actionSupport_by_donation_triggered()) );
QTimer::singleShot( WAIT_FOR_CHECK_FOR_UPDATE, this, SLOT(on_actionCheck_for_new_version_triggered()) );
connect (&_settings, SIGNAL(newValues()), this, SLOT(newValues()), Qt::QueuedConnection);
connect (&_scene, SIGNAL(reloadSettings()), this, SLOT(loadSettings()), Qt::QueuedConnection);
connect (&_scene, SIGNAL(newCrop(double)), SLOT(onNewCrop(double)), Qt::QueuedConnection);
connect (&_scene, SIGNAL(setTargetWaiting(bool)), SLOT(setWaitTarget(bool)), Qt::QueuedConnection);
enableButtons();
newValues();
_scene.newIndividualCrop(ui->doubleSpinBox_crop->value());
if (!settings.value("starthelp", false).toBool())
{
QTimer::singleShot(2000, this, SLOT(on_actionOnline_Help_triggered()));
}
settings.setValue("starthelp", true);
new QShortcut(QKeySequence(Qt::CTRL + Qt::Key_A), this, SLOT(selectAll()));
_getAspectRatio();
}
void MainWindow::_onLoadFile()
{
QSettings settings(tr(IMAGE_ORGANIZATION_ORG), tr(IMAGE_ORGANIZATION_APP));
QStringList filters;
filters << "*.jpg" << "*.jpeg" << "*.tiff" << "*.tif" << "*.bmp" << "*.png" << "*.gif" << "*.pbm" << "*.pgm" << "*.ppm";
const QString filename = QFileDialog::getOpenFileName(this,
tr("Load Image"),
settings.value("lastDir").toString(),
tr("Images (%1)").arg(filters.join(" ")));
if (filename.length() > 0) {
QFileInfo info(filename);
settings.setValue("lastDir", info.absolutePath());
QFileInfoList otherimages;
QDir dir(info.absolutePath());
otherimages = dir.entryInfoList(filters);
int index = -1;
for (int i=0; i<(int)otherimages.size(); i++) {
if (otherimages.at(i).fileName() == info.fileName()) {
index = i;
}
}
emit newList(otherimages, index);
}
}
MainWindow::~MainWindow()
{
_tearDown = true;
disconnect(this);
disconnect(&_scene);
disconnect(&_sceneTarget);
QSettings settings(tr(IMAGE_ORGANIZATION_ORG), tr(IMAGE_ORGANIZATION_APP));
settings.setValue("mainwin_geom", saveGeometry());
settings.setValue("mainwin_splitter", ui->splitter->saveState());
settings.setValue("cropdistance", ui->doubleSpinBox_cropInitial->value());
settings.setValue("manualaspect", ui->lineEdit_aspectRatio->text());
settings.setValue("enforceAspectNextIm", ui->checkBox_enforceAspect->isChecked());
delete ui;
}
void MainWindow::_onNewTargetImage(const QPixmap& pixmap)
{
if (_tearDown) return;
if (_sceneTarget.items().size() > 0)
{
for (int i=_sceneTarget.items().size()-1; i>=0; i--) {
QGraphicsItem* item = _sceneTarget.items()[i];
_sceneTarget.removeItem(item);
delete item;
}
}
QGraphicsPixmapItem* pixItem = new QGraphicsPixmapItem(pixmap);
_sceneTarget.addItem(pixItem);
_updateTargetView();
}
void MainWindow::_updateTargetView(int, int)
{
if (_sceneTarget.items().size() > 0) {
_sceneTarget.setSceneRect(_sceneTarget.items()[0]->boundingRect());
ui->graphicsView_Target->centerOn(_sceneTarget.items()[0]);
ui->graphicsView_Target->fitInView(_sceneTarget.items()[0],
Qt::KeepAspectRatio);
ui->graphicsView_Target->scale(0.95,0.95);
ui->graphicsView_Target->setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
ui->graphicsView_Target->setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
}
}
void MainWindow::_onRotation90(const Rotation90 rotation)
{
switch (rotation) {
case TargetRotation0:
ui->radioButton_rot0->setChecked(true);
break;
case TargetRotation90:
ui->radioButton_rot90->setChecked(true);
break;
case TargetRotation180:
ui->radioButton_rot180->setChecked(true);
break;
case TargetRotation270:
ui->radioButton_rot270->setChecked(true);
break;
}
}
void MainWindow::on_radioButton_rot0_toggled(bool isChecked)
{
if (isChecked) emit newOrientation(TargetRotation0);
}
void MainWindow::on_radioButton_rot90_toggled(bool isChecked)
{
if (isChecked) emit newOrientation(TargetRotation90);
}
void MainWindow::on_radioButton_rot180_toggled(bool isChecked)
{
if (isChecked) emit newOrientation(TargetRotation180);
}
void MainWindow::on_radioButton_rot270_toggled(bool isChecked)
{
if (isChecked) emit newOrientation(TargetRotation270);
}
void MainWindow::on_toolButton_deleteItem_clicked()
{
_scene.deleteSelection();
}
void MainWindow::on_toolButton_prevItem_clicked()
{
_scene.nextTarget(-1);
}
void MainWindow::on_toolButton_nextItem_clicked()
{
_scene.nextTarget(1);
}
void MainWindow::_getAspectRatio()
{
double aspectRatio = -1;
if (ui->radioButton_16_9->isChecked()) {
aspectRatio = 16.0/9.0;
} else if (ui->radioButton_1_1->isChecked()) {
aspectRatio = 1.000001;
} else if (ui->radioButton_2_1->isChecked()) {
aspectRatio = 2.0;
} else if (ui->radioButton_3_1->isChecked()) {
aspectRatio = 3.0/1.0;
} else if (ui->radioButton_3_2->isChecked()) {
aspectRatio = 3.0/2.0;
} else if (ui->radioButton_4_1->isChecked()) {
aspectRatio = 4.0/1.0;
} else if (ui->radioButton_4_3->isChecked()) {
aspectRatio = 4.0/3.0;
} else if (ui->radioButton_5_3->isChecked()) {
aspectRatio = 5.0/3.0;
} else if (ui->radioButton_5_4->isChecked()) {
aspectRatio = 5.0/4.0;
} else if (ui->radioButton_manual->isChecked()) {
QString ratioStr = ui->lineEdit_aspectRatio->text();
const int pos = ratioStr.indexOf(":");
if (pos > 0) {
const double part1 = ratioStr.left(pos).toDouble();
const double part2 = ratioStr.right(ratioStr.length() -pos -1).toDouble();
if (part1 > 0 && part2 > 0) {
aspectRatio = part1 / part2;
}
}
else
{
aspectRatio = ratioStr.toFloat();
}
}
emit newAspectRatio(aspectRatio);
}
void MainWindow::toggleAspect(const float aspectNew)
{
const float minDiff = 0.001;
float aspect = aspectNew;
if (aspect < 1.0 && aspect > 0) {
aspect = 1.0/aspect;
}
if (qAbs(aspect - 16.0/9.0) < minDiff){
ui->radioButton_16_9->setChecked(true);
} else if (qAbs(aspect - 1.0) < minDiff) {
ui->radioButton_1_1->setChecked(true);
} else if (qAbs(aspect - 2.0) < minDiff) {
ui->radioButton_2_1->setChecked(true);
} else if (qAbs(aspect - 3.0) < minDiff) {
ui->radioButton_3_1->setChecked(true);
} else if (qAbs(aspect - 3.0/2.0) < minDiff) {
ui->radioButton_3_2->setChecked(true);
} else if (qAbs(aspect - 4.0) < minDiff) {
ui->radioButton_4_1->setChecked(true);
} else if (qAbs(aspect - 4.0/3.0) < minDiff) {
ui->radioButton_4_3->setChecked(true);
} else if (qAbs(aspect - 5.0/3.0) < minDiff) {
ui->radioButton_5_3->setChecked(true);
} else if (qAbs(aspect - 5.0/4.0) < minDiff) {
ui->radioButton_5_4->setChecked(true);
} else if (aspect > 0)
{
ui->radioButton_manual->setChecked(true);
ui->lineEdit_aspectRatio->setText(QString("%1").arg(aspect));
}
else
{
ui->radioButton_free->setChecked(true);
}
}
void MainWindow::on_toolButton_zoomIn_clicked()
{
_scene.zoom(1.25);
}
void MainWindow::on_toolButton_zoomOut_clicked()
{
_scene.zoom(0.8);
}
void MainWindow::on_toolButton_zoomFit_clicked()
{
_scene.zoomFit();
}
void MainWindow::on_toolButton_zoomOriginal_clicked()
{
_scene.zoom1();
}
void MainWindow::on_toolButton_firstImage_clicked()
{
_scene.loadPosition(0);
enableButtons();
}
void MainWindow::on_toolButton_lastImage_clicked()
{
_scene.loadPosition(-2);
enableButtons();
}
void MainWindow::on_toolButton_nextImage_clicked()
{
_scene.loadPosition(1, true);
enableButtons();
}
void MainWindow::resizeEvent(QResizeEvent *)
{
_updateTargetView();
}
void MainWindow::on_toolButton_prevImage_clicked()
{
_scene.loadPosition(-1, true);
enableButtons();
}
void MainWindow::on_toolButton_saveTargtes_clicked()
{
bool save = true;
bool force = false;
if (ui->toolButton_saveTargtes->styleSheet().length() > 0)
{
QMessageBox::StandardButton reply = QMessageBox::question(this, tr("Already saved"),
tr("The images have already been extracted for this scan, "
" do you want to save them again?"),
QMessageBox::Yes|QMessageBox::Abort);
save = reply == QMessageBox::Yes;
force = save;
}
if (save)
{
_scene.saveCurrent(true, force);
}
}
void MainWindow::_resetAspect()
{
ui->radioButton_free->setChecked(true);
}
void MainWindow::on_actionAbout_Qt_triggered()
{
qApp->aboutQt();
}
void MainWindow::on_action_About_triggered()
{
_about.setModal(true);
_about.setVersion(version_scannerExtract.getVersionMajor(),
version_scannerExtract.getVersionMinor(),
version_scannerExtract.getVersionPatch(),
version_scannerExtract.getCompilerBits());
_about.show();
}
void MainWindow::on_actionSupport_by_donation_triggered()
{
const QString donateText = _about.getDonateText();
const QString donateTitle = tr("Support Scanned Image Extractor");
if (sender() == ui->actionSupport_by_donation) {
QMessageBox::information(this,
donateTitle,
donateText);
} else {
// if first time: save date:
// otherwise: check if one week has passed and asked for donation
QSettings settings(tr(IMAGE_ORGANIZATION_ORG), tr(IMAGE_ORGANIZATION_APP));
const int firstTimeYear = 2000;
QDateTime firstTime = settings.value("firsttimestarteddonation",
QDateTime(QDate(firstTimeYear,1,1),
QTime::currentTime())).toDateTime();
if (firstTime.date().year() == firstTimeYear)
{
settings.setValue("firsttimestarteddonation", QDateTime::currentDateTime());
} else if (QDateTime::currentDateTime().addDays(DAYS_UNTIL_DONATE_HINT) > firstTime ){
if (!lockDialog()) {
QTimer::singleShot(10000, this, SLOT(on_actionSupport_by_donation_triggered()));
return;
}
provideInfo(donateTitle, donateText, tr("donatehint"));
unlockDialog();
settings.setValue("firsttimestarteddonation", QDateTime::currentDateTime());
}
}
}
void MainWindow::on_actionCheck_for_new_version_triggered()
{
qint32 major, minor, patch;
QString link, text;
bool connection;
QProgressDialog* bar = NULL;
if (sender() == ui->actionCheck_for_new_version) {
bar = new QProgressDialog(tr("Retrieving version data"), tr("asdf"), 0, 0, this);
bar->setCancelButton(0);
bar->show();
}
//QDataStream data(reply);
const bool result = version_scannerExtract.checkForUpdateVersion(NEW_VERSION_LOCATION_SCANNER_EXTRACT,
NEW_VERSION_MAGIC_NUMBER,
major,
minor,
patch,
link,
text,
connection);
if (bar != NULL) {
bar->close();
bar->deleteLater();
}
// only show once a week
QSettings settings(tr(IMAGE_ORGANIZATION_ORG), tr(IMAGE_ORGANIZATION_APP));
settings.setValue("main_geometry", saveGeometry());
QDate lastHint = settings.value("lastShowUpdate", QDate(1950,1,1)).toDate();
QDate oneWeekBack = QDate::currentDate().addDays(-7);
const bool autoCheck = lastHint < oneWeekBack || sender() == ui->actionCheck_for_new_version;
if (result && autoCheck)
{
QDialog *diag = new QDialog(this);
diag->setModal(true);
QVBoxLayout* layH = new QVBoxLayout();
diag->setLayout(layH);
diag->layout()->addWidget(new QLabel(tr("New version of <i>Scanned Image Extractor</i> available: <b>%1.%2.%3</b> (current: %4.%5.%6)").arg(major).arg(minor).arg(patch).arg(version_scannerExtract.getVersionMajor()).arg(version_scannerExtract.getVersionMinor()).arg(version_scannerExtract.getVersionPatch())));
QLabel* dlLabel = new QLabel(QString(tr("Download: <a href=\"%1\">%2</a>")).arg(link).arg(link));
dlLabel->setTextInteractionFlags(Qt::LinksAccessibleByKeyboard | Qt::LinksAccessibleByMouse);
dlLabel->setOpenExternalLinks(true);
diag->layout()->addWidget(dlLabel);
diag->layout()->addWidget(new QLabel(tr("<b>Changelog:</b>")));
QTextBrowser* tb = new QTextBrowser();
tb->setText(text);
tb->setReadOnly(true);
diag->layout()->addWidget(tb);
QPushButton *okay = new QPushButton(tr("close"));
connect(okay, SIGNAL(clicked()), diag, SLOT(deleteLater()));
QHBoxLayout *lay = new QHBoxLayout();
lay->addStretch();
lay->addWidget(okay);
lay->addStretch();
layH->addLayout(lay);
diag->show();
settings.setValue("lastShowUpdate", QDate::currentDate());
} else {
if (!connection && sender() == ui->actionCheck_for_new_version) {
QMessageBox::warning(this, tr("no connection"), tr("Was not able to connect to new version data server. Please check manually"), QMessageBox::Ok);
} else if (sender() == ui->actionCheck_for_new_version) {
QMessageBox::information(this, tr("no update necessary"), tr("There is no new version of Scanned Image Extractor!"), QMessageBox::Ok);
}
}
}
void MainWindow::provideInfo(
const QString &headline,
const QString &text,
const QString& settingsValue,
const QString& showAgain,
const int width,
const int minWidth)
{
QSettings settings(qApp->translate("tools", IMAGE_ORGANIZATION_ORG), qApp->translate("tools", IMAGE_ORGANIZATION_APP));
if (!settings.value(settingsValue, true).toBool()) {
return;
}
const int iconsize = 128;
QDialog* dialog = new QDialog(this, Qt::Dialog);
dialog->setMinimumWidth(minWidth);
dialog->setMaximumWidth(width);
dialog->setModal(true);
dialog->setWindowTitle(headline);
QVBoxLayout* layout = new QVBoxLayout;
QHBoxLayout* messageInfo = new QHBoxLayout;
QIcon icon;
if (QIcon::hasThemeIcon("info")) {
icon = QIcon::fromTheme("info");
} else {
icon = QIcon(":/images/info.png");
}
QLabel* infoIcon = new QLabel;
infoIcon->setScaledContents(false);
pQPixmap pixmap (icon.pixmap(256,
QIcon::Normal,
QIcon::On));
infoIcon->setPixmap(pixmap->scaled(QSize(iconsize, iconsize),
Qt::KeepAspectRatio,
Qt::SmoothTransformation));
infoIcon->setSizePolicy(QSizePolicy::Maximum, QSizePolicy::Maximum);
QLabel* info = new QLabel(text);
info->setOpenExternalLinks(true);
info->setTextFormat(Qt::RichText);
info->setSizePolicy(QSizePolicy::Maximum, QSizePolicy::MinimumExpanding);
info->setWordWrap(true);
#ifndef _WIN32
info->setMargin(5);
#endif
info->setMaximumWidth(width-iconsize);
messageInfo->addWidget(infoIcon);
messageInfo->addWidget(info);
QHBoxLayout* layoutCheckBox = new QHBoxLayout;
layoutCheckBox->addStretch();
QCheckBox* showAgainBox = new QCheckBox(showAgain);
showAgainBox->setChecked(true);
showAgainBox->setSizePolicy(QSizePolicy::Maximum, QSizePolicy::Maximum);
layoutCheckBox->addWidget(showAgainBox);
QHBoxLayout* layoutButton = new QHBoxLayout;
layoutButton->addStretch();
QPushButton* okButton = new QPushButton(qApp->translate("tools", "OK"));
layoutButton->addWidget(okButton);
#ifndef _WIN32
layoutButton->setMargin(5);
#endif
qApp->connect(okButton, SIGNAL(clicked()), dialog, SLOT(close()));
layout->addLayout(messageInfo);
layout->addLayout(layoutCheckBox);
layout->addLayout(layoutButton);
dialog->setLayout(layout);
dialog->setSizePolicy(QSizePolicy::Maximum, QSizePolicy::Maximum);
dialog->exec();
settings.setValue(settingsValue, showAgainBox->isChecked());
delete dialog;
dialog = 0;
}
bool MainWindow::lockDialog()
{
if (_dialogLock) {
return false;
}
_dialogLock = true;
return true;
}
void MainWindow::unlockDialog()
{
_dialogLock = false;
}
void MainWindow::enableButtons()
{
bool isFirst, isLast;
_scene.getIsFirstLast(isFirst, isLast);
ui->toolButton_nextImage->setEnabled(!isLast);
ui->toolButton_lastImage->setEnabled(!isLast);
ui->toolButton_firstImage->setEnabled(!isFirst);
ui->toolButton_prevImage->setEnabled(!isFirst);
}
void MainWindow::currImageHasChanges(bool hasChanges)
{
if (hasChanges)
{
ui->toolButton_saveTargtes->setStyleSheet("");
ui->toolButton_saveTargtes->setEnabled(true);
}
else
{
ui->toolButton_saveTargtes->setStyleSheet("background-color:#AA88EE55;");
//ui->toolButton_saveTargtes->setEnabled(false);
}
}
void MainWindow::newFileName(const QString filename)
{
setWindowTitle(_title + " - " + filename);
enableButtons();
}
void MainWindow::on_action_Settings_triggered()
{
_settings.show();
}
void MainWindow::loadSettings()
{
_scene.setDestination(_settings.getTargetDir());
_scene.setPrefix(_settings.getPrefix());
_scene.setThresh(_settings.getThresh());
_scene.setMaxAspect(_settings.getMaxAspect());
_scene.setLevels(_settings.getLevels() );
_scene.setMaxOverlap(_settings.getMinArea());
_scene.setMinArea(_settings.getMinArea());
_scene.setMinAreaWithinImage(_settings.getMinAreaWithinImage());
_scene.setSplitMaxOffset(_settings.getSplitMaxoffsetFrac());
_scene.setSplitMinCornerDist(_settings.getSplitMinCornerDist());
_scene.setSplitMinLengthFrac(_settings.getSplitMinLengthFrac());
_scene.setMaximumHierarchyLevel(_settings.getMaxHierarchyLevel());
_scene.setNumPreLoad(_settings.getNumPreLoad());
}
void MainWindow::newValues()
{
loadSettings();
_scene.reloadFromNewSettings();
}
void MainWindow::onNewCrop(const double crop)
{
ui->doubleSpinBox_crop->setValue(crop*100.0);
}
void MainWindow::noRotation()
{
QListIterator<QObject *> i(ui->groupBox_orientation->children());
while (i.hasNext())
{
QObject* item = i.next();
QRadioButton* b = dynamic_cast<QRadioButton*>( item );
if (b > 0 && b->isChecked()) {
b->setAutoExclusive(false);
b->setChecked(false);
b->setAutoExclusive(true);
}
}
}
void MainWindow::noAspect()
{
QListIterator<QObject *> i(ui->groupBox_aspect->children());
while (i.hasNext())
{
QRadioButton* b = dynamic_cast<QRadioButton*>( i.next());
if (b > 0 && b->isChecked()) {
b->setAutoExclusive(false);
b->setChecked(false);
b->setAutoExclusive(true);
}
}
}
void MainWindow::noCrop()
{
ui->doubleSpinBox_crop->setValue(0);
}
void MainWindow::setWaitTarget(const bool wait)
{
if (wait) {
if (_targetWait == 0) {
_targetWait = new QProgressBar(ui->graphicsView_Target);
_targetWait->setMaximum(0);
_targetWait->setMinimum(0);
_targetWait->show();
}
}
else
{
if (_targetWait != 0) {
_targetWait->setVisible(false);
delete _targetWait;
_targetWait = 0;
}
}
}
void MainWindow::on_actionAbout_liblbfgs_triggered()
{
QMessageBox::information(this,
tr("liblbfgs"),
tr("<a href=\"http://www.chokkan.org/software/liblbfgs/\">liblbfgs</a> is an optimization/energy minimization library which implements the"
" Limited-memory Broyden-Fletcher-Goldfarb-Shanno algorithm (L-BFGS)."
"Copyright (c) 2002-2014 by Naoaki Okazaki - <a href=\"http://opensource.org/licenses/mit-license.php\">MIT license</a>"),
QMessageBox::Ok);
}
void MainWindow::on_doubleSpinBox_cropInitial_valueChanged(const double val)
{
_scene.initialCropChanged(val/100.0);
}
void MainWindow::numSelectionChanged(const int num)
{
ui->doubleSpinBox_crop->setEnabled(num > 0);
ui->doubleSpinBox_cropInitial->setEnabled(num == 0);
}
void MainWindow::doneCopy(const QString& filename,
const QString& targetLocation)
{
statusBar()->showMessage(QString(tr("finished copying '%1' to '%2'")).arg(filename).arg(targetLocation),
5000);
}
void MainWindow::on_actionOnline_Help_triggered()
{
_helpDialog.show();
/*
QMessageBox::information(this,
tr("Help"),getHelpText(),
QMessageBox::Ok);*/
}
QString MainWindow::getHelpText()
{
return tr("Find the online help at <a href=\"http://dominik-ruess.de/scannerExtract\">dominik-ruess.de/scannerExtract</a>"
"<br><br>"
"<b>Workflow:</b><ol>"
"<li>load a scanned image</li>"
"<li>the system will suggest photographs, you can now:<ol>"
"<li>accept the suggestion(s)</li>"
"<li>manipulate suggestions: <ul><li>drag corner or edge of rectangles</li>"
"<li>press CTRL for symmetric change</li>"
"<li>keep SHIFT pressed before dragging corner, this rotates the rectangle</li></ul></li>"
"<li>add new rectangle: deselect all (click somewhere empty). Click on a photograph corner, keep mouse clicked and drag line to a second corner. Then move/resize the new rectangle and click to release.</li>"
"</ol></li>"
"<li>the rectangles will be saved automatically when you go to the next scanned image</li></ol>"
"<b>Keyboard shortcuts:</b><br><table>"
"<tr><td>Keys 0-9</td><td> select aspect ratios</td></tr>"
"<tr><td>Keys 'a', 's', 'd' and 'f'</td><td> change orientation of current target</td></tr>"
"<tr><td>Keys CTRL+V and CTRL+B</td><td> navigate to prev. and next input image</td></tr>"
"<tr><td>Keys N, M and delete</td><td> navigate prev. and next target or delete target</td></tr></table>");
}
void MainWindow::showStartupHelp()
{
provideInfo(tr("Startup Hint"), getHelpText(), tr("startupHelp"));
}
void MainWindow::on_toolButton_Help_clicked()
{
QWhatsThis::enterWhatsThisMode();
}
void MainWindow::on_actionAbout_Open_CV_triggered()
{
QMessageBox::information(this,
tr("About OpenCV"),
tr("<a href=\"http://opencv.org\">OpenCV</a> a powerful and free (BSD-License) computer vision library."
" Scanned Image Extractor can use version 2 or 3 of OpenCV."
" Copyright (c) 2015 by <a href=\"http://itseez.com/\">itseez</a>"),
QMessageBox::Ok);
}

191
scannerExtract/mainwindow.h Normal file
View File

@ -0,0 +1,191 @@
/***********************************************************************
* This file is part of Scanned Image Extract.
*
* Scanned Image Extract 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.
*
* Scanned Image Extract 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 Scanned Image Extract. If not, see <http://www.gnu.org/licenses/>
*
*
* Copyright (C) 2015, Dominik Rueß; info@dominik-ruess.de
**********************************************************************/
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QtWidgets/QMainWindow>
#include <QtWidgets/QGraphicsScene>
#include <QApplication>
#include "imagescene.h"
#include "about.h"
#include <version_scannerExtract.h>
#include "settingsdialog.h"
#include "helpdialog.h"
#define IMAGE_BACKGROUND_COLOR QColor(220,220,220)
#define WAIT_FOR_DONATE_HINT_MS 30000
//2*60*1000
#define WAIT_FOR_CHECK_FOR_UPDATE 1*60*1000
#define DAYS_UNTIL_DONATE_HINT -5
#define NEW_VERSION_LOCATION_SCANNER_EXTRACT "http://dominik-ruess.de/scannerExtract/currentVersion"
#define NEW_VERSION_MAGIC_NUMBER 29384730
namespace Ui {
class MainWindow;
}
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
explicit MainWindow(QWidget *parent = 0);
~MainWindow();
signals:
void newOrientation(const Rotation90 rot);
void newAspectRatio(const double ratio);
void newList(QFileInfoList, int);
private slots:
void _onLoadFile();
void _onNewTargetImage(const QPixmap& pixmap);
void _onRotation90(const Rotation90 rotation);
void on_radioButton_rot0_toggled(bool isChecked);
void on_radioButton_rot90_toggled(bool isChecked);
void on_radioButton_rot180_toggled(bool isChecked);
void on_radioButton_rot270_toggled(bool isChecked);
void on_toolButton_deleteItem_clicked();
void on_toolButton_prevItem_clicked();
void on_toolButton_nextItem_clicked();
void _updateTargetView(int x=0, int y=0);
void _getAspectRatio();
void on_toolButton_zoomIn_clicked();
void on_toolButton_zoomOut_clicked();
void on_toolButton_zoomFit_clicked();
void on_toolButton_zoomOriginal_clicked();
void on_toolButton_firstImage_clicked();
void on_toolButton_lastImage_clicked();
void on_toolButton_nextImage_clicked();
void on_toolButton_prevImage_clicked();
void on_toolButton_saveTargtes_clicked();
void _resetAspect();
void on_actionAbout_Qt_triggered();
void on_action_About_triggered();
void on_actionSupport_by_donation_triggered();
void on_actionCheck_for_new_version_triggered();
void provideInfo(const QString& headline,
const QString& text,
const QString& settingsValue,
const QString& showAgain = qApp->translate("tools", "Show hint in future"),
const int width = 800,
const int minWidth = 600);
bool lockDialog();
void unlockDialog();
void resizeEvent(QResizeEvent *);
void currImageHasChanges(bool hasChanges);
void newFileName(const QString);
void enableButtons();
void toggleAspect(const float aspect);
void loadSettings();
void newValues();
void onNewCrop(const double crop);
void on_action_Settings_triggered();
void selectAll() { _scene.selectAll(); }
void noRotation();
void noAspect();
void noCrop();
void setWaitTarget(const bool wait);
void on_actionAbout_liblbfgs_triggered();
void on_doubleSpinBox_cropInitial_valueChanged(const double val);
void numSelectionChanged(const int num);
void on_actionOnline_Help_triggered();
QString getHelpText();
void showStartupHelp();
void on_toolButton_Help_clicked();
void on_actionAbout_Open_CV_triggered();
void doneCopy(const QString &filename, const QString &targetLocation);
private:
Ui::MainWindow *ui;
ImageScene _scene;
QGraphicsScene _sceneTarget;
DialogAbout _about;
bool _dialogLock;
QString _title;
SettingsDialog _settings;
QProgressBar* _targetWait;
bool _tearDown;
HelpDialog _helpDialog;
};
#endif // MAINWINDOW_H

1214
scannerExtract/mainwindow.ui Normal file

File diff suppressed because it is too large Load Diff

60
scannerExtract/pQPixmap.h Normal file
View File

@ -0,0 +1,60 @@
#ifndef PQPIXMAP_H
#define PQPIXMAP_H
/**
* @brief pQPixmap a smart pointer to a QPixmap to avoid much data on the stack
* The smart pointer always has an object (!)
*/
class pQPixmap : public std::shared_ptr<QPixmap>
{
public:
/**
* @brief pQPixmap enforce a creation of an empty QPixmap
*/
pQPixmap()
: std::shared_ptr<QPixmap>(new QPixmap())
{
}
/**
* @brief pPixmap load from file
* @param filename the file
*/
pQPixmap(const QString& filename)
: std::shared_ptr<QPixmap>(new QPixmap(filename))
{}
/**
* @brief pQPixmap create this as reference to another pQPixmap
* @param other the other smart pointer to the QPixmap
*/
pQPixmap(const pQPixmap& other)
: std::shared_ptr<QPixmap>()
{
this->reset();
std::shared_ptr<QPixmap>::operator =( other);
if (other.get() == 0) {
std::shared_ptr<QPixmap>::operator =( std::make_shared<QPixmap>(QPixmap()));
}
}
/**
* @brief pQPixmap obtain ownership of a QPixmap pointer
* @param other the pointer to an QPixmap -> must not be deleted somewhere else
*/
pQPixmap(QPixmap* other)
: std::shared_ptr<QPixmap>(other)
{
}
/**
* @brief pQPixmap a smart pointer to an image given an actual QPixmap object
* @param image the object to be referenced to
*/
pQPixmap(const QPixmap& image)
: std::shared_ptr<QPixmap>(new QPixmap(image))
{
}
};
#endif // PQPIXMAP_H

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,233 @@
/***********************************************************************
* This file is part of Scanned Image Extract.
*
* Scanned Image Extract 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.
*
* Scanned Image Extract 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 Scanned Image Extract. If not, see <http://www.gnu.org/licenses/>
*
*
* Copyright (C) 2015, Dominik Rueß; info@dominik-ruess.de
**********************************************************************/
#ifndef PRELOADSOURCE_H
#define PRELOADSOURCE_H
#include <QThread>
#include <QString>
#include <QWaitCondition>
#include <QMutex>
#include <QPair>
#include <QVector>
#include <opencv/cv.h>
#include "sourcefile.h"
#include <lbfgs.h>
#define MAX_AREA_OVERLAP 0.3
class PreloadSource : public QThread
{
Q_OBJECT
public:
explicit PreloadSource(QObject *parent = 0);
~PreloadSource();
static QMutex preloadMutex;
static QWaitCondition waitFinished;
void addLoadFiles(const SourceFilePtr& file,
const int position,
const bool highPriority=false,
const bool onlyLoadImages = false);
void clear();
void newTargets(SourceFilePtr& source, cv::Mat &alreadyLoaded, bool &locked);
QString isCurrentlyLoading() const;
void updateMinMax(const int, const int);
void setThresh(const double thresh) { _threshold = thresh; }
void setMaxAspect(const double maxAspect) { _maxAspect = maxAspect; }
void setLevels(const int levels) { _levels = levels; }
void setMaxOverlap(const double maxOverlap) { _maxOverlap = maxOverlap; }
void setMinArea(const double minArea) { _minArea = minArea; }
void setMinAreaWithinImage(const double minArea) { _minAreaWithinImage = minArea; }
void setSplitMaxOffset(const double maxOffset) { _splitMaxOffsetFrac = maxOffset; }
void setSplitMinCornerDist(const double minCornerDist) { _splitMinCornerDist = minCornerDist; }
void setSplitMinLengthFrac(const double minLengthFrac) { _splitMinLengthFrac = minLengthFrac; }
void setMaxHierarchyLevel(const int level) { _maxHierarchyLevel = level; }
void setEnergyWeights(const float e1, // border energy
const float e2, // area energy
const float e3, // aspect energy
const float e4) // frame content energy
{ _e1 =e1; _e2 = e2; _e3 = e3; _e4 = e4; }
signals:
void doneLoading(const SourceFilePtr&, const int position);
public slots:
void stop();
protected:
void run();
private:
void getSumOfRectangleSampling(const QVector<cv::Point2f> pts,
const cv::Mat &image,
double &sumValues,
long &numPixels);
static void getSumOfRectangleSamplingF(const QVector<cv::Point2f> pts,
const cv::Mat &image,
double &sumValues,
long &numPixels);
std::vector<cv::Vec3i> getThresholds(const cv::Mat &image, int &bestThresInd);
void bestRectangles(const cv::Mat& imageOrig,
const cv::Mat &boundaries,
const cv::Vec3i &thresholds,
const std::vector<std::vector< cv::Point > >& contours,
const std::vector<cv::Vec4i>& hierarchy,
const QVector<cv::RotatedRect>& rects,
const QVector<QVector<cv::Point2f> >& points, QVector<double> &energies,
QVector<bool>& out); // max aspect ratio is x
void rectangleOverlap(std::vector<std::vector<cv::Point> > &contours,
QVector<cv::RotatedRect> &rects,
std::vector<cv::Vec4i>& hierarchy,
QVector<QVector<cv::Point2f> > &points,
QVector<QVector<float> > &sumOfContourLengths,
QVector<bool> &valid) const;
void computeContourLengths(const std::vector<std::vector<cv::Point> > &contours,
const QVector<bool>& valid,
QVector<QVector<float> >& sumOfContourLengths);
double distancePointLine(const cv::Point2f& LP1,
const cv::Point2f& LP2,
const cv::Point2f& p) const ;
void removeFilaments(QVector<QVector<float> > &sumOfContourLengths,
const QVector<bool> &valid,
std::vector<std::vector< cv::Point > >& contours );
double polyArea(const QVector<QPointF>& p) const;
double polyAreaCV(const std::vector<cv::Point>& p,
const int from = 0,
const int to = -1) const;
std::vector<cv::RotatedRect> extractRectangles(const std::vector<cv::Vec3i>& thresholds,
const cv::Mat& image);
std::vector<cv::Vec2f> extractLines(const std::vector<cv::Vec3i> &thresholds,
const cv::Mat& image);
/**
* @brief findHistPeak find position'th peak from left or right
* @param hist
* @param fromRight
* @param windowWidth
* @param minPercentage
* @param position
* @return
*/
int findHistPeak(const cv::Mat& hist,
const bool fromRight,
const int windowWidth = 10,
const float minPercentage = 0.3,
const int position = 0) const;
void preSelectFast(const cv::Mat &image,
const std::vector<std::vector< cv::Point > >& contours,
const std::vector<cv::Vec4i>& hierarchy,
const QVector<cv::RotatedRect>& rects,
const QVector<QVector<cv::Point2f> >& points,
QVector<bool>& valid) const;
void optimizeRectangle(const cv::Mat& edgeMask,
cv::RotatedRect& rectangle);
bool testAbort(SourceFilePtr sourceFile);
static lbfgsfloatval_t evaluate(
void *instance,
const lbfgsfloatval_t *x,
lbfgsfloatval_t *g,
const int n,
const lbfgsfloatval_t step
);
cv::Mat loadAndShrink(const QString& filename);
QVector<QPair<SourceFilePtr, int> > _filesToLoad;
SourceFilePtr _current;
QMutex _fileListMutex;
QWaitCondition _condition;
bool _stopped;
bool _abortAndLoadNext;
int _min;
int _max;
double _threshold;
double _maxAspect;
int _levels;
float _maxOverlap;
float _minArea;
float _maxArea;
float _minAreaWithinImage;
float _splitMaxOffsetFrac;
float _splitMinCornerDist;
float _splitMinLengthFrac;
int _maxHierarchyLevel;
QString _currentFilename;
int _imSize;
int _histPositions;
int _histWindowWidth;
float _histMinPercentage;
int _histSigma;
int _cannyTr1;
int _cannyTr2;
int _medianBlurMask;
int _houghRho;
int _houghAngle;
float _houghFactor;
float _rectAngularThresh;
float _rectMinLineDistFrac;
float _rectMinDist;
float _minFrameEnergy;
double _maxAreaFractionEnergy;
float _e1;
float _e2;
float _e3;
float _e4;
int _maxRectOptimizeIterations;
int _minColorHeight;
static cv::Mat _currentImageForRectOpt;
const QImage::Format _qImageFmt;
};
#endif // PRELOADSOURCE_H

View File

@ -0,0 +1,24 @@
<RCC>
<qresource prefix="/">
<file>images/sizeChange.png</file>
<file>images/rotate.png</file>
<file>images/Media-seek-backward.svg</file>
<file>images/Media-seek-forward.svg</file>
<file>images/Media-skip-backward.svg</file>
<file>images/Media-skip-forward.svg</file>
<file>images/View-zoom-1.svg</file>
<file>images/View-zoom-fit.svg</file>
<file>images/View-zoom-in.svg</file>
<file>images/View-zoom-out.svg</file>
<file>images/Document-save.svg</file>
<file>images/Edit-delete.svg</file>
<file>images/Gnome-scanner.svg</file>
<file>images/Gnome-image-x-generic.svg</file>
<file>images/logo.svg</file>
<file alias="WARRANTY_EN">WARRANTY</file>
<file>images/Gnome-image-x-generic_rot.svg</file>
<file>images/Refresh_file.svg</file>
<file>WARRANTY_DE</file>
<file>images/overview.png</file>
</qresource>
</RCC>

View File

@ -0,0 +1 @@
IDI_ICON1 ICON DISCARDABLE "images/logo.ico"

View File

@ -0,0 +1,7 @@
#ifndef SETTINGS_H
#define SETTINGS_H
#define IMAGE_ORGANIZATION_ORG "Dominik Rueß"
#define IMAGE_ORGANIZATION_APP "scannerExtract"
#endif // SETTINGS_H

View File

@ -0,0 +1,128 @@
/***********************************************************************
* This file is part of Scanned Image Extract.
*
* Scanned Image Extract 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.
*
* Scanned Image Extract 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 Scanned Image Extract. If not, see <http://www.gnu.org/licenses/>
*
*
* Copyright (C) 2015, Dominik Rueß; info@dominik-ruess.de
**********************************************************************/
#include "settingsdialog.h"
#include <QSettings>
#include <QDir>
#include <QFileDialog>
SettingsDialog::SettingsDialog(QWidget *parent) :
QDialog(parent),
ui(new Ui::SettingsDialog)
{
ui->setupUi(this);
ui->tabWidget->removeTab(1);
load();
connect(ui->toolButton_folder, SIGNAL(clicked()), this, SLOT(setTargetDir()));
connect(ui->buttonBox, SIGNAL(accepted()), SLOT(accepted()));
connect(ui->buttonBox, SIGNAL(rejected()), SLOT(rejected()));
}
void SettingsDialog::load()
{
QSettings settings(tr(IMAGE_ORGANIZATION_ORG), tr(IMAGE_ORGANIZATION_APP));
QString home = QDir::homePath() + "/" + tr("Pictures") + "/" + tr("ScannedImageExtractor") + "/";
ui->lineEdit_location->setText(settings.value("targetdir", home).toString());
ui->lineEdit_prefix->setText(settings.value("prefix", "fromScanner_").toString());
ui->doubleSpinBox_thres->setValue(settings.value("thresh", 5.0).toDouble());
ui->doubleSpinBox_maxAspect->setValue(settings.value("max aspect", 2.1).toDouble());
ui->spinBox_levels->setValue(settings.value("levels", 3).toInt());
ui->spinBox_maxOverlap->setValue(settings.value("maxOverlap", 30).toInt());
ui->spinBox_minArea->setValue(settings.value("minArea", 10.0).toInt());
ui->spinBox_minAreaWithinImage->setValue(settings.value("minAreaWithinImage", 90).toInt());
ui->spinBox_splitMaxOffsetFrac->setValue(settings.value("splitMaxOffsetFromDiag", 20).toInt());
ui->spinBox_splitMinCornerDist->setValue(settings.value("splitMinCornerDist", 30).toInt());
ui->spinBox_splitMinLengthFrac->setValue(settings.value("splitMinLengthFrac", 35).toInt());
ui->spinBox_maxHierarchyLevel->setValue(settings.value("maxHierarchyLevel", 15).toInt());
ui->spinBox_preload->setValue(settings.value("preload", 10).toInt());
}
void SettingsDialog::save()
{
QSettings settings(tr(IMAGE_ORGANIZATION_ORG), tr(IMAGE_ORGANIZATION_APP));
QString dir = ui->lineEdit_location->text();
dir.replace("\\", "/");
if (dir.right(1) != "/")
{
dir = dir + "/";
}
ui->lineEdit_location->setText(dir);
settings.setValue("targetdir", dir);
settings.setValue("prefix", ui->lineEdit_prefix->text());
settings.setValue("thresh", ui->doubleSpinBox_thres->value());
settings.setValue("max aspect", ui->doubleSpinBox_maxAspect->value());
settings.setValue("levels", ui->spinBox_levels->value());
settings.setValue("maxOverlap", ui->spinBox_maxOverlap->value());
settings.setValue("minArea", ui->spinBox_minArea->value());
settings.setValue("minAreaWithinImage", ui->spinBox_minAreaWithinImage->value());
settings.setValue("splitMaxOffsetFromDiag", ui->spinBox_splitMaxOffsetFrac->value());
settings.setValue("splitMinCornerDist", ui->spinBox_splitMinCornerDist->value());
settings.setValue("splitMinLengthFrac", ui->spinBox_splitMinLengthFrac->value());
settings.setValue("maxHierarchyLevel", ui->spinBox_maxHierarchyLevel->value());
settings.setValue("preload", ui->spinBox_preload->value());
}
SettingsDialog::~SettingsDialog()
{
delete ui;
}
void SettingsDialog::accepted()
{
// save and close
save();
emit newValues();
close();
}
void SettingsDialog::rejected()
{
// reset and close
load();
close();
}
void SettingsDialog::setTargetDir()
{
QString location = ui->lineEdit_location->text();
location = QFileDialog::getExistingDirectory(this,
tr("Select Output directory"),
location);
if (location.length() == 0) {
return;
}
ui->lineEdit_location->setText(QDir(location).canonicalPath() );
}

View File

@ -0,0 +1,74 @@
/***********************************************************************
* This file is part of Scanned Image Extract.
*
* Scanned Image Extract 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.
*
* Scanned Image Extract 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 Scanned Image Extract. If not, see <http://www.gnu.org/licenses/>
*
*
* Copyright (C) 2015, Dominik Rueß; info@dominik-ruess.de
**********************************************************************/
#ifndef SETTINGSDIALOG_H
#define SETTINGSDIALOG_H
#include <QDialog>
#include "settings.h"
#include "ui_settingsdialog.h"
namespace Ui {
class SettingsDialog;
}
class SettingsDialog : public QDialog
{
Q_OBJECT
signals:
void newValues();
public:
explicit SettingsDialog(QWidget *parent = 0);
~SettingsDialog();
double getThresh() const { return ui->doubleSpinBox_thres->value(); }
double getMaxAspect() const { return ui->doubleSpinBox_maxAspect->value(); }
QString getTargetDir() const { return ui->lineEdit_location->text(); }
QString getPrefix() const { return ui->lineEdit_prefix->text(); }
int getLevels() const { return ui->spinBox_levels->value(); }
double getMaxOverlap() const { return (double)ui->spinBox_maxOverlap->value() / 100.0; }
double getMinArea() const { return (double)ui->spinBox_minArea->value() / 100.0 ; }
double getMinAreaWithinImage() const { return (double)ui->spinBox_minAreaWithinImage->value() / 100.0 ; }
double getSplitMaxoffsetFrac() const { return (double)ui->spinBox_splitMaxOffsetFrac->value() / 100.0 ; }
double getSplitMinCornerDist() const { return (double)ui->spinBox_splitMinCornerDist->value() / 100.0 ; }
double getSplitMinLengthFrac() const { return (double)ui->spinBox_splitMinLengthFrac->value() / 100.0 ; }
double getMaxHierarchyLevel() const { return ui->spinBox_maxHierarchyLevel->value(); }
int getNumPreLoad() const { return ui->spinBox_preload->value(); }
private slots:
void setTargetDir();
void save();
void load();
void accepted();
void rejected();
private:
Ui::SettingsDialog *ui;
};
#endif // SETTINGSDIALOG_H

View File

@ -0,0 +1,439 @@
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>SettingsDialog</class>
<widget class="QDialog" name="SettingsDialog">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>565</width>
<height>583</height>
</rect>
</property>
<property name="windowTitle">
<string>Scanner Extract Settings</string>
</property>
<layout class="QVBoxLayout" name="verticalLayout">
<item>
<widget class="QTabWidget" name="tabWidget">
<property name="enabled">
<bool>true</bool>
</property>
<property name="currentIndex">
<number>0</number>
</property>
<widget class="QWidget" name="tab">
<attribute name="title">
<string>Generic Settings</string>
</attribute>
<layout class="QVBoxLayout" name="verticalLayout_2">
<item>
<widget class="QGroupBox" name="groupBox_2">
<property name="title">
<string>Generic Settings</string>
</property>
<layout class="QGridLayout" name="gridLayout_2">
<item row="1" column="2" colspan="2">
<widget class="QLineEdit" name="lineEdit_prefix"/>
</item>
<item row="2" column="0">
<widget class="QLabel" name="label_18">
<property name="text">
<string>pre-load so many images:</string>
</property>
</widget>
</item>
<item row="1" column="0">
<widget class="QLabel" name="label_15">
<property name="text">
<string>image write prefix:</string>
</property>
</widget>
</item>
<item row="0" column="2">
<widget class="QLineEdit" name="lineEdit_location"/>
</item>
<item row="0" column="3">
<widget class="QToolButton" name="toolButton_folder">
<property name="toolTip">
<string>select folder</string>
</property>
<property name="statusTip">
<string>select folder</string>
</property>
<property name="whatsThis">
<string>select folder</string>
</property>
<property name="text">
<string>...</string>
</property>
</widget>
</item>
<item row="0" column="0">
<widget class="QLabel" name="label_14">
<property name="text">
<string>write to folder:</string>
</property>
</widget>
</item>
<item row="2" column="2" colspan="2">
<layout class="QHBoxLayout" name="horizontalLayout">
<item>
<spacer name="horizontalSpacer_2">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>40</width>
<height>20</height>
</size>
</property>
</spacer>
</item>
<item>
<widget class="QSpinBox" name="spinBox_preload"/>
</item>
</layout>
</item>
</layout>
</widget>
</item>
<item>
<widget class="QGroupBox" name="groupBox_3">
<property name="title">
<string>Image Extraction Settings (simple)</string>
</property>
<layout class="QGridLayout" name="gridLayout_3">
<item row="0" column="0">
<widget class="QLabel" name="label_2">
<property name="font">
<font>
<weight>50</weight>
<italic>true</italic>
<bold>false</bold>
</font>
</property>
<property name="text">
<string>Subframe requirements</string>
</property>
<property name="scaledContents">
<bool>false</bool>
</property>
</widget>
</item>
<item row="1" column="0">
<widget class="QLabel" name="label_3">
<property name="styleSheet">
<string notr="true">margin-left:10px;</string>
</property>
<property name="text">
<string>minimum subframe area x%, of original image area:</string>
</property>
</widget>
</item>
<item row="1" column="1">
<widget class="QSpinBox" name="spinBox_minArea"/>
</item>
<item row="2" column="0">
<widget class="QLabel" name="label_4">
<property name="styleSheet">
<string notr="true">margin-left:10px</string>
</property>
<property name="text">
<string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;minimum subframe area x%, which needs to be within&lt;br/&gt;original image:&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
</property>
<property name="wordWrap">
<bool>false</bool>
</property>
</widget>
</item>
<item row="2" column="1">
<widget class="QSpinBox" name="spinBox_minAreaWithinImage"/>
</item>
<item row="3" column="0">
<widget class="QLabel" name="label_5">
<property name="styleSheet">
<string notr="true">margin-left:10px</string>
</property>
<property name="text">
<string>maximum aspect ratio:</string>
</property>
</widget>
</item>
<item row="3" column="1">
<widget class="QDoubleSpinBox" name="doubleSpinBox_maxAspect">
<property name="decimals">
<number>1</number>
</property>
<property name="minimum">
<double>1.000000000000000</double>
</property>
</widget>
</item>
<item row="4" column="0">
<widget class="QLabel" name="label_10">
<property name="styleSheet">
<string notr="true">margin-left:10px</string>
</property>
<property name="text">
<string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;if x% of the subframe is contained in another, &lt;br/&gt;choose the larger (area wise):&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
</property>
</widget>
</item>
<item row="4" column="1">
<widget class="QSpinBox" name="spinBox_maxOverlap"/>
</item>
</layout>
</widget>
</item>
<item>
<spacer name="verticalSpacer_2">
<property name="orientation">
<enum>Qt::Vertical</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>20</width>
<height>40</height>
</size>
</property>
</spacer>
</item>
</layout>
</widget>
<widget class="QWidget" name="tab_2">
<attribute name="title">
<string>Advanced</string>
</attribute>
<layout class="QVBoxLayout" name="verticalLayout_3">
<item>
<widget class="QGroupBox" name="groupBox">
<property name="title">
<string>Automated Image Extraction settings (ADVANCED)</string>
</property>
<layout class="QGridLayout" name="gridLayout">
<item row="6" column="2">
<widget class="QSpinBox" name="spinBox_splitMinLengthFrac"/>
</item>
<item row="1" column="2">
<widget class="QSpinBox" name="spinBox_levels">
<property name="minimum">
<number>1</number>
</property>
</widget>
</item>
<item row="2" column="2">
<widget class="QDoubleSpinBox" name="doubleSpinBox_thres">
<property name="decimals">
<number>1</number>
</property>
<property name="minimum">
<double>0.100000000000000</double>
</property>
</widget>
</item>
<item row="7" column="0">
<widget class="QLabel" name="label_8">
<property name="styleSheet">
<string>margin-left:10px;</string>
</property>
<property name="text">
<string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Maximum displacement from diagonal of the &lt;br/&gt;convexity defect candidates (% of diagonal):&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
</property>
</widget>
</item>
<item row="1" column="0">
<widget class="QLabel" name="label_12">
<property name="styleSheet">
<string notr="true">margin-left:10px</string>
</property>
<property name="text">
<string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;number of levels (the more the stable but also the less &lt;br/&gt;close images may be placed to each other):&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
</property>
</widget>
</item>
<item row="5" column="0">
<widget class="QLabel" name="label_6">
<property name="font">
<font>
<italic>true</italic>
</font>
</property>
<property name="text">
<string>Rectangle splitting (for diagonally overlapping subframes)</string>
</property>
</widget>
</item>
<item row="7" column="2">
<widget class="QSpinBox" name="spinBox_splitMaxOffsetFrac"/>
</item>
<item row="8" column="0">
<widget class="QLabel" name="label_9">
<property name="styleSheet">
<string>margin-left:10px;</string>
</property>
<property name="text">
<string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;overlapping minimum distance from enclosing &lt;br/&gt;rectangle corner (% of diagonal):&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
</property>
</widget>
</item>
<item row="8" column="2">
<widget class="QSpinBox" name="spinBox_splitMinCornerDist"/>
</item>
<item row="6" column="0">
<widget class="QLabel" name="label_7">
<property name="styleSheet">
<string>margin-left:10px;</string>
</property>
<property name="text">
<string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;sub contour of needs to be longer than x% of the &lt;br/&gt;diagonal length of the enclosing rectangle:&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
</property>
</widget>
</item>
<item row="0" column="0">
<widget class="QLabel" name="label_11">
<property name="font">
<font>
<italic>true</italic>
</font>
</property>
<property name="text">
<string>Pre-Processing</string>
</property>
</widget>
</item>
<item row="2" column="0">
<widget class="QLabel" name="label_13">
<property name="styleSheet">
<string notr="true">margin-left:10px</string>
</property>
<property name="text">
<string>threshold for edge image (x times the number of levels):</string>
</property>
</widget>
</item>
<item row="2" column="1">
<spacer name="horizontalSpacer">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>40</width>
<height>20</height>
</size>
</property>
</spacer>
</item>
<item row="3" column="0">
<widget class="QLabel" name="label_16">
<property name="font">
<font>
<italic>true</italic>
</font>
</property>
<property name="text">
<string>Contours</string>
</property>
</widget>
</item>
<item row="4" column="0">
<widget class="QLabel" name="label_17">
<property name="styleSheet">
<string notr="true">margin-left:10px</string>
</property>
<property name="text">
<string>Maximum contour hierarchy level</string>
</property>
</widget>
</item>
<item row="4" column="2">
<widget class="QSpinBox" name="spinBox_maxHierarchyLevel"/>
</item>
</layout>
</widget>
</item>
<item>
<spacer name="verticalSpacer">
<property name="orientation">
<enum>Qt::Vertical</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>20</width>
<height>40</height>
</size>
</property>
</spacer>
</item>
</layout>
</widget>
</widget>
</item>
<item>
<widget class="QLabel" name="label">
<property name="font">
<font>
<italic>true</italic>
</font>
</property>
<property name="styleSheet">
<string notr="true">margin-right:10px</string>
</property>
<property name="text">
<string>Note: Any changes will only apply to unvisited images or if reloaded</string>
</property>
<property name="alignment">
<set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
</property>
</widget>
</item>
<item>
<widget class="QDialogButtonBox" name="buttonBox">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<property name="standardButtons">
<set>QDialogButtonBox::Cancel|QDialogButtonBox::Ok</set>
</property>
</widget>
</item>
</layout>
</widget>
<resources/>
<connections>
<connection>
<sender>buttonBox</sender>
<signal>accepted()</signal>
<receiver>SettingsDialog</receiver>
<slot>accept()</slot>
<hints>
<hint type="sourcelabel">
<x>248</x>
<y>254</y>
</hint>
<hint type="destinationlabel">
<x>157</x>
<y>274</y>
</hint>
</hints>
</connection>
<connection>
<sender>buttonBox</sender>
<signal>rejected()</signal>
<receiver>SettingsDialog</receiver>
<slot>reject()</slot>
<hints>
<hint type="sourcelabel">
<x>316</x>
<y>260</y>
</hint>
<hint type="destinationlabel">
<x>286</x>
<y>274</y>
</hint>
</hints>
</connection>
</connections>
</ui>

View File

@ -0,0 +1,23 @@
/***********************************************************************
* This file is part of Scanned Image Extract.
*
* Scanned Image Extract 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.
*
* Scanned Image Extract 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 Scanned Image Extract. If not, see <http://www.gnu.org/licenses/>
*
*
* Copyright (C) 2015, Dominik Rueß; info@dominik-ruess.de
**********************************************************************/
#include "sourcefile.h"
int SourceFile::nextId = 0;

View File

@ -0,0 +1,57 @@
/***********************************************************************
* This file is part of Scanned Image Extract.
*
* Scanned Image Extract 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.
*
* Scanned Image Extract 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 Scanned Image Extract. If not, see <http://www.gnu.org/licenses/>
*
*
* Copyright (C) 2015, Dominik Rueß; info@dominik-ruess.de
**********************************************************************/
#ifndef SOURCEFILE_H
#define SOURCEFILE_H
#include <QFileInfo>
#include <opencv/cv.h>
#include "TargetImage.h"
typedef std::tr1::shared_ptr<QGraphicsPixmapItem> QGraphicsPixmapItemPtr;
struct SourceFile
{
QFileInfo source;
QList<TargetImagePtr> targets;
QGraphicsPixmapItemPtr image;
QImage imageOrig;
int id;
bool error;
bool changed;
SourceFile()
: id(++nextId)
, error(false)
, changed(true)
{
}
double scale;
private:
static int nextId;
};
typedef std::shared_ptr<SourceFile> SourceFilePtr;
#endif // SOURCEFILE_H

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,9 @@
<!DOCTYPE RCC><RCC version="1.0">
<qresource>
<file alias="/trans_scannedImageExtractor_de.qm">/home/ruess/Projekte/trunk/buildtest/trans_scannedImageExtractor_de.qm</file>
<file alias="/qt_de.qm">/usr/share/qt5/translations/qt_de.qm</file>
<file alias="/qtbase_de.qm">/usr/share/qt5/translations/qtbase_de.qm</file>
<file alias="/qt_help_de.qm">/usr/share/qt5/translations/qt_help_de.qm</file>
<file alias="/qtbase_de.qm">/usr/share/qt5/translations/qtbase_de.qm</file>
</qresource>
</RCC>

View File

@ -0,0 +1,23 @@
/***********************************************************************
* This file is part of Scanned Image Extract.
*
* Scanned Image Extract 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.
*
* Scanned Image Extract 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 Scanned Image Extract. If not, see <http://www.gnu.org/licenses/>
*
*
* Copyright (C) 2015, Dominik Rueß; info@dominik-ruess.de
**********************************************************************/
#include "version_scannerExtract.h"
VersionNumberScannerExtract<0,2,DR_PATCH_NUMBER> version_scannerExtract;

View File

@ -0,0 +1,38 @@
/***********************************************************************
* This file is part of Scanned Image Extract.
*
* Scanned Image Extract 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.
*
* Scanned Image Extract 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 Scanned Image Extract. If not, see <http://www.gnu.org/licenses/>
*
*
* Copyright (C) 2015, Dominik Rueß; info@dominik-ruess.de
**********************************************************************/
#ifndef VERSION_SCANNER_EXTRACT_H
#define VERSION_SCANNER_EXTRACT_H
#include "versioning.h"
#include "patchnumber.h"
template<int major, int minor, int patch>
struct VersionNumberScannerExtract : public VersionNumber<major, minor, patch>
{
void checkRequirements() const
{
}
};
extern VersionNumberScannerExtract<0, 2, DR_PATCH_NUMBER> version_scannerExtract;
#endif // VERSION_SCANNER_EXTRACT_H