Buster
6
.gitignore
vendored
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
out
|
||||||
|
debian/tmp
|
||||||
|
.vscode
|
||||||
|
build
|
||||||
|
CMakeLists.txt.user
|
||||||
|
*.autosave
|
8
.gitmodules
vendored
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
[submodule "dependencies/libpng/src"]
|
||||||
|
path = dependencies/libpng/src
|
||||||
|
url = https://github.com/glennrp/libpng.git
|
||||||
|
shallow = true
|
||||||
|
[submodule "dependencies/zlib/src"]
|
||||||
|
path = dependencies/zlib/src
|
||||||
|
url = https://github.com/madler/zlib.git
|
||||||
|
shallow = true
|
126
CMakeLists.txt
Normal file
@ -0,0 +1,126 @@
|
|||||||
|
cmake_minimum_required(VERSION 3.13.0)
|
||||||
|
|
||||||
|
# Specify Options
|
||||||
|
option(MCPI_USE_MEDIA_LAYER_PROXY "Whether To Enable The Media Layer Proxy" FALSE)
|
||||||
|
option(MCPI_SERVER_MODE "Server Mode" FALSE)
|
||||||
|
option(MCPI_HEADLESS_MODE "Headless Mode" ${MCPI_SERVER_MODE})
|
||||||
|
set(MCPI_BUILD_MODE "both" CACHE STRING "\"arm\" = Build Only Code That Must Be ARM; \"native\" = Build Architecture-Independent Code; \"both\" = Build All Code As ARM")
|
||||||
|
set_property(CACHE MCPI_BUILD_MODE PROPERTY STRINGS "both" "arm" "native")
|
||||||
|
|
||||||
|
# Configure Build Mode
|
||||||
|
if(MCPI_BUILD_MODE STREQUAL "arm")
|
||||||
|
set(USE_ARM32_TOOLCHAIN TRUE)
|
||||||
|
set(BUILD_ARM_COMPONENTS TRUE)
|
||||||
|
set(BUILD_NATIVE_COMPONENTS FALSE)
|
||||||
|
elseif(MCPI_BUILD_MODE STREQUAL "native")
|
||||||
|
set(USE_ARM32_TOOLCHAIN FALSE)
|
||||||
|
set(BUILD_ARM_COMPONENTS FALSE)
|
||||||
|
set(BUILD_NATIVE_COMPONENTS TRUE)
|
||||||
|
elseif(MCPI_BUILD_MODE STREQUAL "both")
|
||||||
|
set(USE_ARM32_TOOLCHAIN TRUE)
|
||||||
|
set(BUILD_ARM_COMPONENTS TRUE)
|
||||||
|
set(BUILD_NATIVE_COMPONENTS TRUE)
|
||||||
|
else()
|
||||||
|
message(FATAL_ERROR "Invalid Mode")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
# Use Clang By Default
|
||||||
|
if(NOT DEFINED CMAKE_C_COMPILER)
|
||||||
|
set(CMAKE_C_COMPILER "clang")
|
||||||
|
endif()
|
||||||
|
if(NOT DEFINED CMAKE_CXX_COMPILER)
|
||||||
|
set(CMAKE_CXX_COMPILER "clang++")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
# Setup ARM Cross Compilation
|
||||||
|
if(USE_ARM32_TOOLCHAIN)
|
||||||
|
include(cmake/armhf-toolchain.cmake)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
# Utility Functions
|
||||||
|
include(cmake/util.cmake)
|
||||||
|
|
||||||
|
# Specify Variant Name
|
||||||
|
set(MCPI_VARIANT_NAME "minecraft-pi-reborn")
|
||||||
|
if(MCPI_SERVER_MODE)
|
||||||
|
set(MCPI_VARIANT_NAME "${MCPI_VARIANT_NAME}-server")
|
||||||
|
else()
|
||||||
|
set(MCPI_VARIANT_NAME "${MCPI_VARIANT_NAME}-client")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
# Specify Installation Paths
|
||||||
|
set(MCPI_INSTALL_DIR "opt/${MCPI_VARIANT_NAME}")
|
||||||
|
set(MCPI_LIB_DIR "${MCPI_INSTALL_DIR}/lib")
|
||||||
|
set(MCPI_FALLBACK_LIB_DIR "${MCPI_INSTALL_DIR}/fallback-lib")
|
||||||
|
|
||||||
|
# Optimizations
|
||||||
|
if(NOT CMAKE_BUILD_TYPE)
|
||||||
|
set(CMAKE_BUILD_TYPE "Release")
|
||||||
|
endif()
|
||||||
|
if(CMAKE_BUILD_TYPE STREQUAL "Release")
|
||||||
|
add_compile_options(-O3)
|
||||||
|
else()
|
||||||
|
add_compile_options(-g)
|
||||||
|
add_definitions(-DDEBUG)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
# Start Project
|
||||||
|
project(minecraft-pi-reborn)
|
||||||
|
|
||||||
|
# Specify Default Installation Prefix
|
||||||
|
if(CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT)
|
||||||
|
set(CMAKE_INSTALL_PREFIX "/" CACHE PATH "" FORCE)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
# Use LLD When Using Clang
|
||||||
|
if(CMAKE_C_COMPILER_ID STREQUAL "Clang")
|
||||||
|
add_link_options("-fuse-ld=lld")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
# PIC
|
||||||
|
set(CMAKE_POSITION_INDEPENDENT_CODE TRUE)
|
||||||
|
|
||||||
|
# Buld LibPNG + ZLib + Download Minecraft: Pi Edition
|
||||||
|
if(BUILD_ARM_COMPONENTS)
|
||||||
|
add_subdirectory(dependencies)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
# Warnings
|
||||||
|
add_compile_options(-Wall -Wextra -Werror -Wpointer-arith -Wshadow -Wnull-dereference)
|
||||||
|
add_link_options(-Wl,--no-undefined)
|
||||||
|
add_definitions(-D_GNU_SOURCE)
|
||||||
|
set(CMAKE_C_STANDARD 99)
|
||||||
|
set(CMAKE_CXX_STANDARD 11)
|
||||||
|
|
||||||
|
# Specify Constants
|
||||||
|
if(MCPI_SERVER_MODE)
|
||||||
|
add_definitions(-DMCPI_SERVER_MODE)
|
||||||
|
endif()
|
||||||
|
if(MCPI_HEADLESS_MODE)
|
||||||
|
add_definitions(-DMCPI_HEADLESS_MODE)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
# Version
|
||||||
|
file(STRINGS VERSION VERSION)
|
||||||
|
add_definitions(-DVERSION="${VERSION}")
|
||||||
|
|
||||||
|
# Build libreborn
|
||||||
|
add_subdirectory(libreborn)
|
||||||
|
|
||||||
|
# Build Media Layer
|
||||||
|
add_subdirectory(media-layer)
|
||||||
|
|
||||||
|
# Build Launcher
|
||||||
|
if(BUILD_NATIVE_COMPONENTS)
|
||||||
|
add_subdirectory(launcher)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
# Include Symbols
|
||||||
|
if(BUILD_ARM_COMPONENTS)
|
||||||
|
add_subdirectory(symbols)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
# Build Mods
|
||||||
|
if(BUILD_ARM_COMPONENTS)
|
||||||
|
add_subdirectory(mods)
|
||||||
|
endif()
|
21
Dockerfile
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
FROM debian:bullseye-slim
|
||||||
|
|
||||||
|
# Copy DEB
|
||||||
|
ADD ./out/minecraft-pi-reborn-server_*_amd64.deb /root
|
||||||
|
|
||||||
|
# Install
|
||||||
|
RUN \
|
||||||
|
apt-get update && \
|
||||||
|
apt-get install -y tini && \
|
||||||
|
(dpkg -i /root/*.deb || :) && \
|
||||||
|
apt-get --fix-broken install -y && \
|
||||||
|
rm -f /root/*.deb && \
|
||||||
|
rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
|
# Setup Working Directory
|
||||||
|
RUN mkdir /data
|
||||||
|
WORKDIR /data
|
||||||
|
|
||||||
|
# Setup Entrypoint
|
||||||
|
ENTRYPOINT ["/usr/bin/tini", "--"]
|
||||||
|
CMD ["minecraft-pi-reborn-server"]
|
35
Jenkinsfile
vendored
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
pipeline {
|
||||||
|
agent none
|
||||||
|
stages {
|
||||||
|
stage('Debian Bullseye') {
|
||||||
|
agent {
|
||||||
|
docker {
|
||||||
|
image 'debian:bullseye'
|
||||||
|
args '-v /var/run/docker.sock:/var/run/docker.sock'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
stages {
|
||||||
|
stage('Build') {
|
||||||
|
steps {
|
||||||
|
sh './scripts/ci/run.sh'
|
||||||
|
}
|
||||||
|
post {
|
||||||
|
success {
|
||||||
|
archiveArtifacts artifacts: 'out/*.deb', fingerprint: true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
stage('Publish') {
|
||||||
|
steps {
|
||||||
|
sh 'apt-get update && apt-get install -y docker.io'
|
||||||
|
sh 'docker build --no-cache --tag thebrokenrail/minecraft-pi-reborn-server .'
|
||||||
|
withCredentials([usernamePassword(credentialsId: 'docker_hub_login', usernameVariable: 'DOCKER_HUB_USERNAME', passwordVariable: 'DOCKER_HUB_PASSWORD')]) {
|
||||||
|
sh 'docker login -u "${DOCKER_HUB_USERNAME}" -p "${DOCKER_HUB_PASSWORD}"'
|
||||||
|
}
|
||||||
|
sh 'docker push thebrokenrail/minecraft-pi-reborn-server'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
21
LICENSE
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
MIT License
|
||||||
|
|
||||||
|
Copyright (c) 2021 TheBrokenRail
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
|
in the Software without restriction, including without limitation the rights
|
||||||
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
copies of the Software, and to permit persons to whom the Software is
|
||||||
|
furnished to do so, subject to the following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be included in all
|
||||||
|
copies or substantial portions of the Software.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||||
|
SOFTWARE.
|
9
README.md
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
<p align="center">
|
||||||
|
<img alt="Start Screen" src="images/start.png">
|
||||||
|
</p>
|
||||||
|
|
||||||
|
# Minecraft: Pi Edition: Reborn
|
||||||
|
Minecraft: Pi Edition Modding Project
|
||||||
|
|
||||||
|
## Documentation
|
||||||
|
[View Documentation](docs/README.md)
|
7
cmake/amd64-toolchain.cmake
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
# Compile For x86_64
|
||||||
|
include("${CMAKE_CURRENT_LIST_DIR}/base-toolchain.cmake")
|
||||||
|
# Use x86_64 Cross-Compiler
|
||||||
|
setup_toolchain("x86_64-linux-gnu")
|
||||||
|
# Details
|
||||||
|
set(CMAKE_SYSTEM_NAME "Linux")
|
||||||
|
set(CMAKE_SYSTEM_PROCESSOR "x86_64")
|
7
cmake/arm64-toolchain.cmake
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
# Compile For ARM64
|
||||||
|
include("${CMAKE_CURRENT_LIST_DIR}/base-toolchain.cmake")
|
||||||
|
# Use ARM64 Cross-Compiler
|
||||||
|
setup_toolchain("aarch64-linux-gnu")
|
||||||
|
# Details
|
||||||
|
set(CMAKE_SYSTEM_NAME "Linux")
|
||||||
|
set(CMAKE_SYSTEM_PROCESSOR "aarch64")
|
7
cmake/armhf-toolchain.cmake
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
# Compile For ARM
|
||||||
|
include("${CMAKE_CURRENT_LIST_DIR}/base-toolchain.cmake")
|
||||||
|
# Use ARM Cross-Compiler
|
||||||
|
setup_toolchain("arm-linux-gnueabihf")
|
||||||
|
# Details
|
||||||
|
set(CMAKE_SYSTEM_NAME "Linux")
|
||||||
|
set(CMAKE_SYSTEM_PROCESSOR "arm")
|
122
cmake/base-toolchain.cmake
Normal file
@ -0,0 +1,122 @@
|
|||||||
|
# Sanity Check Return
|
||||||
|
function(sanity_check_return ret)
|
||||||
|
if(NOT ret EQUAL "0")
|
||||||
|
message(FATAL_ERROR "Process Failed")
|
||||||
|
endif()
|
||||||
|
endfunction()
|
||||||
|
|
||||||
|
# Get Host Architecture
|
||||||
|
find_program(UNAME uname /bin /usr/bin /usr/local/bin REQUIRED)
|
||||||
|
execute_process(
|
||||||
|
COMMAND "${UNAME}" "-m"
|
||||||
|
OUTPUT_VARIABLE HOST_ARCHITECTURE
|
||||||
|
ERROR_QUIET
|
||||||
|
OUTPUT_STRIP_TRAILING_WHITESPACE
|
||||||
|
RESULT_VARIABLE ret
|
||||||
|
)
|
||||||
|
sanity_check_return("${ret}")
|
||||||
|
|
||||||
|
# Get Include Directories
|
||||||
|
function(get_include_dirs target compiler result)
|
||||||
|
# Get Tool Name
|
||||||
|
set(tool "cc1")
|
||||||
|
if(compiler MATCHES "^.*g\\+\\+$")
|
||||||
|
set(tool "cc1plus")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
# Get Tool Path
|
||||||
|
execute_process(
|
||||||
|
COMMAND "${compiler}" "-print-prog-name=${tool}"
|
||||||
|
ERROR_QUIET
|
||||||
|
OUTPUT_VARIABLE tool
|
||||||
|
OUTPUT_STRIP_TRAILING_WHITESPACE
|
||||||
|
RESULT_VARIABLE ret
|
||||||
|
)
|
||||||
|
sanity_check_return("${ret}")
|
||||||
|
|
||||||
|
# Run Tool To Get Include Path
|
||||||
|
set(tool_output "")
|
||||||
|
execute_process(
|
||||||
|
COMMAND "${tool}" "-quiet" "-v" "-imultiarch" "${target}"
|
||||||
|
OUTPUT_QUIET
|
||||||
|
ERROR_VARIABLE tool_output
|
||||||
|
ERROR_STRIP_TRAILING_WHITESPACE
|
||||||
|
INPUT_FILE "/dev/null"
|
||||||
|
RESULT_VARIABLE ret
|
||||||
|
)
|
||||||
|
sanity_check_return("${ret}")
|
||||||
|
string(REPLACE "\n" ";" tool_output "${tool_output}")
|
||||||
|
|
||||||
|
# Loop
|
||||||
|
set(parsing_include_section FALSE)
|
||||||
|
foreach(line IN LISTS tool_output)
|
||||||
|
# Check Include Section Status
|
||||||
|
if(parsing_include_section)
|
||||||
|
# Check If Include Section Is Over
|
||||||
|
if(line MATCHES "^End of search list.$")
|
||||||
|
# Starting Include Section
|
||||||
|
set(parsing_include_section FALSE)
|
||||||
|
break()
|
||||||
|
else()
|
||||||
|
# Parsing Include Section
|
||||||
|
if(line MATCHES "^ .*$")
|
||||||
|
# Strip Line
|
||||||
|
string(STRIP "${line}" line)
|
||||||
|
# Add To List
|
||||||
|
list(APPEND "${result}" "${line}")
|
||||||
|
endif()
|
||||||
|
endif()
|
||||||
|
else()
|
||||||
|
# Check If Include Section Is Starting
|
||||||
|
if(line MATCHES "^#include <\\.\\.\\.> search starts here:$")
|
||||||
|
# Starting Include Section
|
||||||
|
set(parsing_include_section TRUE)
|
||||||
|
endif()
|
||||||
|
endif()
|
||||||
|
endforeach()
|
||||||
|
|
||||||
|
# Return
|
||||||
|
set("${result}" "${${result}}" PARENT_SCOPE)
|
||||||
|
endfunction()
|
||||||
|
|
||||||
|
# Setup Include Directories
|
||||||
|
function(setup_include_dirs compiler target result)
|
||||||
|
# Get Full Compiler
|
||||||
|
set(full_compiler "${target}-${compiler}")
|
||||||
|
|
||||||
|
# Get Include Directories
|
||||||
|
set(include_dirs "")
|
||||||
|
get_include_dirs("${target}" "${full_compiler}" include_dirs)
|
||||||
|
|
||||||
|
# Loop
|
||||||
|
set(flags "")
|
||||||
|
foreach(include_dir IN LISTS include_dirs)
|
||||||
|
set(flags "${flags} -isystem ${include_dir}")
|
||||||
|
endforeach()
|
||||||
|
|
||||||
|
# Return
|
||||||
|
set("${result}" "${${result}} ${flags}" PARENT_SCOPE)
|
||||||
|
endfunction()
|
||||||
|
|
||||||
|
# Setup Toolchain
|
||||||
|
macro(setup_toolchain target)
|
||||||
|
# Use ARM Cross-Compiler
|
||||||
|
set(CMAKE_C_COMPILER "clang")
|
||||||
|
set(CMAKE_C_COMPILER_TARGET "${target}")
|
||||||
|
set(CMAKE_CXX_COMPILER "clang++")
|
||||||
|
set(CMAKE_CXX_COMPILER_TARGET "${target}")
|
||||||
|
set(CMAKE_FIND_ROOT_PATH "/usr/${target}" "/usr/lib/${target}")
|
||||||
|
# Flags
|
||||||
|
string(CONCAT NEW_FLAGS
|
||||||
|
"-nostdinc "
|
||||||
|
"-nostdinc++ "
|
||||||
|
"-Wno-unused-command-line-argument"
|
||||||
|
)
|
||||||
|
set(CMAKE_C_FLAGS_INIT "${CMAKE_C_FLAGS_INIT} ${NEW_FLAGS}")
|
||||||
|
set(CMAKE_CXX_FLAGS_INIT "${CMAKE_CXX_FLAGS_INIT} ${NEW_FLAGS}")
|
||||||
|
# Include Directories
|
||||||
|
setup_include_dirs("gcc" "${target}" CMAKE_C_FLAGS_INIT)
|
||||||
|
setup_include_dirs("g++" "${target}" CMAKE_CXX_FLAGS_INIT)
|
||||||
|
# Extra
|
||||||
|
set(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER)
|
||||||
|
endmacro()
|
9
cmake/i686-toolchain.cmake
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
# Warning
|
||||||
|
message(WARNING "i686 Builds Are Unsupported, Proceed At Your Own Risk")
|
||||||
|
# Compile For i686
|
||||||
|
include("${CMAKE_CURRENT_LIST_DIR}/base-toolchain.cmake")
|
||||||
|
# Use i686 Cross-Compiler
|
||||||
|
setup_toolchain("i686-linux-gnu")
|
||||||
|
# Details
|
||||||
|
set(CMAKE_SYSTEM_NAME "Linux")
|
||||||
|
set(CMAKE_SYSTEM_PROCESSOR "i686")
|
20
cmake/util.cmake
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
# Symlink Function
|
||||||
|
function(install_symlink target link)
|
||||||
|
install(CODE "\
|
||||||
|
# Prepare\n \
|
||||||
|
set(file \"\$ENV{DESTDIR}\${CMAKE_INSTALL_PREFIX}/${link}\")\n \
|
||||||
|
\
|
||||||
|
# Create Directory\n \
|
||||||
|
get_filename_component(dir \"\${file}\" DIRECTORY)\n \
|
||||||
|
file(MAKE_DIRECTORY \${dir})\n \
|
||||||
|
\
|
||||||
|
# Create Symlink\n \
|
||||||
|
if(NOT EXISTS \"\${file}\")\n \
|
||||||
|
execute_process(COMMAND \${CMAKE_COMMAND} -E create_symlink ${target} \"\${file}\")\n \
|
||||||
|
message(\"-- Installing: \${file}\")\n \
|
||||||
|
else()\n \
|
||||||
|
message(\"-- Up-to-date: \${file}\")\n \
|
||||||
|
endif() \
|
||||||
|
")
|
||||||
|
endfunction()
|
||||||
|
|
7
debian/client-amd64
vendored
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
Package: minecraft-pi-reborn-client
|
||||||
|
Version: ${VERSION}
|
||||||
|
Maintainer: TheBrokenRail <connor24nolan@live.com>
|
||||||
|
Description: Fun with Blocks
|
||||||
|
Homepage: https://www.minecraft.net/en-us/edition/pi
|
||||||
|
Architecture: amd64
|
||||||
|
Depends: libc6, libstdc++6, libc6-armhf-cross, libstdc++6-armhf-cross, zenity, libgles1, libegl1, libglfw3 | libglfw3-wayland, libfreeimage3, libopenal1, qemu-user-static
|
7
debian/client-arm64
vendored
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
Package: minecraft-pi-reborn-client
|
||||||
|
Version: ${VERSION}
|
||||||
|
Maintainer: TheBrokenRail <connor24nolan@live.com>
|
||||||
|
Description: Fun with Blocks
|
||||||
|
Homepage: https://www.minecraft.net/en-us/edition/pi
|
||||||
|
Architecture: arm64
|
||||||
|
Depends: libc6, libstdc++6, libc6:armhf, libstdc++6:armhf, zenity, libgles1, libegl1, libglfw3 | libglfw3-wayland, libfreeimage3, libopenal1
|
7
debian/client-armhf
vendored
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
Package: minecraft-pi-reborn-client
|
||||||
|
Version: ${VERSION}
|
||||||
|
Maintainer: TheBrokenRail <connor24nolan@live.com>
|
||||||
|
Description: Fun with Blocks
|
||||||
|
Homepage: https://www.minecraft.net/en-us/edition/pi
|
||||||
|
Architecture: armhf
|
||||||
|
Depends: libc6, libstdc++6, zenity, libgles1, libegl1, libglfw3 | libglfw3-wayland, libfreeimage3, libopenal1
|
7
debian/server-amd64
vendored
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
Package: minecraft-pi-reborn-server
|
||||||
|
Version: ${VERSION}
|
||||||
|
Maintainer: TheBrokenRail <connor24nolan@live.com>
|
||||||
|
Description: Fun with Blocks
|
||||||
|
Homepage: https://www.minecraft.net/en-us/edition/pi
|
||||||
|
Architecture: amd64
|
||||||
|
Depends: libc6, libstdc++6, libc6-armhf-cross, libstdc++6-armhf-cross, qemu-user-static
|
7
debian/server-arm64
vendored
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
Package: minecraft-pi-reborn-server
|
||||||
|
Version: ${VERSION}
|
||||||
|
Maintainer: TheBrokenRail <connor24nolan@live.com>
|
||||||
|
Description: Fun with Blocks
|
||||||
|
Homepage: https://www.minecraft.net/en-us/edition/pi
|
||||||
|
Architecture: arm64
|
||||||
|
Depends: libc6, libstdc++6, libc6:armhf, libstdc++6:armhf
|
7
debian/server-armhf
vendored
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
Package: minecraft-pi-reborn-server
|
||||||
|
Version: ${VERSION}
|
||||||
|
Maintainer: TheBrokenRail <connor24nolan@live.com>
|
||||||
|
Description: Fun with Blocks
|
||||||
|
Homepage: https://www.minecraft.net/en-us/edition/pi
|
||||||
|
Architecture: armhf
|
||||||
|
Depends: libc6, libstdc++6
|
8
dependencies/CMakeLists.txt
vendored
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
project(dependencies)
|
||||||
|
|
||||||
|
# ZLib
|
||||||
|
add_subdirectory(zlib)
|
||||||
|
# LibPNG
|
||||||
|
add_subdirectory(libpng)
|
||||||
|
# Minecraft: Pi Edition
|
||||||
|
add_subdirectory(minecraft-pi)
|
20
dependencies/libpng/CMakeLists.txt
vendored
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
project(libpng)
|
||||||
|
|
||||||
|
# Silence Warnings
|
||||||
|
add_compile_options(-w)
|
||||||
|
|
||||||
|
## LibPNG
|
||||||
|
|
||||||
|
# Download
|
||||||
|
set(ZLIB_LIBRARY zlibstatic)
|
||||||
|
set(ZLIB_INCLUDE_DIR "${CMAKE_CURRENT_SOURCE_DIR}/../zlib/src" "${CMAKE_CURRENT_BINARY_DIR}/../zlib/src")
|
||||||
|
set(CMAKE_POLICY_DEFAULT_CMP0054 OLD) # Silence Warning
|
||||||
|
add_subdirectory(src EXCLUDE_FROM_ALL)
|
||||||
|
set(CMAKE_POLICY_DEFAULT_CMP0054 NEW) # Re-Enable New Behavior
|
||||||
|
set_target_properties(png12 PROPERTIES LINK_FLAGS "-Wl,--version-script=${CMAKE_CURRENT_SOURCE_DIR}/libpng.vers") # Use Symbol Versioning
|
||||||
|
set_target_properties(png12 PROPERTIES DEBUG_POSTFIX "") # Fix LibPNG Suffix In Debug Mode
|
||||||
|
|
||||||
|
# Ensure Build
|
||||||
|
add_custom_target(png12-build ALL DEPENDS png12)
|
||||||
|
# Install
|
||||||
|
install(TARGETS png12 DESTINATION "${MCPI_LIB_DIR}")
|
208
dependencies/libpng/libpng.vers
vendored
Normal file
@ -0,0 +1,208 @@
|
|||||||
|
PNG12_0 {global:
|
||||||
|
png_libpng_ver;
|
||||||
|
png_pass_start;
|
||||||
|
png_pass_inc;
|
||||||
|
png_pass_ystart;
|
||||||
|
png_pass_yinc;
|
||||||
|
png_pass_mask;
|
||||||
|
png_pass_dsp_mask;
|
||||||
|
png_access_version_number;
|
||||||
|
png_set_sig_bytes;
|
||||||
|
png_sig_cmp;
|
||||||
|
png_check_sig;
|
||||||
|
png_create_read_struct;
|
||||||
|
png_create_write_struct;
|
||||||
|
png_get_compression_buffer_size;
|
||||||
|
png_set_compression_buffer_size;
|
||||||
|
png_reset_zstream;
|
||||||
|
png_create_read_struct_2;
|
||||||
|
png_create_write_struct_2;
|
||||||
|
png_write_chunk;
|
||||||
|
png_write_chunk_start;
|
||||||
|
png_write_chunk_data;
|
||||||
|
png_write_chunk_end;
|
||||||
|
png_create_info_struct;
|
||||||
|
png_info_init;
|
||||||
|
png_info_init_3;
|
||||||
|
png_write_info_before_PLTE;
|
||||||
|
png_write_info;
|
||||||
|
png_read_info;
|
||||||
|
png_convert_to_rfc1123;
|
||||||
|
png_convert_from_struct_tm;
|
||||||
|
png_convert_from_time_t;
|
||||||
|
png_set_expand;
|
||||||
|
png_set_expand_gray_1_2_4_to_8;
|
||||||
|
png_set_palette_to_rgb;
|
||||||
|
png_set_tRNS_to_alpha;
|
||||||
|
png_set_gray_1_2_4_to_8;
|
||||||
|
png_set_bgr;
|
||||||
|
png_set_gray_to_rgb;
|
||||||
|
png_set_rgb_to_gray;
|
||||||
|
png_set_rgb_to_gray_fixed;
|
||||||
|
png_get_rgb_to_gray_status;
|
||||||
|
png_build_grayscale_palette;
|
||||||
|
png_set_strip_alpha;
|
||||||
|
png_set_swap_alpha;
|
||||||
|
png_set_invert_alpha;
|
||||||
|
png_set_filler;
|
||||||
|
png_set_add_alpha;
|
||||||
|
png_set_swap;
|
||||||
|
png_set_packing;
|
||||||
|
png_set_packswap;
|
||||||
|
png_set_shift;
|
||||||
|
png_set_interlace_handling;
|
||||||
|
png_set_invert_mono;
|
||||||
|
png_set_background;
|
||||||
|
png_set_strip_16;
|
||||||
|
png_set_dither;
|
||||||
|
png_set_gamma;
|
||||||
|
png_permit_empty_plte;
|
||||||
|
png_set_flush;
|
||||||
|
png_write_flush;
|
||||||
|
png_start_read_image;
|
||||||
|
png_read_update_info;
|
||||||
|
png_read_rows;
|
||||||
|
png_read_row;
|
||||||
|
png_read_image;
|
||||||
|
png_write_row;
|
||||||
|
png_write_rows;
|
||||||
|
png_write_image;
|
||||||
|
png_write_end;
|
||||||
|
png_read_end;
|
||||||
|
png_destroy_info_struct;
|
||||||
|
png_destroy_read_struct;
|
||||||
|
png_destroy_write_struct;
|
||||||
|
png_set_crc_action;
|
||||||
|
png_set_filter;
|
||||||
|
png_set_filter_heuristics;
|
||||||
|
png_set_compression_level;
|
||||||
|
png_set_compression_mem_level;
|
||||||
|
png_set_compression_strategy;
|
||||||
|
png_set_compression_window_bits;
|
||||||
|
png_set_compression_method;
|
||||||
|
png_init_io;
|
||||||
|
png_set_error_fn;
|
||||||
|
png_get_error_ptr;
|
||||||
|
png_set_write_fn;
|
||||||
|
png_set_read_fn;
|
||||||
|
png_get_io_ptr;
|
||||||
|
png_set_read_status_fn;
|
||||||
|
png_set_write_status_fn;
|
||||||
|
png_set_mem_fn;
|
||||||
|
png_get_mem_ptr;
|
||||||
|
png_set_read_user_transform_fn;
|
||||||
|
png_set_write_user_transform_fn;
|
||||||
|
png_set_user_transform_info;
|
||||||
|
png_get_user_transform_ptr;
|
||||||
|
png_set_read_user_chunk_fn;
|
||||||
|
png_get_user_chunk_ptr;
|
||||||
|
png_set_progressive_read_fn;
|
||||||
|
png_get_progressive_ptr;
|
||||||
|
png_process_data;
|
||||||
|
png_progressive_combine_row;
|
||||||
|
png_malloc;
|
||||||
|
png_malloc_warn;
|
||||||
|
png_free;
|
||||||
|
png_free_data;
|
||||||
|
png_data_freer;
|
||||||
|
png_malloc_default;
|
||||||
|
png_free_default;
|
||||||
|
png_memcpy_check;
|
||||||
|
png_memset_check;
|
||||||
|
png_error;
|
||||||
|
png_chunk_error;
|
||||||
|
png_warning;
|
||||||
|
png_chunk_warning;
|
||||||
|
png_get_valid;
|
||||||
|
png_get_rowbytes;
|
||||||
|
png_get_rows;
|
||||||
|
png_set_rows;
|
||||||
|
png_get_channels;
|
||||||
|
png_get_image_width;
|
||||||
|
png_get_image_height;
|
||||||
|
png_get_bit_depth;
|
||||||
|
png_get_color_type;
|
||||||
|
png_get_filter_type;
|
||||||
|
png_get_interlace_type;
|
||||||
|
png_get_compression_type;
|
||||||
|
png_get_pixels_per_meter;
|
||||||
|
png_get_x_pixels_per_meter;
|
||||||
|
png_get_y_pixels_per_meter;
|
||||||
|
png_get_pixel_aspect_ratio;
|
||||||
|
png_get_x_offset_pixels;
|
||||||
|
png_get_y_offset_pixels;
|
||||||
|
png_get_x_offset_microns;
|
||||||
|
png_get_y_offset_microns;
|
||||||
|
png_get_signature;
|
||||||
|
png_get_bKGD;
|
||||||
|
png_set_bKGD;
|
||||||
|
png_get_cHRM;
|
||||||
|
png_get_cHRM_fixed;
|
||||||
|
png_set_cHRM;
|
||||||
|
png_set_cHRM_fixed;
|
||||||
|
png_get_gAMA;
|
||||||
|
png_get_gAMA_fixed;
|
||||||
|
png_set_gAMA;
|
||||||
|
png_set_gAMA_fixed;
|
||||||
|
png_get_hIST;
|
||||||
|
png_set_hIST;
|
||||||
|
png_get_IHDR;
|
||||||
|
png_set_IHDR;
|
||||||
|
png_get_oFFs;
|
||||||
|
png_set_oFFs;
|
||||||
|
png_get_pCAL;
|
||||||
|
png_set_pCAL;
|
||||||
|
png_get_pHYs;
|
||||||
|
png_set_pHYs;
|
||||||
|
png_get_PLTE;
|
||||||
|
png_set_PLTE;
|
||||||
|
png_get_sBIT;
|
||||||
|
png_set_sBIT;
|
||||||
|
png_get_sRGB;
|
||||||
|
png_set_sRGB;
|
||||||
|
png_set_sRGB_gAMA_and_cHRM;
|
||||||
|
png_get_iCCP;
|
||||||
|
png_set_iCCP;
|
||||||
|
png_get_sPLT;
|
||||||
|
png_set_sPLT;
|
||||||
|
png_get_text;
|
||||||
|
png_set_text;
|
||||||
|
png_get_tIME;
|
||||||
|
png_set_tIME;
|
||||||
|
png_get_tRNS;
|
||||||
|
png_set_tRNS;
|
||||||
|
png_get_sCAL;
|
||||||
|
png_set_sCAL;
|
||||||
|
png_set_keep_unknown_chunks;
|
||||||
|
png_handle_as_unknown;
|
||||||
|
png_set_unknown_chunks;
|
||||||
|
png_set_unknown_chunk_location;
|
||||||
|
png_get_unknown_chunks;
|
||||||
|
png_set_invalid;
|
||||||
|
png_read_png;
|
||||||
|
png_write_png;
|
||||||
|
png_get_copyright;
|
||||||
|
png_get_header_ver;
|
||||||
|
png_get_header_version;
|
||||||
|
png_get_libpng_ver;
|
||||||
|
png_permit_mng_features;
|
||||||
|
png_get_mmx_flagmask;
|
||||||
|
png_get_asm_flagmask;
|
||||||
|
png_get_asm_flags;
|
||||||
|
png_get_mmx_bitdepth_threshold;
|
||||||
|
png_get_mmx_rowbytes_threshold;
|
||||||
|
png_set_asm_flags;
|
||||||
|
png_set_mmx_thresholds;
|
||||||
|
png_mmx_support;
|
||||||
|
png_set_strip_error_numbers;
|
||||||
|
png_set_user_limits;
|
||||||
|
png_get_user_width_max;
|
||||||
|
png_get_user_height_max;
|
||||||
|
png_get_uint_32;
|
||||||
|
png_get_uint_16;
|
||||||
|
png_get_int_32;
|
||||||
|
png_get_uint_31;
|
||||||
|
png_save_uint_32;
|
||||||
|
png_save_int_32;
|
||||||
|
png_save_uint_16;
|
||||||
|
local: *; };
|
58
dependencies/libpng/src/ANNOUNCE
vendored
Normal file
@ -0,0 +1,58 @@
|
|||||||
|
|
||||||
|
Libpng 1.2.59 - September 28, 2017
|
||||||
|
|
||||||
|
This is a public release of libpng, intended for use in production codes.
|
||||||
|
|
||||||
|
Files available for download:
|
||||||
|
|
||||||
|
Source files with LF line endings (for Unix/Linux) and with a
|
||||||
|
"configure" script
|
||||||
|
|
||||||
|
libpng-1.2.59.tar.xz (LZMA-compressed, recommended)
|
||||||
|
libpng-1.2.59.tar.gz
|
||||||
|
|
||||||
|
Source files with LF line endings (for Unix/Linux) without the
|
||||||
|
"configure" script
|
||||||
|
|
||||||
|
libpng-1.2.59-no-config.tar.xz (LZMA-compressed, recommended)
|
||||||
|
libpng-1.2.59-no-config.tar.gz
|
||||||
|
|
||||||
|
Source files with CRLF line endings (for Windows), without the
|
||||||
|
"configure" script
|
||||||
|
|
||||||
|
lpng1259.zip
|
||||||
|
lpng1259.7z
|
||||||
|
|
||||||
|
Project files
|
||||||
|
|
||||||
|
libpng-1.2.59-project-netware.zip
|
||||||
|
libpng-1.2.59-project-wince.zip
|
||||||
|
|
||||||
|
Other information:
|
||||||
|
|
||||||
|
libpng-1.2.59-README.txt
|
||||||
|
libpng-1.2.59-KNOWNBUGS.txt
|
||||||
|
libpng-1.2.59-LICENSE.txt
|
||||||
|
libpng-1.2.59-Y2K-compliance.txt
|
||||||
|
libpng-1.2.59-[previous version]-diff.txt
|
||||||
|
libpng-1.2.59-*.asc (armored detached GPG signatures)
|
||||||
|
|
||||||
|
Changes since the last public release (1.2.58):
|
||||||
|
|
||||||
|
version 1.2.59 [September 28, 2017]
|
||||||
|
Added PNGMINUS_UNUSED macro to contrib/pngminus/p*.c and added missing
|
||||||
|
parenthesis in contrib/pngminus/pnm2png.c (bug report by Christian Hesse).
|
||||||
|
Compute a larger limit on IDAT because some applications write a deflate
|
||||||
|
buffer for each row (Bug report by Andrew Church).
|
||||||
|
Initialize memory allocated by png_inflate to zero, using memset, to
|
||||||
|
stop an oss-fuzz "use of uninitialized value" detection in png_set_text_2()
|
||||||
|
due to truncated iTXt or zTXt chunk.
|
||||||
|
|
||||||
|
Send comments/corrections/commendations to png-mng-implement at lists.sf.net
|
||||||
|
(subscription required; visit
|
||||||
|
https://lists.sourceforge.net/lists/listinfo/png-mng-implement
|
||||||
|
to subscribe)
|
||||||
|
or to glennrp at users.sourceforge.net
|
||||||
|
|
||||||
|
Glenn R-P
|
||||||
|
#endif
|
2967
dependencies/libpng/src/CHANGES
vendored
Normal file
284
dependencies/libpng/src/CMakeLists.txt
vendored
Normal file
@ -0,0 +1,284 @@
|
|||||||
|
cmake_minimum_required(VERSION 2.4.3)
|
||||||
|
set(CMAKE_ALLOW_LOOSE_LOOP_CONSTRUCTS true)
|
||||||
|
|
||||||
|
if(UNIX AND NOT DEFINED CMAKE_BUILD_TYPE)
|
||||||
|
set(CMAKE_BUILD_TYPE "RelWithDebInfo" CACHE STRING
|
||||||
|
"Choose the type of build, options are:
|
||||||
|
None(CMAKE_CXX_FLAGS or CMAKE_C_FLAGS used)
|
||||||
|
Debug
|
||||||
|
Release
|
||||||
|
RelWithDebInfo
|
||||||
|
MinSizeRel.")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
project(libpng C)
|
||||||
|
enable_testing()
|
||||||
|
|
||||||
|
# Copyright (C) 2007-2010 Glenn Randers-Pehrson
|
||||||
|
|
||||||
|
# This code is released under the libpng license.
|
||||||
|
# For conditions of distribution and use, see the disclaimer
|
||||||
|
# and license in png.h
|
||||||
|
|
||||||
|
set(PNGLIB_MAJOR 1)
|
||||||
|
set(PNGLIB_MINOR 2)
|
||||||
|
set(PNGLIB_RELEASE 59)
|
||||||
|
set(PNGLIB_NAME libpng${PNGLIB_MAJOR}${PNGLIB_MINOR})
|
||||||
|
set(PNGLIB_VERSION ${PNGLIB_MAJOR}.${PNGLIB_MINOR}.${PNGLIB_RELEASE})
|
||||||
|
|
||||||
|
# needed packages
|
||||||
|
find_package(ZLIB REQUIRED)
|
||||||
|
include_directories(${ZLIB_INCLUDE_DIR})
|
||||||
|
|
||||||
|
if(NOT WIN32)
|
||||||
|
find_library(M_LIBRARY
|
||||||
|
NAMES m
|
||||||
|
PATHS /usr/lib /usr/local/lib
|
||||||
|
)
|
||||||
|
if(NOT M_LIBRARY)
|
||||||
|
message(STATUS
|
||||||
|
"math library 'libm' not found - floating point support disabled")
|
||||||
|
endif()
|
||||||
|
else()
|
||||||
|
# not needed on windows
|
||||||
|
set(M_LIBRARY "")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
# COMMAND LINE OPTIONS
|
||||||
|
if(DEFINED PNG_SHARED)
|
||||||
|
option(PNG_SHARED "Build shared lib" ${PNG_SHARED})
|
||||||
|
else()
|
||||||
|
option(PNG_SHARED "Build shared lib" ON)
|
||||||
|
endif()
|
||||||
|
if(DEFINED PNG_STATIC)
|
||||||
|
option(PNG_STATIC "Build static lib" ${PNG_STATIC})
|
||||||
|
else()
|
||||||
|
option(PNG_STATIC "Build static lib" ON)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(MINGW)
|
||||||
|
option(PNG_TESTS "Build pngtest" NO)
|
||||||
|
else()
|
||||||
|
option(PNG_TESTS "Build pngtest" YES)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
option(PNG_NO_CONSOLE_IO "FIXME" YES)
|
||||||
|
option(PNG_NO_STDIO "FIXME" YES)
|
||||||
|
option(PNG_DEBUG "Build with debug output" NO)
|
||||||
|
option(PNGARG "FIXME" YES)
|
||||||
|
#TODO:
|
||||||
|
# PNG_CONSOLE_IO_SUPPORTED
|
||||||
|
|
||||||
|
# maybe needs improving, but currently I don't know when we can enable what :)
|
||||||
|
set(png_asm_tmp "OFF")
|
||||||
|
if(NOT WIN32)
|
||||||
|
find_program(uname_executable NAMES uname PATHS /bin /usr/bin /usr/local/bin)
|
||||||
|
if(uname_executable)
|
||||||
|
exec_program(${uname_executable}
|
||||||
|
ARGS --machine OUTPUT_VARIABLE uname_output)
|
||||||
|
if("uname_output" MATCHES "^.*i[1-9]86.*$")
|
||||||
|
set(png_asm_tmp "ON")
|
||||||
|
else("uname_output" MATCHES "^.*i[1-9]86.*$")
|
||||||
|
set(png_asm_tmp "OFF")
|
||||||
|
endif("uname_output" MATCHES "^.*i[1-9]86.*$")
|
||||||
|
endif(uname_executable)
|
||||||
|
else()
|
||||||
|
# this env var is normally only set on win64
|
||||||
|
set(TEXT "ProgramFiles(x86)")
|
||||||
|
if("$ENV{${TEXT}}" STREQUAL "")
|
||||||
|
set(png_asm_tmp "ON")
|
||||||
|
endif("$ENV{${TEXT}}" STREQUAL "")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
# SET LIBNAME
|
||||||
|
set(PNG_LIB_NAME png${PNGLIB_MAJOR}${PNGLIB_MINOR})
|
||||||
|
|
||||||
|
# to distinguish between debug and release lib
|
||||||
|
set(CMAKE_DEBUG_POSTFIX "d")
|
||||||
|
|
||||||
|
|
||||||
|
# OUR SOURCES
|
||||||
|
set(libpng_sources
|
||||||
|
png.h
|
||||||
|
pngconf.h
|
||||||
|
png.c
|
||||||
|
pngerror.c
|
||||||
|
pngget.c
|
||||||
|
pngmem.c
|
||||||
|
pngpread.c
|
||||||
|
pngread.c
|
||||||
|
pngrio.c
|
||||||
|
pngrtran.c
|
||||||
|
pngrutil.c
|
||||||
|
pngset.c
|
||||||
|
pngtrans.c
|
||||||
|
pngwio.c
|
||||||
|
pngwrite.c
|
||||||
|
pngwtran.c
|
||||||
|
pngwutil.c
|
||||||
|
)
|
||||||
|
set(pngtest_sources
|
||||||
|
pngtest.c
|
||||||
|
)
|
||||||
|
# SOME NEEDED DEFINITIONS
|
||||||
|
|
||||||
|
add_definitions(-DPNG_CONFIGURE_LIBPNG)
|
||||||
|
|
||||||
|
if(_AIX)
|
||||||
|
add_definitions(-D_ALL_SOURCE)
|
||||||
|
endif(_AIX)
|
||||||
|
|
||||||
|
if(MSVC)
|
||||||
|
add_definitions(-DPNG_NO_MODULEDEF -D_CRT_SECURE_NO_DEPRECATE)
|
||||||
|
endif(MSVC)
|
||||||
|
|
||||||
|
if(PNG_SHARED OR NOT MSVC)
|
||||||
|
#if building msvc static this has NOT to be defined
|
||||||
|
add_definitions(-DZLIB_DLL)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
add_definitions(-DLIBPNG_NO_MMX)
|
||||||
|
add_definitions(-DPNG_NO_MMX_CODE)
|
||||||
|
|
||||||
|
|
||||||
|
if(PNG_CONSOLE_IO_SUPPORTED)
|
||||||
|
add_definitions(-DPNG_CONSOLE_IO_SUPPORTED)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(PNG_NO_CONSOLE_IO)
|
||||||
|
add_definitions(-DPNG_NO_CONSOLE_IO)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(PNG_NO_STDIO)
|
||||||
|
add_definitions(-DPNG_NO_STDIO)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(PNG_DEBUG)
|
||||||
|
add_definitions(-DPNG_DEBUG)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(NOT M_LIBRARY AND NOT WIN32)
|
||||||
|
add_definitions(-DPNG_NO_FLOATING_POINT_SUPPORTED)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
# NOW BUILD OUR TARGET
|
||||||
|
include_directories(${CMAKE_CURRENT_SOURCE_DIR} ${ZLIB_INCLUDE_DIR})
|
||||||
|
|
||||||
|
if(PNG_SHARED)
|
||||||
|
add_library(${PNG_LIB_NAME} SHARED ${libpng_sources})
|
||||||
|
if(MSVC)
|
||||||
|
# msvc does not append 'lib' - do it here to have consistent name
|
||||||
|
set_target_properties(${PNG_LIB_NAME} PROPERTIES PREFIX "lib")
|
||||||
|
endif()
|
||||||
|
target_link_libraries(${PNG_LIB_NAME} ${ZLIB_LIBRARY} ${M_LIBRARY})
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(PNG_STATIC)
|
||||||
|
# does not work without changing name
|
||||||
|
set(PNG_LIB_NAME_STATIC ${PNG_LIB_NAME}_static)
|
||||||
|
add_library(${PNG_LIB_NAME_STATIC} STATIC ${libpng_sources})
|
||||||
|
if(MSVC)
|
||||||
|
# msvc does not append 'lib' - do it here to have consistent name
|
||||||
|
set_target_properties(${PNG_LIB_NAME_STATIC} PROPERTIES PREFIX "lib")
|
||||||
|
endif()
|
||||||
|
endif()
|
||||||
|
|
||||||
|
|
||||||
|
if(PNG_SHARED AND WIN32)
|
||||||
|
set_target_properties(${PNG_LIB_NAME} PROPERTIES DEFINE_SYMBOL PNG_BUILD_DLL)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(PNG_TESTS AND PNG_SHARED)
|
||||||
|
# does not work with msvc due to png_lib_ver issue
|
||||||
|
add_executable(pngtest ${pngtest_sources})
|
||||||
|
target_link_libraries(pngtest ${PNG_LIB_NAME})
|
||||||
|
add_test(pngtest pngtest ${CMAKE_CURRENT_SOURCE_DIR}/pngtest.png)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
|
||||||
|
# CREATE PKGCONFIG FILES
|
||||||
|
# we use the same files like ./configure, so we have to set its vars
|
||||||
|
set(prefix ${CMAKE_INSTALL_PREFIX})
|
||||||
|
set(exec_prefix ${CMAKE_INSTALL_PREFIX})
|
||||||
|
set(libdir ${CMAKE_INSTALL_PREFIX}/lib)
|
||||||
|
set(includedir ${CMAKE_INSTALL_PREFIX}/include)
|
||||||
|
|
||||||
|
configure_file(${CMAKE_CURRENT_SOURCE_DIR}/scripts/libpng.pc.in
|
||||||
|
${CMAKE_CURRENT_BINARY_DIR}/libpng.pc)
|
||||||
|
configure_file(${CMAKE_CURRENT_SOURCE_DIR}/scripts/libpng-config.in
|
||||||
|
${CMAKE_CURRENT_BINARY_DIR}/libpng-config)
|
||||||
|
configure_file(${CMAKE_CURRENT_SOURCE_DIR}/scripts/libpng.pc.in
|
||||||
|
${CMAKE_CURRENT_BINARY_DIR}/${PNGLIB_NAME}.pc)
|
||||||
|
configure_file(${CMAKE_CURRENT_SOURCE_DIR}/scripts/libpng-config.in
|
||||||
|
${CMAKE_CURRENT_BINARY_DIR}/${PNGLIB_NAME}-config)
|
||||||
|
|
||||||
|
# SET UP LINKS
|
||||||
|
if(PNG_SHARED)
|
||||||
|
set_target_properties(${PNG_LIB_NAME} PROPERTIES
|
||||||
|
# VERSION 0.${PNGLIB_RELEASE}.1.2.59
|
||||||
|
VERSION 0.${PNGLIB_RELEASE}.0
|
||||||
|
SOVERSION 0
|
||||||
|
CLEAN_DIRECT_OUTPUT 1)
|
||||||
|
endif()
|
||||||
|
if(PNG_STATIC)
|
||||||
|
if(NOT WIN32)
|
||||||
|
# that's uncool on win32 - it overwrites our static import lib...
|
||||||
|
set_target_properties(${PNG_LIB_NAME_STATIC} PROPERTIES
|
||||||
|
OUTPUT_NAME ${PNG_LIB_NAME}
|
||||||
|
CLEAN_DIRECT_OUTPUT 1)
|
||||||
|
endif()
|
||||||
|
endif()
|
||||||
|
|
||||||
|
# INSTALL
|
||||||
|
if(NOT SKIP_INSTALL_LIBRARIES AND NOT SKIP_INSTALL_ALL )
|
||||||
|
if(PNG_SHARED)
|
||||||
|
install(TARGETS ${PNG_LIB_NAME}
|
||||||
|
RUNTIME DESTINATION bin
|
||||||
|
LIBRARY DESTINATION lib
|
||||||
|
ARCHIVE DESTINATION lib)
|
||||||
|
endif()
|
||||||
|
if(PNG_STATIC)
|
||||||
|
install(TARGETS ${PNG_LIB_NAME_STATIC}
|
||||||
|
LIBRARY DESTINATION lib
|
||||||
|
ARCHIVE DESTINATION lib)
|
||||||
|
endif()
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(NOT SKIP_INSTALL_HEADERS AND NOT SKIP_INSTALL_ALL )
|
||||||
|
install(FILES png.h pngconf.h DESTINATION include)
|
||||||
|
install(FILES png.h pngconf.h DESTINATION include/${PNGLIB_NAME})
|
||||||
|
endif()
|
||||||
|
if(NOT SKIP_INSTALL_EXECUTABLES AND NOT SKIP_INSTALL_ALL )
|
||||||
|
install(PROGRAMS ${CMAKE_CURRENT_BINARY_DIR}/libpng-config DESTINATION bin)
|
||||||
|
install(PROGRAMS ${CMAKE_CURRENT_BINARY_DIR}/${PNGLIB_NAME}-config
|
||||||
|
DESTINATION bin)
|
||||||
|
endif()
|
||||||
|
if(NOT SKIP_INSTALL_FILES AND NOT SKIP_INSTALL_ALL )
|
||||||
|
# Install man pages
|
||||||
|
install(FILES libpng.3 libpngpf.3 DESTINATION man/man3)
|
||||||
|
install(FILES png.5 DESTINATION man/man5)
|
||||||
|
# Install pkg-config files
|
||||||
|
install(FILES ${CMAKE_CURRENT_BINARY_DIR}/libpng.pc
|
||||||
|
DESTINATION lib/pkgconfig)
|
||||||
|
install(FILES ${CMAKE_CURRENT_BINARY_DIR}/libpng-config
|
||||||
|
DESTINATION bin)
|
||||||
|
install(FILES ${CMAKE_CURRENT_BINARY_DIR}/${PNGLIB_NAME}.pc
|
||||||
|
DESTINATION lib/pkgconfig)
|
||||||
|
install(FILES ${CMAKE_CURRENT_BINARY_DIR}/${PNGLIB_NAME}-config
|
||||||
|
DESTINATION bin)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
# what's with libpng.txt and all the extra files?
|
||||||
|
|
||||||
|
|
||||||
|
# UNINSTALL
|
||||||
|
# do we need this?
|
||||||
|
|
||||||
|
|
||||||
|
# DIST
|
||||||
|
# do we need this?
|
||||||
|
|
||||||
|
# to create msvc import lib for mingw compiled shared lib
|
||||||
|
# pexports libpng.dll > libpng.def
|
||||||
|
# lib /def:libpng.def /machine:x86
|
||||||
|
|
163
dependencies/libpng/src/INSTALL
vendored
Normal file
@ -0,0 +1,163 @@
|
|||||||
|
|
||||||
|
Installing libpng version 1.2.59 - September 28, 2017
|
||||||
|
|
||||||
|
On Unix/Linux and similar systems, you can simply type
|
||||||
|
|
||||||
|
./configure [--prefix=/path]
|
||||||
|
make check
|
||||||
|
make install
|
||||||
|
|
||||||
|
and ignore the rest of this document.
|
||||||
|
|
||||||
|
If configure does not work on your system and you have a reasonably
|
||||||
|
up-to-date set of tools, running ./autogen.sh before running ./configure
|
||||||
|
may fix the problem. You can also run the individual commands in
|
||||||
|
autogen.sh with the --force option, if supported by your version of
|
||||||
|
the tools. If you run 'libtoolize --force', though, this will replace
|
||||||
|
the distributed, patched, version of ltmain.sh with an unpatched version
|
||||||
|
and your shared library builds may fail to produce libraries with the
|
||||||
|
correct version numbers.
|
||||||
|
|
||||||
|
Instead, you can use one of the custom-built makefiles in the
|
||||||
|
"scripts" directory
|
||||||
|
|
||||||
|
cp scripts/makefile.system makefile
|
||||||
|
make test
|
||||||
|
make install
|
||||||
|
|
||||||
|
The files that are presently available in the scripts directory
|
||||||
|
are listed and described in scripts/README.txt.
|
||||||
|
|
||||||
|
Or you can use one of the "projects" in the "projects" directory.
|
||||||
|
|
||||||
|
Before installing libpng, you must first install zlib, if it
|
||||||
|
is not already on your system. zlib can usually be found
|
||||||
|
wherever you got libpng. zlib can be placed in another directory,
|
||||||
|
at the same level as libpng.
|
||||||
|
|
||||||
|
If you want to use "cmake" (see www.cmake.org), type
|
||||||
|
|
||||||
|
cmake . -DCMAKE_INSTALL_PREFIX=/path
|
||||||
|
make
|
||||||
|
make install
|
||||||
|
|
||||||
|
If your system already has a preinstalled zlib you will still need
|
||||||
|
to have access to the zlib.h and zconf.h include files that
|
||||||
|
correspond to the version of zlib that's installed.
|
||||||
|
|
||||||
|
You can rename the directories that you downloaded (they
|
||||||
|
might be called "libpng-1.2.59" or "libpng12" and "zlib-1.2.3"
|
||||||
|
or "zlib123") so that you have directories called "zlib" and "libpng".
|
||||||
|
|
||||||
|
Your directory structure should look like this:
|
||||||
|
|
||||||
|
.. (the parent directory)
|
||||||
|
libpng (this directory)
|
||||||
|
INSTALL (this file)
|
||||||
|
README
|
||||||
|
*.h
|
||||||
|
*.c
|
||||||
|
CMakeLists.txt => "cmake" script
|
||||||
|
configuration files:
|
||||||
|
configure.ac, configure, Makefile.am, Makefile.in,
|
||||||
|
autogen.sh, config.guess, ltmain.sh, missing,
|
||||||
|
aclocal.m4, config.h.in, config.sub,
|
||||||
|
depcomp, install-sh, mkinstalldirs, test-pngtest.sh
|
||||||
|
contrib
|
||||||
|
gregbook
|
||||||
|
pngminim
|
||||||
|
pngminus
|
||||||
|
pngsuite
|
||||||
|
visupng
|
||||||
|
projects
|
||||||
|
cbuilder5 (Borland)
|
||||||
|
visualc6 (msvc)
|
||||||
|
visualc71
|
||||||
|
xcode
|
||||||
|
scripts
|
||||||
|
makefile.*
|
||||||
|
*.def (module definition files)
|
||||||
|
pngtest.png
|
||||||
|
etc.
|
||||||
|
zlib
|
||||||
|
README
|
||||||
|
*.h
|
||||||
|
*.c
|
||||||
|
contrib
|
||||||
|
etc.
|
||||||
|
|
||||||
|
If the line endings in the files look funny, you may wish to get the other
|
||||||
|
distribution of libpng. It is available in both tar.gz (UNIX style line
|
||||||
|
endings) and zip (DOS style line endings) formats.
|
||||||
|
|
||||||
|
If you are building libpng with MSVC, you can enter the
|
||||||
|
libpng projects\visualc6 or visualc71 directory and follow the instructions
|
||||||
|
in README.txt.
|
||||||
|
|
||||||
|
Otherwise enter the zlib directory and follow the instructions in zlib/README,
|
||||||
|
then come back here and run "configure" or choose the appropriate
|
||||||
|
makefile.sys in the scripts directory.
|
||||||
|
|
||||||
|
Copy the file (or files) that you need from the
|
||||||
|
scripts directory into this directory, for example
|
||||||
|
|
||||||
|
MSDOS example: copy scripts\makefile.msc makefile
|
||||||
|
UNIX example: cp scripts/makefile.std makefile
|
||||||
|
|
||||||
|
Read the makefile to see if you need to change any source or
|
||||||
|
target directories to match your preferences.
|
||||||
|
|
||||||
|
Then read pngconf.h to see if you want to make any configuration
|
||||||
|
changes.
|
||||||
|
|
||||||
|
Then just run "make" which will create the libpng library in
|
||||||
|
this directory and "make test" which will run a quick test that reads
|
||||||
|
the "pngtest.png" file and writes a "pngout.png" file that should be
|
||||||
|
identical to it. Look for "9782 zero samples" in the output of the
|
||||||
|
test. For more confidence, you can run another test by typing
|
||||||
|
"pngtest pngnow.png" and looking for "289 zero samples" in the output.
|
||||||
|
Also, you can run "pngtest -m contrib/pngsuite/*.png" and compare
|
||||||
|
your output with the result shown in contrib/pngsuite/README.
|
||||||
|
|
||||||
|
Most of the makefiles will allow you to run "make install" to
|
||||||
|
put the library in its final resting place (if you want to
|
||||||
|
do that, run "make install" in the zlib directory first if necessary).
|
||||||
|
Some also allow you to run "make test-installed" after you have
|
||||||
|
run "make install".
|
||||||
|
|
||||||
|
If you encounter a compiler error message complaining about the
|
||||||
|
lines
|
||||||
|
|
||||||
|
__png.h__ already includes setjmp.h;
|
||||||
|
__dont__ include it again.;
|
||||||
|
|
||||||
|
this means you have compiled another module that includes setjmp.h,
|
||||||
|
which is hazardous because the two modules might not include exactly
|
||||||
|
the same setjmp.h. If you are sure that you know what you are doing
|
||||||
|
and that they are exactly the same, then you can comment out or
|
||||||
|
delete the two lines. Better yet, use the cexcept interface
|
||||||
|
instead, as demonstrated in contrib/visupng of the libpng distribution.
|
||||||
|
|
||||||
|
Further information can be found in the README and libpng.txt
|
||||||
|
files, in the individual makefiles, in png.h, and the manual pages
|
||||||
|
libpng.3 and png.5.
|
||||||
|
|
||||||
|
|
||||||
|
Using the ./configure script -- 16 December 2002.
|
||||||
|
=================================================
|
||||||
|
|
||||||
|
|
||||||
|
The ./configure script should work compatibly with what scripts/makefile.*
|
||||||
|
did, however there are some options you need to add to configure explicitly,
|
||||||
|
which previously was done semi-automatically (if you didn't edit
|
||||||
|
scripts/makefile.* yourself, that is)
|
||||||
|
|
||||||
|
|
||||||
|
CFLAGS="-Wall -O -funroll-loops \
|
||||||
|
-malign-loops=2 -malign-functions=2" ./configure --prefix=/usr/include \
|
||||||
|
--with-pkgconfigdir=/usr/lib/pkgconfig --includedir=/usr/include
|
||||||
|
|
||||||
|
You can alternatively specify --includedir=/usr/include, /usr/local/include,
|
||||||
|
/usr/include/png12, or whatever.
|
||||||
|
|
||||||
|
|
22
dependencies/libpng/src/KNOWNBUG
vendored
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
|
||||||
|
Known bugs in libpng version 1.2.59
|
||||||
|
|
||||||
|
1. February 23, 2006: The custom makefiles don't build libpng with -lz.
|
||||||
|
|
||||||
|
STATUS: This is a subject of debate. The change will probably be made
|
||||||
|
as a part of a major overhaul of the makefiles in libpng version 1.4.0.
|
||||||
|
|
||||||
|
2. February 24, 2006: The Makefile generated by the "configure" script
|
||||||
|
fails to install symbolic links
|
||||||
|
libpng12.so => libpng12.so.0.1.2.9betaN
|
||||||
|
that are generated by the custom makefiles.
|
||||||
|
|
||||||
|
3. September 4, 2007: There is a report that pngtest crashes on MacOS 10.
|
||||||
|
|
||||||
|
STATUS: workarounds are
|
||||||
|
1) Compile without optimization (crashes are observed with
|
||||||
|
-arch i386 and -O2 or -O3, using gcc-4.0.1).
|
||||||
|
2) Compile pngtest.c with PNG_DEBUG defined (the bug goes away if
|
||||||
|
you try to look at it).
|
||||||
|
3) Ignore the crash. The library itself seems to be OK.
|
||||||
|
|
110
dependencies/libpng/src/LICENSE
vendored
Normal file
@ -0,0 +1,110 @@
|
|||||||
|
|
||||||
|
This copy of the libpng notices is provided for your convenience. In case of
|
||||||
|
any discrepancy between this copy and the notices in the file png.h that is
|
||||||
|
included in the libpng distribution, the latter shall prevail.
|
||||||
|
|
||||||
|
COPYRIGHT NOTICE, DISCLAIMER, and LICENSE:
|
||||||
|
|
||||||
|
If you modify libpng you may insert additional notices immediately following
|
||||||
|
this sentence.
|
||||||
|
|
||||||
|
This code is released under the libpng license.
|
||||||
|
|
||||||
|
libpng versions 1.0.7, July 1, 2000, through 1.2.59, September 28, 2017, are
|
||||||
|
Copyright (c) 2000-2002, 2004, 2006-2017 Glenn Randers-Pehrson, are
|
||||||
|
derived from libpng-1.0.6, and are distributed according to the same
|
||||||
|
disclaimer and license as libpng-1.0.6 with the following individuals
|
||||||
|
added to the list of Contributing Authors:
|
||||||
|
|
||||||
|
Simon-Pierre Cadieux
|
||||||
|
Eric S. Raymond
|
||||||
|
Cosmin Truta
|
||||||
|
Gilles Vollant
|
||||||
|
|
||||||
|
and with the following additions to the disclaimer:
|
||||||
|
|
||||||
|
There is no warranty against interference with your enjoyment of the
|
||||||
|
library or against infringement. There is no warranty that our
|
||||||
|
efforts or the library will fulfill any of your particular purposes
|
||||||
|
or needs. This library is provided with all faults, and the entire
|
||||||
|
risk of satisfactory quality, performance, accuracy, and effort is with
|
||||||
|
the user.
|
||||||
|
|
||||||
|
libpng versions 0.97, January 1998, through 1.0.6, March 20, 2000, are
|
||||||
|
Copyright (c) 1998-2000 Glenn Randers-Pehrson, are derived from
|
||||||
|
libpng-0.96, and are distributed according to the same disclaimer and
|
||||||
|
license as libpng-0.96, with the following individuals added to the list
|
||||||
|
of Contributing Authors:
|
||||||
|
|
||||||
|
Tom Lane
|
||||||
|
Glenn Randers-Pehrson
|
||||||
|
Willem van Schaik
|
||||||
|
|
||||||
|
libpng versions 0.89, June 1996, through 0.96, May 1997, are
|
||||||
|
Copyright (c) 1996-1997 Andreas Dilger, are derived from libpng-0.88,
|
||||||
|
and are distributed according to the same disclaimer and license as
|
||||||
|
libpng-0.88, with the following individuals added to the list of
|
||||||
|
Contributing Authors:
|
||||||
|
|
||||||
|
John Bowler
|
||||||
|
Kevin Bracey
|
||||||
|
Sam Bushell
|
||||||
|
Magnus Holmgren
|
||||||
|
Greg Roelofs
|
||||||
|
Tom Tanner
|
||||||
|
|
||||||
|
libpng versions 0.5, May 1995, through 0.88, January 1996, are
|
||||||
|
Copyright (c) 1995-1996 Guy Eric Schalnat, Group 42, Inc.
|
||||||
|
|
||||||
|
For the purposes of this copyright and license, "Contributing Authors"
|
||||||
|
is defined as the following set of individuals:
|
||||||
|
|
||||||
|
Andreas Dilger
|
||||||
|
Dave Martindale
|
||||||
|
Guy Eric Schalnat
|
||||||
|
Paul Schmidt
|
||||||
|
Tim Wegner
|
||||||
|
|
||||||
|
The PNG Reference Library is supplied "AS IS". The Contributing Authors
|
||||||
|
and Group 42, Inc. disclaim all warranties, expressed or implied,
|
||||||
|
including, without limitation, the warranties of merchantability and of
|
||||||
|
fitness for any purpose. The Contributing Authors and Group 42, Inc.
|
||||||
|
assume no liability for direct, indirect, incidental, special, exemplary,
|
||||||
|
or consequential damages, which may result from the use of the PNG
|
||||||
|
Reference Library, even if advised of the possibility of such damage.
|
||||||
|
|
||||||
|
Permission is hereby granted to use, copy, modify, and distribute this
|
||||||
|
source code, or portions hereof, for any purpose, without fee, subject
|
||||||
|
to the following restrictions:
|
||||||
|
|
||||||
|
1. The origin of this source code must not be misrepresented.
|
||||||
|
|
||||||
|
2. Altered versions must be plainly marked as such and must not
|
||||||
|
be misrepresented as being the original source.
|
||||||
|
|
||||||
|
3. This Copyright notice may not be removed or altered from any
|
||||||
|
source or altered source distribution.
|
||||||
|
|
||||||
|
The Contributing Authors and Group 42, Inc. specifically permit, without
|
||||||
|
fee, and encourage the use of this source code as a component to
|
||||||
|
supporting the PNG file format in commercial products. If you use this
|
||||||
|
source code in a product, acknowledgment is not required but would be
|
||||||
|
appreciated.
|
||||||
|
|
||||||
|
END OF COPYRIGHT NOTICE, DISCLAIMER, and LICENSE.
|
||||||
|
|
||||||
|
A "png_get_copyright" function is available, for convenient use in "about"
|
||||||
|
boxes and the like:
|
||||||
|
|
||||||
|
printf("%s", png_get_copyright(NULL));
|
||||||
|
|
||||||
|
Also, the PNG logo (in PNG format, of course) is supplied in the
|
||||||
|
files "pngbar.png" and "pngbar.jpg (88x31) and "pngnow.png" (98x31).
|
||||||
|
|
||||||
|
Libpng is OSI Certified Open Source Software. OSI Certified Open Source is
|
||||||
|
a certification mark of the Open Source Initiative. OSI has not addressed
|
||||||
|
the additional disclaimers inserted at version 1.0.7.
|
||||||
|
|
||||||
|
Glenn Randers-Pehrson
|
||||||
|
glennrp at users.sourceforge.net
|
||||||
|
September 28, 2017
|
155
dependencies/libpng/src/Makefile.am
vendored
Normal file
@ -0,0 +1,155 @@
|
|||||||
|
# Makefile.am:
|
||||||
|
# Source file for Makefile.in (and hence Makefile)
|
||||||
|
#
|
||||||
|
# Makefile.am need only be changed on a major version number
|
||||||
|
# change (e.g. libpng12 --> libpng14). In that case seach
|
||||||
|
# this file for every instance of the old base name (libpng12)
|
||||||
|
# and change to the new one (libpng14), then change the
|
||||||
|
# -version-number settings below so that the new values have
|
||||||
|
# the correct major part (first field).
|
||||||
|
|
||||||
|
PNGLIB_BASENAME= libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@
|
||||||
|
|
||||||
|
# libpng does not follow GNU file name conventions
|
||||||
|
AUTOMAKE_OPTIONS = foreign
|
||||||
|
|
||||||
|
# test programs - run on make check, make distcheck
|
||||||
|
check_PROGRAMS= pngtest
|
||||||
|
pngtest_SOURCES = pngtest.c
|
||||||
|
pngtest_LDADD = libpng12.la
|
||||||
|
TESTS = test-pngtest.sh
|
||||||
|
TESTS_ENVIRONMENT= srcdir=$(srcdir)
|
||||||
|
|
||||||
|
# man pages
|
||||||
|
dist_man_MANS= libpng.3 libpngpf.3 png.5
|
||||||
|
|
||||||
|
# generate the -config scripts if required
|
||||||
|
binconfigs= libpng12-config
|
||||||
|
EXTRA_SCRIPTS= libpng-config libpng12-config
|
||||||
|
bin_SCRIPTS= @binconfigs@
|
||||||
|
|
||||||
|
# rules to build libpng, only build the old library on request
|
||||||
|
lib_LTLIBRARIES=libpng12.la @compatlib@
|
||||||
|
EXTRA_LTLIBRARIES= libpng.la
|
||||||
|
libpng12_la_SOURCES = png.c pngset.c pngget.c pngrutil.c pngtrans.c pngwutil.c \
|
||||||
|
pngread.c pngrio.c pngwio.c pngwrite.c pngrtran.c \
|
||||||
|
pngwtran.c pngmem.c pngerror.c pngpread.c \
|
||||||
|
png.h pngconf.h
|
||||||
|
libpng_la_SOURCES = $(libpng12_la_SOURCES)
|
||||||
|
|
||||||
|
libpng_la_CPPFLAGS = @LIBPNG_DEFINES@
|
||||||
|
libpng12_la_CPPFLAGS = @LIBPNG_DEFINES@
|
||||||
|
|
||||||
|
# MAJOR UPGRADE: the version-number settings below must be changed.
|
||||||
|
libpng12_la_LDFLAGS = -no-undefined -export-dynamic \
|
||||||
|
-version-number 0:@PNGLIB_RELEASE@:0
|
||||||
|
# -rpath is needed as automake doesn't know the directory
|
||||||
|
libpng_la_LDFLAGS = -rpath '$(libdir)' -no-undefined -export-dynamic \
|
||||||
|
-version-number 3:@PNGLIB_RELEASE@:0
|
||||||
|
|
||||||
|
if HAVE_LD_VERSION_SCRIPT
|
||||||
|
# Versioned symbols and restricted exports
|
||||||
|
libpng12_la_LDFLAGS += -Wl,--version-script=libpng.vers
|
||||||
|
libpng12_la_DEPENDENCIES = libpng.vers
|
||||||
|
else
|
||||||
|
# Only restricted exports when possible
|
||||||
|
libpng12_la_LDFLAGS += -export-symbols libpng.sym
|
||||||
|
libpng12_la_DEPENDENCIES = libpng.sym
|
||||||
|
endif
|
||||||
|
libpng_la_DEPENDENCIES = $(libpng12_la_DEPENDENCIES)
|
||||||
|
|
||||||
|
# Avoid depending upon Character Ranges.
|
||||||
|
AN = '_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789'
|
||||||
|
|
||||||
|
#distribute headers in /usr/include/libpng/*
|
||||||
|
pkgincludedir= $(includedir)/$(PNGLIB_BASENAME)
|
||||||
|
pkginclude_HEADERS= png.h pngconf.h
|
||||||
|
|
||||||
|
# pkg-config stuff, note that libpng.pc is always required in order
|
||||||
|
# to get the correct library
|
||||||
|
pkgconfigdir = @pkgconfigdir@
|
||||||
|
pkgconfig_DATA = libpng12.pc
|
||||||
|
|
||||||
|
#extra source distribution files.
|
||||||
|
EXTRA_DIST= \
|
||||||
|
ANNOUNCE CHANGES INSTALL KNOWNBUG LICENSE README TODO Y2KINFO \
|
||||||
|
pngtest.png pngbar.png pngnow.png pngbar.jpg autogen.sh \
|
||||||
|
CMakeLists.txt \
|
||||||
|
${srcdir}/projects/cbuilder5/* \
|
||||||
|
${srcdir}/projects/beos/* \
|
||||||
|
${srcdir}/projects/visualc6/* \
|
||||||
|
${srcdir}/projects/visualc71/* \
|
||||||
|
${srcdir}/projects/wince.txt \
|
||||||
|
${srcdir}/projects/netware.txt \
|
||||||
|
${srcdir}/projects/xcode/* \
|
||||||
|
${srcdir}/scripts/* \
|
||||||
|
${srcdir}/contrib/gregbook/* \
|
||||||
|
${srcdir}/contrib/pngminim/* \
|
||||||
|
${srcdir}/contrib/pngminus/* \
|
||||||
|
${srcdir}/contrib/pngsuite/* \
|
||||||
|
${srcdir}/contrib/visupng/* \
|
||||||
|
$(TESTS) \
|
||||||
|
example.c libpng-1.2.59.txt pnggccrd.c pngvcrd.c
|
||||||
|
|
||||||
|
CLEANFILES= pngout.png libpng12.pc libpng12-config libpng.vers \
|
||||||
|
libpng.sym
|
||||||
|
|
||||||
|
MAINTAINERCLEANFILES = Makefile.in aclocal.m4 config.guess config.h.in \
|
||||||
|
config.sub configure depcomp install-sh ltmain.sh missing
|
||||||
|
|
||||||
|
$(PNGLIB_BASENAME).pc: libpng.pc
|
||||||
|
cp libpng.pc $@
|
||||||
|
|
||||||
|
$(PNGLIB_BASENAME)-config: libpng-config
|
||||||
|
cp libpng-config $@
|
||||||
|
|
||||||
|
libpng.sym: png.h pngconf.h
|
||||||
|
rm -f $@ $@.new
|
||||||
|
$(CPP) @LIBPNG_DEFINES@ $(CPPFLAGS) -DPNG_BUILDSYMS $(srcdir)/png.h | \
|
||||||
|
$(SED) -n -e \
|
||||||
|
's|^.*PNG_FUNCTION_EXPORT[ ]*\([$(AN)]*\).*$$|$(SYMBOL_PREFIX)\1|p' \
|
||||||
|
-e 's|^.*PNG_DATA_EXPORT[ ]*\([$(AN)]*\).*$$|$(SYMBOL_PREFIX)\1|p' \
|
||||||
|
>$@.new
|
||||||
|
mv $@.new $@
|
||||||
|
|
||||||
|
libpng.vers: libpng.sym
|
||||||
|
rm -f $@ $@.new
|
||||||
|
echo PNG@PNGLIB_MAJOR@@PNGLIB_MINOR@_0 '{global:' > $@.new
|
||||||
|
$(SED) s/$$/\;/ libpng.sym >> $@.new
|
||||||
|
echo 'local: *; };' >> $@.new
|
||||||
|
mv $@.new $@
|
||||||
|
|
||||||
|
test: check
|
||||||
|
|
||||||
|
# install the .../include headers as links to the new ones
|
||||||
|
install-data-hook:
|
||||||
|
cd $(DESTDIR)$(includedir); rm -f png.h pngconf.h
|
||||||
|
cd $(DESTDIR)$(includedir); $(LN_S) $(PNGLIB_BASENAME)/png.h png.h
|
||||||
|
cd $(DESTDIR)$(includedir); $(LN_S) $(PNGLIB_BASENAME)/pngconf.h pngconf.h
|
||||||
|
cd $(DESTDIR)$(pkgconfigdir); rm -f libpng.pc
|
||||||
|
cd $(DESTDIR)$(pkgconfigdir); $(LN_S) $(PNGLIB_BASENAME).pc libpng.pc
|
||||||
|
|
||||||
|
# do evil things to libpng to cause libpng12 to be used
|
||||||
|
install-exec-hook:
|
||||||
|
cd $(DESTDIR)$(bindir); rm -f libpng-config
|
||||||
|
cd $(DESTDIR)$(bindir); $(LN_S) $(PNGLIB_BASENAME)-config libpng-config
|
||||||
|
@set -x;\
|
||||||
|
cd $(DESTDIR)$(libdir);\
|
||||||
|
for ext in a la so sl dylib; do\
|
||||||
|
rm -f libpng.$$ext;\
|
||||||
|
if test -f $(PNGLIB_BASENAME).$$ext; then\
|
||||||
|
$(LN_S) $(PNGLIB_BASENAME).$$ext libpng.$$ext;\
|
||||||
|
fi;\
|
||||||
|
done
|
||||||
|
|
||||||
|
uninstall-hook:
|
||||||
|
cd $(DESTDIR)$(includedir); rm -f png.h pngconf.h
|
||||||
|
rm -f $(DESTDIR)$(pkgconfigdir)/libpng.pc
|
||||||
|
rm -f $(DESTDIR)$(bindir)/libpng-config
|
||||||
|
@if test -n "@compatlib@"; then\
|
||||||
|
set -x;\
|
||||||
|
cd $(DESTDIR)$(libdir);\
|
||||||
|
for ext in a la so sl dylib; do\
|
||||||
|
rm -f libpng.$$ext;\
|
||||||
|
done;\
|
||||||
|
fi
|
1815
dependencies/libpng/src/Makefile.in
vendored
Normal file
283
dependencies/libpng/src/README
vendored
Normal file
@ -0,0 +1,283 @@
|
|||||||
|
README for libpng version 1.2.59 - September 28, 2017 (shared library 12.0)
|
||||||
|
See the note about version numbers near the top of png.h
|
||||||
|
|
||||||
|
See INSTALL for instructions on how to install libpng.
|
||||||
|
|
||||||
|
Libpng comes in several distribution formats. Get libpng-*.tar.gz or
|
||||||
|
libpng-*.tar.xz if you want UNIX-style line
|
||||||
|
endings in the text files, or lpng*.7z or lpng*.zip if you want DOS-style
|
||||||
|
line endings. You can get UNIX-style line endings from the *.zip file
|
||||||
|
by using "unzip -a" but there seems to be no simple way to recover
|
||||||
|
UNIX-style line endings from the *.7z file. The *.tar.xz file is
|
||||||
|
recommended for *NIX users instead.
|
||||||
|
|
||||||
|
Version 0.89 was the first official release of libpng. Don't let the
|
||||||
|
fact that it's the first release fool you. The libpng library has been in
|
||||||
|
extensive use and testing since mid-1995. By late 1997 it had
|
||||||
|
finally gotten to the stage where there hadn't been significant
|
||||||
|
changes to the API in some time, and people have a bad feeling about
|
||||||
|
libraries with versions < 1.0. Version 1.0.0 was released in
|
||||||
|
March 1998.
|
||||||
|
|
||||||
|
****
|
||||||
|
Note that some of the changes to the png_info structure render this
|
||||||
|
version of the library binary incompatible with libpng-0.89 or
|
||||||
|
earlier versions if you are using a shared library. The type of the
|
||||||
|
"filler" parameter for png_set_filler() has changed from png_byte to
|
||||||
|
png_uint_32, which will affect shared-library applications that use
|
||||||
|
this function.
|
||||||
|
|
||||||
|
To avoid problems with changes to the internals of png_info_struct,
|
||||||
|
new APIs have been made available in 0.95 to avoid direct application
|
||||||
|
access to info_ptr. These functions are the png_set_<chunk> and
|
||||||
|
png_get_<chunk> functions. These functions should be used when
|
||||||
|
accessing/storing the info_struct data, rather than manipulating it
|
||||||
|
directly, to avoid such problems in the future.
|
||||||
|
|
||||||
|
It is important to note that the APIs do not make current programs
|
||||||
|
that access the info struct directly incompatible with the new
|
||||||
|
library. However, it is strongly suggested that new programs use
|
||||||
|
the new APIs (as shown in example.c and pngtest.c), and older programs
|
||||||
|
be converted to the new format, to facilitate upgrades in the future.
|
||||||
|
****
|
||||||
|
|
||||||
|
Additions since 0.90 include the ability to compile libpng as a
|
||||||
|
Windows DLL, and new APIs for accessing data in the info struct.
|
||||||
|
Experimental functions include the ability to set weighting and cost
|
||||||
|
factors for row filter selection, direct reads of integers from buffers
|
||||||
|
on big-endian processors that support misaligned data access, faster
|
||||||
|
methods of doing alpha composition, and more accurate 16->8 bit color
|
||||||
|
conversion.
|
||||||
|
|
||||||
|
The additions since 0.89 include the ability to read from a PNG stream
|
||||||
|
which has had some (or all) of the signature bytes read by the calling
|
||||||
|
application. This also allows the reading of embedded PNG streams that
|
||||||
|
do not have the PNG file signature. As well, it is now possible to set
|
||||||
|
the library action on the detection of chunk CRC errors. It is possible
|
||||||
|
to set different actions based on whether the CRC error occurred in a
|
||||||
|
critical or an ancillary chunk.
|
||||||
|
|
||||||
|
The changes made to the library, and bugs fixed are based on discussions
|
||||||
|
on the png-mng-implement mailing list and not on material submitted
|
||||||
|
privately to Guy, Andreas, or Glenn. They will forward any good
|
||||||
|
suggestions to the list.
|
||||||
|
|
||||||
|
For a detailed description on using libpng, read libpng.txt. For
|
||||||
|
examples of libpng in a program, see example.c and pngtest.c. For usage
|
||||||
|
information and restrictions (what little they are) on libpng, see
|
||||||
|
png.h. For a description on using zlib (the compression library used by
|
||||||
|
libpng) and zlib's restrictions, see zlib.h
|
||||||
|
|
||||||
|
I have included a general makefile, as well as several machine and
|
||||||
|
compiler specific ones, but you may have to modify one for your own needs.
|
||||||
|
|
||||||
|
You should use zlib 1.0.4 or later to run this, but it MAY work with
|
||||||
|
versions as old as zlib 0.95. Even so, there are bugs in older zlib
|
||||||
|
versions which can cause the output of invalid compression streams for
|
||||||
|
some images. You will definitely need zlib 1.0.4 or later if you are
|
||||||
|
taking advantage of the MS-DOS "far" structure allocation for the small
|
||||||
|
and medium memory models. You should also note that zlib is a
|
||||||
|
compression library that is useful for more things than just PNG files.
|
||||||
|
You can use zlib as a drop-in replacement for fread() and fwrite() if
|
||||||
|
you are so inclined.
|
||||||
|
|
||||||
|
zlib should be available at the same place that libpng is, or at
|
||||||
|
ftp://ftp.simplesystems.org/pub/png/src/
|
||||||
|
|
||||||
|
You may also want a copy of the PNG specification. It is available
|
||||||
|
as an RFC, a W3C Recommendation, and an ISO/IEC Standard. You can find
|
||||||
|
these at http://www.libpng.org/pub/png/pngdocs.html
|
||||||
|
|
||||||
|
This code is currently being archived at libpng.sf.net in the
|
||||||
|
[DOWNLOAD] area, and on CompuServe, Lib 20 (PNG SUPPORT)
|
||||||
|
at GO GRAPHSUP. If you can't find it in any of those places,
|
||||||
|
e-mail me, and I'll help you find it.
|
||||||
|
|
||||||
|
I am not a lawyer, but I believe that the Export Control Classification
|
||||||
|
Number (ECCN) for libpng is EAR99, which means not subject to export
|
||||||
|
controls or International Traffic in Arms Regulations (ITAR) because it
|
||||||
|
is open source, publicly available software, that does not contain any
|
||||||
|
encryption software. See the EAR, paragraphs 734.3(b)(3) and 734.7(b).
|
||||||
|
|
||||||
|
If you have any code changes, requests, problems, etc., please e-mail
|
||||||
|
them to me. Also, I'd appreciate any make files or project files,
|
||||||
|
and any modifications you needed to make to get libpng to compile,
|
||||||
|
along with a #define variable to tell what compiler/system you are on.
|
||||||
|
If you needed to add transformations to libpng, or wish libpng would
|
||||||
|
provide the image in a different way, drop me a note (and code, if
|
||||||
|
possible), so I can consider supporting the transformation.
|
||||||
|
Finally, if you get any warning messages when compiling libpng
|
||||||
|
(note: not zlib), and they are easy to fix, I'd appreciate the
|
||||||
|
fix. Please mention "libpng" somewhere in the subject line. Thanks.
|
||||||
|
|
||||||
|
This release was created and will be supported by myself (of course
|
||||||
|
based in a large way on Guy's and Andreas' earlier work), and the PNG
|
||||||
|
development group.
|
||||||
|
|
||||||
|
Send comments/corrections/commendations to png-mng-implement at lists.sf.net
|
||||||
|
(subscription required; visit
|
||||||
|
https://lists.sourceforge.net/lists/listinfo/png-mng-implement
|
||||||
|
to subscribe) or to glennrp at users.sourceforge.net
|
||||||
|
|
||||||
|
You can't reach Guy, the original libpng author, at the addresses
|
||||||
|
given in previous versions of this document. He and Andreas will
|
||||||
|
read mail addressed to the png-mng-implement list, however.
|
||||||
|
|
||||||
|
Please do not send general questions about PNG. Send them to
|
||||||
|
the (png-mng-misc at lists.sourceforge.net, subscription required, visit
|
||||||
|
https://lists.sourceforge.net/lists/listinfo/png-mng-misc to
|
||||||
|
subscribe). On the other hand, please do not send libpng questions to
|
||||||
|
that address, send them to me or to the png-mng-implement list. I'll
|
||||||
|
get them in the end anyway. If you have a question about something
|
||||||
|
in the PNG specification that is related to using libpng, send it
|
||||||
|
to me. Send me any questions that start with "I was using libpng,
|
||||||
|
and ...". If in doubt, send questions to me. I'll bounce them
|
||||||
|
to others, if necessary.
|
||||||
|
|
||||||
|
Please do not send suggestions on how to change PNG. We have
|
||||||
|
been discussing PNG for twenty years now, and it is official and
|
||||||
|
finished. If you have suggestions for libpng, however, I'll
|
||||||
|
gladly listen. Even if your suggestion is not used immediately,
|
||||||
|
it may be used later.
|
||||||
|
|
||||||
|
Files in this distribution:
|
||||||
|
|
||||||
|
ANNOUNCE => Announcement of this version, with recent changes
|
||||||
|
CHANGES => Description of changes between libpng versions
|
||||||
|
KNOWNBUG => List of known bugs and deficiencies
|
||||||
|
LICENSE => License to use and redistribute libpng
|
||||||
|
README => This file
|
||||||
|
TODO => Things not implemented in the current library
|
||||||
|
Y2KINFO => Statement of Y2K compliance
|
||||||
|
example.c => Example code for using libpng functions
|
||||||
|
libpng-*-*-diff.txt => Diff from previous release
|
||||||
|
libpng.3 => manual page for libpng (includes libpng.txt)
|
||||||
|
libpng.txt => Description of libpng and its functions
|
||||||
|
libpngpf.3 => manual page for libpng's private functions
|
||||||
|
png.5 => manual page for the PNG format
|
||||||
|
png.c => Basic interface functions common to library
|
||||||
|
png.h => Library function and interface declarations
|
||||||
|
pngconf.h => System specific library configuration
|
||||||
|
pngerror.c => Error/warning message I/O functions
|
||||||
|
pngget.c => Functions for retrieving info from struct
|
||||||
|
pngmem.c => Memory handling functions
|
||||||
|
pngbar.png => PNG logo, 88x31
|
||||||
|
pngnow.png => PNG logo, 98x31
|
||||||
|
pngpread.c => Progressive reading functions
|
||||||
|
pngread.c => Read data/helper high-level functions
|
||||||
|
pngrio.c => Lowest-level data read I/O functions
|
||||||
|
pngrtran.c => Read data transformation functions
|
||||||
|
pngrutil.c => Read data utility functions
|
||||||
|
pngset.c => Functions for storing data into the info_struct
|
||||||
|
pngtest.c => Library test program
|
||||||
|
pngtest.png => Library test sample image
|
||||||
|
pngtrans.c => Common data transformation functions
|
||||||
|
pngwio.c => Lowest-level write I/O functions
|
||||||
|
pngwrite.c => High-level write functions
|
||||||
|
pngwtran.c => Write data transformations
|
||||||
|
pngwutil.c => Write utility functions
|
||||||
|
contrib => Contributions
|
||||||
|
gregbook => source code for PNG reading and writing, from
|
||||||
|
Greg Roelofs' "PNG: The Definitive Guide",
|
||||||
|
O'Reilly, 1999
|
||||||
|
pngminim => Minimal pnm2pngm and png2pnmm programs
|
||||||
|
pngminus => Simple pnm2png and png2pnm programs
|
||||||
|
pngsuite => Test images
|
||||||
|
visupng => Contains a MSVC workspace for VisualPng
|
||||||
|
projects => Contains project files and workspaces for
|
||||||
|
building a DLL
|
||||||
|
beos => Contains a Beos workspace for building libpng
|
||||||
|
c5builder => Contains a Borland workspace for building
|
||||||
|
libpng and zlib
|
||||||
|
MacOSX => Contains a MacOSX workspace for building libpng
|
||||||
|
netware.txt => Contains instructions for downloading a set
|
||||||
|
of project files for building libpng and
|
||||||
|
zlib on Netware.
|
||||||
|
visualc6 => Contains a Microsoft Visual C++ (MSVC)
|
||||||
|
workspace for building libpng and zlib
|
||||||
|
visualc71 => Contains a Microsoft Visual C++ (MSVC)
|
||||||
|
workspace for building libpng and zlib
|
||||||
|
wince.txt => Contains instructions for downloading a
|
||||||
|
Microsoft Visual C++ (Windows CD Toolkit)
|
||||||
|
workspace for building libpng and zlib on
|
||||||
|
WindowsCE
|
||||||
|
xcode => Contains xcode project files
|
||||||
|
scripts => Directory containing scripts for building libpng:
|
||||||
|
descrip.mms => VMS makefile for MMS or MMK
|
||||||
|
makefile.std => Generic UNIX makefile (cc, creates static
|
||||||
|
libpng.a)
|
||||||
|
makefile.elf => Linux/ELF gcc makefile symbol versioning,
|
||||||
|
creates libpng12.so.0.1.2.59)
|
||||||
|
makefile.linux => Linux/ELF makefile (gcc, creates
|
||||||
|
libpng12.so.0.1.2.59)
|
||||||
|
makefile.gcmmx => Linux/ELF makefile (gcc, creates
|
||||||
|
libpng12.so.0.1.2.59, previously
|
||||||
|
used assembler code tuned for Intel MMX
|
||||||
|
platform)
|
||||||
|
makefile.gcc => Generic makefile (gcc, creates static
|
||||||
|
libpng.a)
|
||||||
|
makefile.knr => Archaic UNIX Makefile that converts files
|
||||||
|
with ansi2knr (Requires ansi2knr.c from
|
||||||
|
ftp://ftp.cs.wisc.edu/ghost)
|
||||||
|
makefile.aix => AIX makefile
|
||||||
|
makefile.cygwin => Cygwin/gcc makefile
|
||||||
|
makefile.darwin => Darwin makefile
|
||||||
|
makefile.dec => DEC Alpha UNIX makefile
|
||||||
|
makefile.freebsd => FreeBSD makefile
|
||||||
|
makefile.hpgcc => HPUX makefile using gcc
|
||||||
|
makefile.hpux => HPUX (10.20 and 11.00) makefile
|
||||||
|
makefile.hp64 => HPUX (10.20 and 11.00) makefile, 64 bit
|
||||||
|
makefile.ibmc => IBM C/C++ version 3.x for Win32 and OS/2
|
||||||
|
(static)
|
||||||
|
makefile.intel => Intel C/C++ version 4.0 and later
|
||||||
|
libpng.icc => Project file, IBM VisualAge/C++ 4.0 or later
|
||||||
|
makefile.netbsd => NetBSD/cc makefile, makes libpng.so.
|
||||||
|
makefile.ne12bsd => NetBSD/cc makefile, makes libpng12.so
|
||||||
|
makefile.openbsd => OpenBSD makefile
|
||||||
|
makefile.sgi => Silicon Graphics IRIX (cc, creates static lib)
|
||||||
|
makefile.sggcc => Silicon Graphics
|
||||||
|
(gcc, creates libpng12.so.0.1.2.59)
|
||||||
|
makefile.sunos => Sun makefile
|
||||||
|
makefile.solaris => Solaris 2.X makefile
|
||||||
|
(gcc, creates libpng12.so.0.1.2.59)
|
||||||
|
makefile.so9 => Solaris 9 makefile
|
||||||
|
(gcc, creates libpng12.so.0.1.2.59)
|
||||||
|
makefile.32sunu => Sun Ultra 32-bit makefile
|
||||||
|
makefile.64sunu => Sun Ultra 64-bit makefile
|
||||||
|
makefile.sco => For SCO OSr5 ELF and Unixware 7 with Native cc
|
||||||
|
makefile.mips => MIPS makefile
|
||||||
|
makefile.acorn => Acorn makefile
|
||||||
|
makefile.amiga => Amiga makefile
|
||||||
|
smakefile.ppc => AMIGA smakefile for SAS C V6.58/7.00 PPC
|
||||||
|
compiler (Requires SCOPTIONS, copied from
|
||||||
|
scripts/SCOPTIONS.ppc)
|
||||||
|
makefile.atari => Atari makefile
|
||||||
|
makefile.beos => BEOS makefile for X86
|
||||||
|
makefile.bor => Borland makefile (uses bcc)
|
||||||
|
makefile.bc32 => 32-bit Borland C++ (all modules compiled in C mode)
|
||||||
|
makefile.tc3 => Turbo C 3.0 makefile
|
||||||
|
makefile.dj2 => DJGPP 2 makefile
|
||||||
|
makefile.msc => Microsoft C makefile
|
||||||
|
makefile.vcawin32=> makefile for Microsoft Visual C++ 5.0 and
|
||||||
|
later (previously used assembler code tuned
|
||||||
|
for Intel MMX platform)
|
||||||
|
makefile.vcwin32 => makefile for Microsoft Visual C++ 4.0 and
|
||||||
|
later (does not use assembler code)
|
||||||
|
makefile.os2 => OS/2 Makefile (gcc and emx, requires pngos2.def)
|
||||||
|
pngos2.def => OS/2 module definition file used by makefile.os2
|
||||||
|
makefile.watcom => Watcom 10a+ Makefile, 32-bit flat memory model
|
||||||
|
makevms.com => VMS build script
|
||||||
|
SCOPTIONS.ppc => Used with smakefile.ppc
|
||||||
|
|
||||||
|
Good luck, and happy coding.
|
||||||
|
|
||||||
|
-Glenn Randers-Pehrson (current maintainer, since 1998)
|
||||||
|
Internet: glennrp at users.sourceforge.net
|
||||||
|
|
||||||
|
-Andreas Eric Dilger (former maintainer, 1996-1997)
|
||||||
|
Internet: adilger at enel.ucalgary.ca
|
||||||
|
Web: http://members.shaw.ca/adilger/
|
||||||
|
|
||||||
|
-Guy Eric Schalnat (original author and former maintainer, 1995-1996)
|
||||||
|
(formerly of Group 42, Inc)
|
||||||
|
Internet: gschal at infinet.com
|
25
dependencies/libpng/src/TODO
vendored
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
TODO - list of things to do for libpng:
|
||||||
|
|
||||||
|
Final bug fixes.
|
||||||
|
Improve API by hiding the png_struct and png_info structs.
|
||||||
|
Finish work on the no-floating-point version (including gamma compensation)
|
||||||
|
Better C++ wrapper/full C++ implementation?
|
||||||
|
Fix problem with C++ and EXTERN "C".
|
||||||
|
cHRM transformation.
|
||||||
|
Improve setjmp/longjmp usage or remove it in favor of returning error codes.
|
||||||
|
Add "grayscale->palette" transformation and "palette->grayscale" detection.
|
||||||
|
Improved dithering.
|
||||||
|
Multi-lingual error and warning message support.
|
||||||
|
Complete sRGB transformation (presently it simply uses gamma=0.45455).
|
||||||
|
Man pages for function calls.
|
||||||
|
Better documentation.
|
||||||
|
Better filter selection
|
||||||
|
(counting huffman bits/precompression? filter inertia? filter costs?).
|
||||||
|
Histogram creation.
|
||||||
|
Text conversion between different code pages (Latin-1 -> Mac and DOS).
|
||||||
|
Should we always malloc 2^bit_depth PLTE/tRNS/hIST entries for safety?
|
||||||
|
Build gamma tables using fixed point (and do away with floating point entirely).
|
||||||
|
Use greater precision when changing to linear gamma for compositing against
|
||||||
|
background and doing rgb-to-gray transformation.
|
||||||
|
Investigate pre-incremented loop counters and other loop constructions.
|
||||||
|
Add interpolated method of handling interlacing.
|
55
dependencies/libpng/src/Y2KINFO
vendored
Normal file
@ -0,0 +1,55 @@
|
|||||||
|
Y2K compliance in libpng:
|
||||||
|
=========================
|
||||||
|
|
||||||
|
September 28, 2017
|
||||||
|
|
||||||
|
Since the PNG Development group is an ad-hoc body, we can't make
|
||||||
|
an official declaration.
|
||||||
|
|
||||||
|
This is your unofficial assurance that libpng from version 0.71 and
|
||||||
|
upward through 1.2.59 are Y2K compliant. It is my belief that earlier
|
||||||
|
versions were also Y2K compliant.
|
||||||
|
|
||||||
|
Libpng only has three year fields. One is a 2-byte unsigned integer
|
||||||
|
that will hold years up to 65535. The other two hold the date in text
|
||||||
|
format, and will hold years up to 9999.
|
||||||
|
|
||||||
|
The integer is
|
||||||
|
"png_uint_16 year" in png_time_struct.
|
||||||
|
|
||||||
|
The strings are
|
||||||
|
"png_charp time_buffer" in png_struct and
|
||||||
|
"near_time_buffer", which is a local character string in png.c.
|
||||||
|
|
||||||
|
There are seven time-related functions:
|
||||||
|
|
||||||
|
png_convert_to_rfc_1123() in png.c
|
||||||
|
(formerly png_convert_to_rfc_1152() in error)
|
||||||
|
png_convert_from_struct_tm() in pngwrite.c, called in pngwrite.c
|
||||||
|
png_convert_from_time_t() in pngwrite.c
|
||||||
|
png_get_tIME() in pngget.c
|
||||||
|
png_handle_tIME() in pngrutil.c, called in pngread.c
|
||||||
|
png_set_tIME() in pngset.c
|
||||||
|
png_write_tIME() in pngwutil.c, called in pngwrite.c
|
||||||
|
|
||||||
|
All appear to handle dates properly in a Y2K environment. The
|
||||||
|
png_convert_from_time_t() function calls gmtime() to convert from system
|
||||||
|
clock time, which returns (year - 1900), which we properly convert to
|
||||||
|
the full 4-digit year. There is a possibility that applications using
|
||||||
|
libpng are not passing 4-digit years into the png_convert_to_rfc_1123()
|
||||||
|
function, or that they are incorrectly passing only a 2-digit year
|
||||||
|
instead of "year - 1900" into the png_convert_from_struct_tm() function,
|
||||||
|
but this is not under our control. The libpng documentation has always
|
||||||
|
stated that it works with 4-digit years, and the APIs have been
|
||||||
|
documented as such.
|
||||||
|
|
||||||
|
The tIME chunk itself is also Y2K compliant. It uses a 2-byte unsigned
|
||||||
|
integer to hold the year, and can hold years as large as 65535.
|
||||||
|
|
||||||
|
zlib, upon which libpng depends, is also Y2K compliant. It contains
|
||||||
|
no date-related code.
|
||||||
|
|
||||||
|
|
||||||
|
Glenn Randers-Pehrson
|
||||||
|
libpng maintainer
|
||||||
|
PNG Development Group
|
10217
dependencies/libpng/src/aclocal.m4
vendored
Normal file
25
dependencies/libpng/src/autogen.sh
vendored
Executable file
@ -0,0 +1,25 @@
|
|||||||
|
#! /bin/sh
|
||||||
|
# a quick hack script to generate necessary files from
|
||||||
|
# auto* tools.
|
||||||
|
#
|
||||||
|
# WARNING: if you run this you will change the versions
|
||||||
|
# of the tools which are used and, maybe, required!
|
||||||
|
touch Makefile.am configure.ac
|
||||||
|
{
|
||||||
|
echo "running libtoolize" >&2
|
||||||
|
libtoolize --force --copy --automake
|
||||||
|
} && {
|
||||||
|
echo "running aclocal" >&2
|
||||||
|
aclocal
|
||||||
|
} && {
|
||||||
|
echo "running autoheader [ignore the warnings]" >&2
|
||||||
|
autoheader
|
||||||
|
} && {
|
||||||
|
echo "running automake" >&2
|
||||||
|
automake --force-missing --foreign -a -c
|
||||||
|
} && {
|
||||||
|
echo "running autoconf" >&2
|
||||||
|
autoconf
|
||||||
|
} &&
|
||||||
|
echo "autogen complete" >&2 ||
|
||||||
|
echo "ERROR: autogen.sh failed, autogen is incomplete" >&2
|
347
dependencies/libpng/src/compile
vendored
Normal file
@ -0,0 +1,347 @@
|
|||||||
|
#! /bin/sh
|
||||||
|
# Wrapper for compilers which do not understand '-c -o'.
|
||||||
|
|
||||||
|
scriptversion=2012-10-14.11; # UTC
|
||||||
|
|
||||||
|
# Copyright (C) 1999-2014 Free Software Foundation, Inc.
|
||||||
|
# Written by Tom Tromey <tromey@cygnus.com>.
|
||||||
|
#
|
||||||
|
# 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 2, 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/>.
|
||||||
|
|
||||||
|
# As a special exception to the GNU General Public License, if you
|
||||||
|
# distribute this file as part of a program that contains a
|
||||||
|
# configuration script generated by Autoconf, you may include it under
|
||||||
|
# the same distribution terms that you use for the rest of that program.
|
||||||
|
|
||||||
|
# This file is maintained in Automake, please report
|
||||||
|
# bugs to <bug-automake@gnu.org> or send patches to
|
||||||
|
# <automake-patches@gnu.org>.
|
||||||
|
|
||||||
|
nl='
|
||||||
|
'
|
||||||
|
|
||||||
|
# We need space, tab and new line, in precisely that order. Quoting is
|
||||||
|
# there to prevent tools from complaining about whitespace usage.
|
||||||
|
IFS=" "" $nl"
|
||||||
|
|
||||||
|
file_conv=
|
||||||
|
|
||||||
|
# func_file_conv build_file lazy
|
||||||
|
# Convert a $build file to $host form and store it in $file
|
||||||
|
# Currently only supports Windows hosts. If the determined conversion
|
||||||
|
# type is listed in (the comma separated) LAZY, no conversion will
|
||||||
|
# take place.
|
||||||
|
func_file_conv ()
|
||||||
|
{
|
||||||
|
file=$1
|
||||||
|
case $file in
|
||||||
|
/ | /[!/]*) # absolute file, and not a UNC file
|
||||||
|
if test -z "$file_conv"; then
|
||||||
|
# lazily determine how to convert abs files
|
||||||
|
case `uname -s` in
|
||||||
|
MINGW*)
|
||||||
|
file_conv=mingw
|
||||||
|
;;
|
||||||
|
CYGWIN*)
|
||||||
|
file_conv=cygwin
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
file_conv=wine
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
fi
|
||||||
|
case $file_conv/,$2, in
|
||||||
|
*,$file_conv,*)
|
||||||
|
;;
|
||||||
|
mingw/*)
|
||||||
|
file=`cmd //C echo "$file " | sed -e 's/"\(.*\) " *$/\1/'`
|
||||||
|
;;
|
||||||
|
cygwin/*)
|
||||||
|
file=`cygpath -m "$file" || echo "$file"`
|
||||||
|
;;
|
||||||
|
wine/*)
|
||||||
|
file=`winepath -w "$file" || echo "$file"`
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
}
|
||||||
|
|
||||||
|
# func_cl_dashL linkdir
|
||||||
|
# Make cl look for libraries in LINKDIR
|
||||||
|
func_cl_dashL ()
|
||||||
|
{
|
||||||
|
func_file_conv "$1"
|
||||||
|
if test -z "$lib_path"; then
|
||||||
|
lib_path=$file
|
||||||
|
else
|
||||||
|
lib_path="$lib_path;$file"
|
||||||
|
fi
|
||||||
|
linker_opts="$linker_opts -LIBPATH:$file"
|
||||||
|
}
|
||||||
|
|
||||||
|
# func_cl_dashl library
|
||||||
|
# Do a library search-path lookup for cl
|
||||||
|
func_cl_dashl ()
|
||||||
|
{
|
||||||
|
lib=$1
|
||||||
|
found=no
|
||||||
|
save_IFS=$IFS
|
||||||
|
IFS=';'
|
||||||
|
for dir in $lib_path $LIB
|
||||||
|
do
|
||||||
|
IFS=$save_IFS
|
||||||
|
if $shared && test -f "$dir/$lib.dll.lib"; then
|
||||||
|
found=yes
|
||||||
|
lib=$dir/$lib.dll.lib
|
||||||
|
break
|
||||||
|
fi
|
||||||
|
if test -f "$dir/$lib.lib"; then
|
||||||
|
found=yes
|
||||||
|
lib=$dir/$lib.lib
|
||||||
|
break
|
||||||
|
fi
|
||||||
|
if test -f "$dir/lib$lib.a"; then
|
||||||
|
found=yes
|
||||||
|
lib=$dir/lib$lib.a
|
||||||
|
break
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
IFS=$save_IFS
|
||||||
|
|
||||||
|
if test "$found" != yes; then
|
||||||
|
lib=$lib.lib
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
# func_cl_wrapper cl arg...
|
||||||
|
# Adjust compile command to suit cl
|
||||||
|
func_cl_wrapper ()
|
||||||
|
{
|
||||||
|
# Assume a capable shell
|
||||||
|
lib_path=
|
||||||
|
shared=:
|
||||||
|
linker_opts=
|
||||||
|
for arg
|
||||||
|
do
|
||||||
|
if test -n "$eat"; then
|
||||||
|
eat=
|
||||||
|
else
|
||||||
|
case $1 in
|
||||||
|
-o)
|
||||||
|
# configure might choose to run compile as 'compile cc -o foo foo.c'.
|
||||||
|
eat=1
|
||||||
|
case $2 in
|
||||||
|
*.o | *.[oO][bB][jJ])
|
||||||
|
func_file_conv "$2"
|
||||||
|
set x "$@" -Fo"$file"
|
||||||
|
shift
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
func_file_conv "$2"
|
||||||
|
set x "$@" -Fe"$file"
|
||||||
|
shift
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
;;
|
||||||
|
-I)
|
||||||
|
eat=1
|
||||||
|
func_file_conv "$2" mingw
|
||||||
|
set x "$@" -I"$file"
|
||||||
|
shift
|
||||||
|
;;
|
||||||
|
-I*)
|
||||||
|
func_file_conv "${1#-I}" mingw
|
||||||
|
set x "$@" -I"$file"
|
||||||
|
shift
|
||||||
|
;;
|
||||||
|
-l)
|
||||||
|
eat=1
|
||||||
|
func_cl_dashl "$2"
|
||||||
|
set x "$@" "$lib"
|
||||||
|
shift
|
||||||
|
;;
|
||||||
|
-l*)
|
||||||
|
func_cl_dashl "${1#-l}"
|
||||||
|
set x "$@" "$lib"
|
||||||
|
shift
|
||||||
|
;;
|
||||||
|
-L)
|
||||||
|
eat=1
|
||||||
|
func_cl_dashL "$2"
|
||||||
|
;;
|
||||||
|
-L*)
|
||||||
|
func_cl_dashL "${1#-L}"
|
||||||
|
;;
|
||||||
|
-static)
|
||||||
|
shared=false
|
||||||
|
;;
|
||||||
|
-Wl,*)
|
||||||
|
arg=${1#-Wl,}
|
||||||
|
save_ifs="$IFS"; IFS=','
|
||||||
|
for flag in $arg; do
|
||||||
|
IFS="$save_ifs"
|
||||||
|
linker_opts="$linker_opts $flag"
|
||||||
|
done
|
||||||
|
IFS="$save_ifs"
|
||||||
|
;;
|
||||||
|
-Xlinker)
|
||||||
|
eat=1
|
||||||
|
linker_opts="$linker_opts $2"
|
||||||
|
;;
|
||||||
|
-*)
|
||||||
|
set x "$@" "$1"
|
||||||
|
shift
|
||||||
|
;;
|
||||||
|
*.cc | *.CC | *.cxx | *.CXX | *.[cC]++)
|
||||||
|
func_file_conv "$1"
|
||||||
|
set x "$@" -Tp"$file"
|
||||||
|
shift
|
||||||
|
;;
|
||||||
|
*.c | *.cpp | *.CPP | *.lib | *.LIB | *.Lib | *.OBJ | *.obj | *.[oO])
|
||||||
|
func_file_conv "$1" mingw
|
||||||
|
set x "$@" "$file"
|
||||||
|
shift
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
set x "$@" "$1"
|
||||||
|
shift
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
fi
|
||||||
|
shift
|
||||||
|
done
|
||||||
|
if test -n "$linker_opts"; then
|
||||||
|
linker_opts="-link$linker_opts"
|
||||||
|
fi
|
||||||
|
exec "$@" $linker_opts
|
||||||
|
exit 1
|
||||||
|
}
|
||||||
|
|
||||||
|
eat=
|
||||||
|
|
||||||
|
case $1 in
|
||||||
|
'')
|
||||||
|
echo "$0: No command. Try '$0 --help' for more information." 1>&2
|
||||||
|
exit 1;
|
||||||
|
;;
|
||||||
|
-h | --h*)
|
||||||
|
cat <<\EOF
|
||||||
|
Usage: compile [--help] [--version] PROGRAM [ARGS]
|
||||||
|
|
||||||
|
Wrapper for compilers which do not understand '-c -o'.
|
||||||
|
Remove '-o dest.o' from ARGS, run PROGRAM with the remaining
|
||||||
|
arguments, and rename the output as expected.
|
||||||
|
|
||||||
|
If you are trying to build a whole package this is not the
|
||||||
|
right script to run: please start by reading the file 'INSTALL'.
|
||||||
|
|
||||||
|
Report bugs to <bug-automake@gnu.org>.
|
||||||
|
EOF
|
||||||
|
exit $?
|
||||||
|
;;
|
||||||
|
-v | --v*)
|
||||||
|
echo "compile $scriptversion"
|
||||||
|
exit $?
|
||||||
|
;;
|
||||||
|
cl | *[/\\]cl | cl.exe | *[/\\]cl.exe )
|
||||||
|
func_cl_wrapper "$@" # Doesn't return...
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
ofile=
|
||||||
|
cfile=
|
||||||
|
|
||||||
|
for arg
|
||||||
|
do
|
||||||
|
if test -n "$eat"; then
|
||||||
|
eat=
|
||||||
|
else
|
||||||
|
case $1 in
|
||||||
|
-o)
|
||||||
|
# configure might choose to run compile as 'compile cc -o foo foo.c'.
|
||||||
|
# So we strip '-o arg' only if arg is an object.
|
||||||
|
eat=1
|
||||||
|
case $2 in
|
||||||
|
*.o | *.obj)
|
||||||
|
ofile=$2
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
set x "$@" -o "$2"
|
||||||
|
shift
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
;;
|
||||||
|
*.c)
|
||||||
|
cfile=$1
|
||||||
|
set x "$@" "$1"
|
||||||
|
shift
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
set x "$@" "$1"
|
||||||
|
shift
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
fi
|
||||||
|
shift
|
||||||
|
done
|
||||||
|
|
||||||
|
if test -z "$ofile" || test -z "$cfile"; then
|
||||||
|
# If no '-o' option was seen then we might have been invoked from a
|
||||||
|
# pattern rule where we don't need one. That is ok -- this is a
|
||||||
|
# normal compilation that the losing compiler can handle. If no
|
||||||
|
# '.c' file was seen then we are probably linking. That is also
|
||||||
|
# ok.
|
||||||
|
exec "$@"
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Name of file we expect compiler to create.
|
||||||
|
cofile=`echo "$cfile" | sed 's|^.*[\\/]||; s|^[a-zA-Z]:||; s/\.c$/.o/'`
|
||||||
|
|
||||||
|
# Create the lock directory.
|
||||||
|
# Note: use '[/\\:.-]' here to ensure that we don't use the same name
|
||||||
|
# that we are using for the .o file. Also, base the name on the expected
|
||||||
|
# object file name, since that is what matters with a parallel build.
|
||||||
|
lockdir=`echo "$cofile" | sed -e 's|[/\\:.-]|_|g'`.d
|
||||||
|
while true; do
|
||||||
|
if mkdir "$lockdir" >/dev/null 2>&1; then
|
||||||
|
break
|
||||||
|
fi
|
||||||
|
sleep 1
|
||||||
|
done
|
||||||
|
# FIXME: race condition here if user kills between mkdir and trap.
|
||||||
|
trap "rmdir '$lockdir'; exit 1" 1 2 15
|
||||||
|
|
||||||
|
# Run the compile.
|
||||||
|
"$@"
|
||||||
|
ret=$?
|
||||||
|
|
||||||
|
if test -f "$cofile"; then
|
||||||
|
test "$cofile" = "$ofile" || mv "$cofile" "$ofile"
|
||||||
|
elif test -f "${cofile}bj"; then
|
||||||
|
test "${cofile}bj" = "$ofile" || mv "${cofile}bj" "$ofile"
|
||||||
|
fi
|
||||||
|
|
||||||
|
rmdir "$lockdir"
|
||||||
|
exit $ret
|
||||||
|
|
||||||
|
# Local Variables:
|
||||||
|
# mode: shell-script
|
||||||
|
# sh-indentation: 2
|
||||||
|
# eval: (add-hook 'write-file-hooks 'time-stamp)
|
||||||
|
# time-stamp-start: "scriptversion="
|
||||||
|
# time-stamp-format: "%:y-%02m-%02d.%02H"
|
||||||
|
# time-stamp-time-zone: "UTC"
|
||||||
|
# time-stamp-end: "; # UTC"
|
||||||
|
# End:
|
1421
dependencies/libpng/src/config.guess
vendored
Executable file
85
dependencies/libpng/src/config.h.in
vendored
Normal file
@ -0,0 +1,85 @@
|
|||||||
|
/* config.h.in. Generated from configure.ac by autoheader. */
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <dlfcn.h> header file. */
|
||||||
|
#undef HAVE_DLFCN_H
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <inttypes.h> header file. */
|
||||||
|
#undef HAVE_INTTYPES_H
|
||||||
|
|
||||||
|
/* Define to 1 if you have the `m' library (-lm). */
|
||||||
|
#undef HAVE_LIBM
|
||||||
|
|
||||||
|
/* Define to 1 if you have the `z' library (-lz). */
|
||||||
|
#undef HAVE_LIBZ
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <malloc.h> header file. */
|
||||||
|
#undef HAVE_MALLOC_H
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <memory.h> header file. */
|
||||||
|
#undef HAVE_MEMORY_H
|
||||||
|
|
||||||
|
/* Define to 1 if you have the `memset' function. */
|
||||||
|
#undef HAVE_MEMSET
|
||||||
|
|
||||||
|
/* Define to 1 if you have the `pow' function. */
|
||||||
|
#undef HAVE_POW
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <stdint.h> header file. */
|
||||||
|
#undef HAVE_STDINT_H
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <stdlib.h> header file. */
|
||||||
|
#undef HAVE_STDLIB_H
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <strings.h> header file. */
|
||||||
|
#undef HAVE_STRINGS_H
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <string.h> header file. */
|
||||||
|
#undef HAVE_STRING_H
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <sys/stat.h> header file. */
|
||||||
|
#undef HAVE_SYS_STAT_H
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <sys/types.h> header file. */
|
||||||
|
#undef HAVE_SYS_TYPES_H
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <unistd.h> header file. */
|
||||||
|
#undef HAVE_UNISTD_H
|
||||||
|
|
||||||
|
/* Define to the sub-directory where libtool stores uninstalled libraries. */
|
||||||
|
#undef LT_OBJDIR
|
||||||
|
|
||||||
|
/* Name of package */
|
||||||
|
#undef PACKAGE
|
||||||
|
|
||||||
|
/* Define to the address where bug reports for this package should be sent. */
|
||||||
|
#undef PACKAGE_BUGREPORT
|
||||||
|
|
||||||
|
/* Define to the full name of this package. */
|
||||||
|
#undef PACKAGE_NAME
|
||||||
|
|
||||||
|
/* Define to the full name and version of this package. */
|
||||||
|
#undef PACKAGE_STRING
|
||||||
|
|
||||||
|
/* Define to the one symbol short name of this package. */
|
||||||
|
#undef PACKAGE_TARNAME
|
||||||
|
|
||||||
|
/* Define to the home page for this package. */
|
||||||
|
#undef PACKAGE_URL
|
||||||
|
|
||||||
|
/* Define to the version of this package. */
|
||||||
|
#undef PACKAGE_VERSION
|
||||||
|
|
||||||
|
/* Define to 1 if you have the ANSI C header files. */
|
||||||
|
#undef STDC_HEADERS
|
||||||
|
|
||||||
|
/* Define to 1 if your <sys/time.h> declares `struct tm'. */
|
||||||
|
#undef TM_IN_SYS_TIME
|
||||||
|
|
||||||
|
/* Version number of package */
|
||||||
|
#undef VERSION
|
||||||
|
|
||||||
|
/* Define to empty if `const' does not conform to ANSI C. */
|
||||||
|
#undef const
|
||||||
|
|
||||||
|
/* Define to `unsigned int' if <sys/types.h> does not define. */
|
||||||
|
#undef size_t
|
1807
dependencies/libpng/src/config.sub
vendored
Executable file
15380
dependencies/libpng/src/configure
vendored
Executable file
153
dependencies/libpng/src/configure.ac
vendored
Normal file
@ -0,0 +1,153 @@
|
|||||||
|
# configure.ac
|
||||||
|
|
||||||
|
dnl Process this file with autoconf to produce a configure script.
|
||||||
|
dnl
|
||||||
|
dnl Minor upgrades (compatible ABI): increment the package version
|
||||||
|
dnl (third field in two places below) and set the PNGLIB_RELEASE
|
||||||
|
dnl variable.
|
||||||
|
dnl
|
||||||
|
dnl Major upgrades (incompatible ABI): increment the package major
|
||||||
|
dnl version (second field, or first if desired), set the minor
|
||||||
|
dnl to 0, set PNGLIB_MAJOR below *and* follow the instructions in
|
||||||
|
dnl Makefile.am to upgrade the package name.
|
||||||
|
|
||||||
|
dnl This is here to prevent earlier autoconf from being used, it
|
||||||
|
dnl should not be necessary to regenerate configure if the time
|
||||||
|
dnl stamps are correct
|
||||||
|
AC_PREREQ(2.59)
|
||||||
|
|
||||||
|
dnl Version number stuff here:
|
||||||
|
|
||||||
|
AC_INIT([libpng], [1.2.59], [png-mng-implement@lists.sourceforge.net])
|
||||||
|
AM_INIT_AUTOMAKE
|
||||||
|
dnl stop configure from automagically running automake
|
||||||
|
AM_MAINTAINER_MODE
|
||||||
|
|
||||||
|
PNGLIB_VERSION=1.2.59
|
||||||
|
PNGLIB_MAJOR=1
|
||||||
|
PNGLIB_MINOR=2
|
||||||
|
PNGLIB_RELEASE=59
|
||||||
|
|
||||||
|
dnl End of version number stuff
|
||||||
|
|
||||||
|
AC_CONFIG_SRCDIR([pngget.c])
|
||||||
|
AC_CONFIG_HEADERS([config.h])
|
||||||
|
|
||||||
|
# Checks for programs.
|
||||||
|
AC_PROG_CC
|
||||||
|
AC_PROG_LD
|
||||||
|
AC_PROG_CPP
|
||||||
|
AC_CHECK_TOOL(SED, sed, :)
|
||||||
|
AC_LIBTOOL_WIN32_DLL
|
||||||
|
AC_PROG_INSTALL
|
||||||
|
AC_PROG_LN_S
|
||||||
|
AC_PROG_MAKE_SET
|
||||||
|
AC_PROG_LIBTOOL
|
||||||
|
|
||||||
|
# Checks for header files.
|
||||||
|
AC_HEADER_STDC
|
||||||
|
AC_CHECK_HEADERS([malloc.h stdlib.h string.h strings.h])
|
||||||
|
|
||||||
|
# Checks for typedefs, structures, and compiler characteristics.
|
||||||
|
AC_C_CONST
|
||||||
|
AC_TYPE_SIZE_T
|
||||||
|
AC_STRUCT_TM
|
||||||
|
|
||||||
|
# Checks for library functions.
|
||||||
|
AC_FUNC_STRTOD
|
||||||
|
AC_CHECK_FUNCS([memset], , AC_ERROR([memset not found in libc]))
|
||||||
|
AC_CHECK_FUNCS([pow], , AC_CHECK_LIB(m, pow, , AC_ERROR([cannot find pow])) )
|
||||||
|
AC_CHECK_LIB(z, zlibVersion, , AC_ERROR([zlib not installed]))
|
||||||
|
|
||||||
|
case $host_os in
|
||||||
|
aix*)
|
||||||
|
LIBPNG_DEFINES=-DPNG_CONFIGURE_LIBPNG -D_ALL_SOURCE;;
|
||||||
|
*)
|
||||||
|
LIBPNG_DEFINES=-DPNG_CONFIGURE_LIBPNG;;
|
||||||
|
esac
|
||||||
|
AC_MSG_CHECKING(
|
||||||
|
[if assembler code in pnggccrd.c can be compiled without PNG_NO_MMX_CODE])
|
||||||
|
AC_TRY_COMPILE(
|
||||||
|
[#include "$srcdir/pnggccrd.c"],
|
||||||
|
[return 0;],
|
||||||
|
AC_MSG_RESULT(yes)
|
||||||
|
LIBPNG_NO_MMX="",
|
||||||
|
AC_MSG_RESULT(no)
|
||||||
|
LIBPNG_NO_MMX=-DPNG_NO_MMX_CODE)
|
||||||
|
LIBPNG_DEFINES=$LIBPNG_DEFINES\ $LIBPNG_NO_MMX
|
||||||
|
AC_SUBST(LIBPNG_DEFINES)
|
||||||
|
AC_SUBST(LIBPNG_NO_MMX)
|
||||||
|
|
||||||
|
AC_MSG_CHECKING([if libraries can be versioned])
|
||||||
|
GLD=`$LD --help < /dev/null 2>/dev/null | grep version-script`
|
||||||
|
if test "$GLD"; then
|
||||||
|
have_ld_version_script=yes
|
||||||
|
AC_MSG_RESULT(yes)
|
||||||
|
else
|
||||||
|
have_ld_version_script=no
|
||||||
|
AC_MSG_RESULT(no)
|
||||||
|
AC_MSG_WARN(*** You have not enabled versioned symbols.)
|
||||||
|
fi
|
||||||
|
AM_CONDITIONAL(HAVE_LD_VERSION_SCRIPT, test "$have_ld_version_script" = "yes")
|
||||||
|
|
||||||
|
if test "$have_ld_version_script" = "yes"; then
|
||||||
|
AC_MSG_CHECKING([for symbol prefix])
|
||||||
|
SYMBOL_PREFIX=`echo "PREFIX=__USER_LABEL_PREFIX__" \
|
||||||
|
| ${CPP-${CC-gcc} -E} - 2>&1 \
|
||||||
|
| ${EGREP-grep} "^PREFIX=" \
|
||||||
|
| ${SED-sed} "s:^PREFIX=::"`
|
||||||
|
AC_SUBST(SYMBOL_PREFIX)
|
||||||
|
AC_MSG_RESULT($SYMBOL_PREFIX)
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Substitutions for .in files
|
||||||
|
AC_SUBST(PNGLIB_VERSION)
|
||||||
|
AC_SUBST(PNGLIB_MAJOR)
|
||||||
|
AC_SUBST(PNGLIB_MINOR)
|
||||||
|
AC_SUBST(PNGLIB_RELEASE)
|
||||||
|
|
||||||
|
# Additional arguments (and substitutions)
|
||||||
|
# Allow the pkg-config directory to be set
|
||||||
|
AC_ARG_WITH(pkgconfigdir,
|
||||||
|
AC_HELP_STRING([--with-pkgconfigdir],
|
||||||
|
[Use the specified pkgconfig dir (default is libdir/pkgconfig)]),
|
||||||
|
[pkgconfigdir=${withval}],
|
||||||
|
[pkgconfigdir='${libdir}/pkgconfig'])
|
||||||
|
|
||||||
|
AC_SUBST([pkgconfigdir])
|
||||||
|
AC_MSG_NOTICE([pkgconfig directory is ${pkgconfigdir}])
|
||||||
|
|
||||||
|
# Make the *-config binary config scripts optional
|
||||||
|
AC_ARG_WITH(binconfigs,
|
||||||
|
AC_HELP_STRING([--with-binconfigs],
|
||||||
|
[Generate shell libpng-config scripts as well as pkg-config data]
|
||||||
|
[@<:@default=yes@:>@]),
|
||||||
|
[if test "${withval}" = no; then
|
||||||
|
binconfigs=
|
||||||
|
AC_MSG_NOTICE([libpng-config scripts will not be built])
|
||||||
|
else
|
||||||
|
binconfigs='${binconfigs}'
|
||||||
|
fi],
|
||||||
|
[binconfigs='${binconfigs}'])
|
||||||
|
AC_SUBST([binconfigs])
|
||||||
|
|
||||||
|
# Allow the old version number library, libpng.so, to be removed from
|
||||||
|
# the build
|
||||||
|
AC_ARG_WITH(libpng-compat,
|
||||||
|
AC_HELP_STRING([--with-libpng-compat],
|
||||||
|
[Generate the obsolete libpng.so library @<:@default=yes@:>@]),
|
||||||
|
[if test "${withval}" = no; then
|
||||||
|
compatlib=
|
||||||
|
AC_MSG_NOTICE([libpng.so will not be built])
|
||||||
|
else
|
||||||
|
compatlib=libpng.la
|
||||||
|
fi],
|
||||||
|
[compatlib=libpng.la])
|
||||||
|
AC_SUBST([compatlib])
|
||||||
|
|
||||||
|
# Config files, substituting as above
|
||||||
|
AC_CONFIG_FILES([Makefile libpng.pc:scripts/libpng.pc-configure.in])
|
||||||
|
AC_CONFIG_FILES([libpng-config:scripts/libpng-config.in],
|
||||||
|
[chmod +x libpng-config])
|
||||||
|
|
||||||
|
AC_OUTPUT
|
340
dependencies/libpng/src/contrib/gregbook/COPYING
vendored
Normal file
@ -0,0 +1,340 @@
|
|||||||
|
GNU GENERAL PUBLIC LICENSE
|
||||||
|
Version 2, June 1991
|
||||||
|
|
||||||
|
Copyright (C) 1989, 1991 Free Software Foundation, Inc.
|
||||||
|
59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
|
Everyone is permitted to copy and distribute verbatim copies
|
||||||
|
of this license document, but changing it is not allowed.
|
||||||
|
|
||||||
|
Preamble
|
||||||
|
|
||||||
|
The licenses for most software are designed to take away your
|
||||||
|
freedom to share and change it. By contrast, the GNU General Public
|
||||||
|
License is intended to guarantee your freedom to share and change free
|
||||||
|
software--to make sure the software is free for all its users. This
|
||||||
|
General Public License applies to most of the Free Software
|
||||||
|
Foundation's software and to any other program whose authors commit to
|
||||||
|
using it. (Some other Free Software Foundation software is covered by
|
||||||
|
the GNU Library General Public License instead.) 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
|
||||||
|
this service 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 make restrictions that forbid
|
||||||
|
anyone to deny you these rights or to ask you to surrender the rights.
|
||||||
|
These restrictions translate to certain responsibilities for you if you
|
||||||
|
distribute copies of the software, or if you modify it.
|
||||||
|
|
||||||
|
For example, if you distribute copies of such a program, whether
|
||||||
|
gratis or for a fee, you must give the recipients all the rights that
|
||||||
|
you have. 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.
|
||||||
|
|
||||||
|
We protect your rights with two steps: (1) copyright the software, and
|
||||||
|
(2) offer you this license which gives you legal permission to copy,
|
||||||
|
distribute and/or modify the software.
|
||||||
|
|
||||||
|
Also, for each author's protection and ours, we want to make certain
|
||||||
|
that everyone understands that there is no warranty for this free
|
||||||
|
software. If the software is modified by someone else and passed on, we
|
||||||
|
want its recipients to know that what they have is not the original, so
|
||||||
|
that any problems introduced by others will not reflect on the original
|
||||||
|
authors' reputations.
|
||||||
|
|
||||||
|
Finally, any free program is threatened constantly by software
|
||||||
|
patents. We wish to avoid the danger that redistributors of a free
|
||||||
|
program will individually obtain patent licenses, in effect making the
|
||||||
|
program proprietary. To prevent this, we have made it clear that any
|
||||||
|
patent must be licensed for everyone's free use or not licensed at all.
|
||||||
|
|
||||||
|
The precise terms and conditions for copying, distribution and
|
||||||
|
modification follow.
|
||||||
|
|
||||||
|
GNU GENERAL PUBLIC LICENSE
|
||||||
|
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
|
||||||
|
|
||||||
|
0. This License applies to any program or other work which contains
|
||||||
|
a notice placed by the copyright holder saying it may be distributed
|
||||||
|
under the terms of this General Public License. The "Program", below,
|
||||||
|
refers to any such program or work, and a "work based on the Program"
|
||||||
|
means either the Program or any derivative work under copyright law:
|
||||||
|
that is to say, a work containing the Program or a portion of it,
|
||||||
|
either verbatim or with modifications and/or translated into another
|
||||||
|
language. (Hereinafter, translation is included without limitation in
|
||||||
|
the term "modification".) Each licensee is addressed as "you".
|
||||||
|
|
||||||
|
Activities other than copying, distribution and modification are not
|
||||||
|
covered by this License; they are outside its scope. The act of
|
||||||
|
running the Program is not restricted, and the output from the Program
|
||||||
|
is covered only if its contents constitute a work based on the
|
||||||
|
Program (independent of having been made by running the Program).
|
||||||
|
Whether that is true depends on what the Program does.
|
||||||
|
|
||||||
|
1. You may copy and distribute 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 and disclaimer of warranty; keep intact all the
|
||||||
|
notices that refer to this License and to the absence of any warranty;
|
||||||
|
and give any other recipients of the Program a copy of this License
|
||||||
|
along with the Program.
|
||||||
|
|
||||||
|
You may charge a fee for the physical act of transferring a copy, and
|
||||||
|
you may at your option offer warranty protection in exchange for a fee.
|
||||||
|
|
||||||
|
2. You may modify your copy or copies of the Program or any portion
|
||||||
|
of it, thus forming a work based on the Program, and copy and
|
||||||
|
distribute such modifications or work under the terms of Section 1
|
||||||
|
above, provided that you also meet all of these conditions:
|
||||||
|
|
||||||
|
a) You must cause the modified files to carry prominent notices
|
||||||
|
stating that you changed the files and the date of any change.
|
||||||
|
|
||||||
|
b) You must cause any work that you distribute or publish, that in
|
||||||
|
whole or in part contains or is derived from the Program or any
|
||||||
|
part thereof, to be licensed as a whole at no charge to all third
|
||||||
|
parties under the terms of this License.
|
||||||
|
|
||||||
|
c) If the modified program normally reads commands interactively
|
||||||
|
when run, you must cause it, when started running for such
|
||||||
|
interactive use in the most ordinary way, to print or display an
|
||||||
|
announcement including an appropriate copyright notice and a
|
||||||
|
notice that there is no warranty (or else, saying that you provide
|
||||||
|
a warranty) and that users may redistribute the program under
|
||||||
|
these conditions, and telling the user how to view a copy of this
|
||||||
|
License. (Exception: if the Program itself is interactive but
|
||||||
|
does not normally print such an announcement, your work based on
|
||||||
|
the Program is not required to print an announcement.)
|
||||||
|
|
||||||
|
These requirements apply to the modified work as a whole. If
|
||||||
|
identifiable sections of that work are not derived from the Program,
|
||||||
|
and can be reasonably considered independent and separate works in
|
||||||
|
themselves, then this License, and its terms, do not apply to those
|
||||||
|
sections when you distribute them as separate works. But when you
|
||||||
|
distribute the same sections as part of a whole which is a work based
|
||||||
|
on the Program, the distribution of the whole must be on the terms of
|
||||||
|
this License, whose permissions for other licensees extend to the
|
||||||
|
entire whole, and thus to each and every part regardless of who wrote it.
|
||||||
|
|
||||||
|
Thus, it is not the intent of this section to claim rights or contest
|
||||||
|
your rights to work written entirely by you; rather, the intent is to
|
||||||
|
exercise the right to control the distribution of derivative or
|
||||||
|
collective works based on the Program.
|
||||||
|
|
||||||
|
In addition, mere aggregation of another work not based on the Program
|
||||||
|
with the Program (or with a work based on the Program) on a volume of
|
||||||
|
a storage or distribution medium does not bring the other work under
|
||||||
|
the scope of this License.
|
||||||
|
|
||||||
|
3. You may copy and distribute the Program (or a work based on it,
|
||||||
|
under Section 2) in object code or executable form under the terms of
|
||||||
|
Sections 1 and 2 above provided that you also do one of the following:
|
||||||
|
|
||||||
|
a) Accompany it with the complete corresponding machine-readable
|
||||||
|
source code, which must be distributed under the terms of Sections
|
||||||
|
1 and 2 above on a medium customarily used for software interchange; or,
|
||||||
|
|
||||||
|
b) Accompany it with a written offer, valid for at least three
|
||||||
|
years, to give any third party, for a charge no more than your
|
||||||
|
cost of physically performing source distribution, a complete
|
||||||
|
machine-readable copy of the corresponding source code, to be
|
||||||
|
distributed under the terms of Sections 1 and 2 above on a medium
|
||||||
|
customarily used for software interchange; or,
|
||||||
|
|
||||||
|
c) Accompany it with the information you received as to the offer
|
||||||
|
to distribute corresponding source code. (This alternative is
|
||||||
|
allowed only for noncommercial distribution and only if you
|
||||||
|
received the program in object code or executable form with such
|
||||||
|
an offer, in accord with Subsection b above.)
|
||||||
|
|
||||||
|
The source code for a work means the preferred form of the work for
|
||||||
|
making modifications to it. For an executable work, complete source
|
||||||
|
code means all the source code for all modules it contains, plus any
|
||||||
|
associated interface definition files, plus the scripts used to
|
||||||
|
control compilation and installation of the executable. However, as a
|
||||||
|
special exception, the source code distributed need not include
|
||||||
|
anything that is normally distributed (in either source or binary
|
||||||
|
form) with the major components (compiler, kernel, and so on) of the
|
||||||
|
operating system on which the executable runs, unless that component
|
||||||
|
itself accompanies the executable.
|
||||||
|
|
||||||
|
If distribution of executable or object code is made by offering
|
||||||
|
access to copy from a designated place, then offering equivalent
|
||||||
|
access to copy the source code from the same place counts as
|
||||||
|
distribution of the source code, even though third parties are not
|
||||||
|
compelled to copy the source along with the object code.
|
||||||
|
|
||||||
|
4. You may not copy, modify, sublicense, or distribute the Program
|
||||||
|
except as expressly provided under this License. Any attempt
|
||||||
|
otherwise to copy, modify, sublicense or distribute the Program is
|
||||||
|
void, and will automatically terminate your rights under this License.
|
||||||
|
However, parties who have received copies, or rights, from you under
|
||||||
|
this License will not have their licenses terminated so long as such
|
||||||
|
parties remain in full compliance.
|
||||||
|
|
||||||
|
5. You are not required to accept this License, since you have not
|
||||||
|
signed it. However, nothing else grants you permission to modify or
|
||||||
|
distribute the Program or its derivative works. These actions are
|
||||||
|
prohibited by law if you do not accept this License. Therefore, by
|
||||||
|
modifying or distributing the Program (or any work based on the
|
||||||
|
Program), you indicate your acceptance of this License to do so, and
|
||||||
|
all its terms and conditions for copying, distributing or modifying
|
||||||
|
the Program or works based on it.
|
||||||
|
|
||||||
|
6. Each time you redistribute the Program (or any work based on the
|
||||||
|
Program), the recipient automatically receives a license from the
|
||||||
|
original licensor to copy, distribute or modify the Program subject to
|
||||||
|
these terms and conditions. You may not impose any further
|
||||||
|
restrictions on the recipients' exercise of the rights granted herein.
|
||||||
|
You are not responsible for enforcing compliance by third parties to
|
||||||
|
this License.
|
||||||
|
|
||||||
|
7. If, as a consequence of a court judgment or allegation of patent
|
||||||
|
infringement or for any other reason (not limited to patent issues),
|
||||||
|
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
|
||||||
|
distribute so as to satisfy simultaneously your obligations under this
|
||||||
|
License and any other pertinent obligations, then as a consequence you
|
||||||
|
may not distribute the Program at all. For example, if a patent
|
||||||
|
license would not permit royalty-free redistribution of the Program by
|
||||||
|
all those who receive copies directly or indirectly through you, then
|
||||||
|
the only way you could satisfy both it and this License would be to
|
||||||
|
refrain entirely from distribution of the Program.
|
||||||
|
|
||||||
|
If any portion of this section is held invalid or unenforceable under
|
||||||
|
any particular circumstance, the balance of the section is intended to
|
||||||
|
apply and the section as a whole is intended to apply in other
|
||||||
|
circumstances.
|
||||||
|
|
||||||
|
It is not the purpose of this section to induce you to infringe any
|
||||||
|
patents or other property right claims or to contest validity of any
|
||||||
|
such claims; this section has the sole purpose of protecting the
|
||||||
|
integrity of the free software distribution system, which is
|
||||||
|
implemented by public license practices. Many people have made
|
||||||
|
generous contributions to the wide range of software distributed
|
||||||
|
through that system in reliance on consistent application of that
|
||||||
|
system; it is up to the author/donor to decide if he or she is willing
|
||||||
|
to distribute software through any other system and a licensee cannot
|
||||||
|
impose that choice.
|
||||||
|
|
||||||
|
This section is intended to make thoroughly clear what is believed to
|
||||||
|
be a consequence of the rest of this License.
|
||||||
|
|
||||||
|
8. If the distribution and/or use of the Program is restricted in
|
||||||
|
certain countries either by patents or by copyrighted interfaces, the
|
||||||
|
original copyright holder who places the Program under this License
|
||||||
|
may add an explicit geographical distribution limitation excluding
|
||||||
|
those countries, so that distribution is permitted only in or among
|
||||||
|
countries not thus excluded. In such case, this License incorporates
|
||||||
|
the limitation as if written in the body of this License.
|
||||||
|
|
||||||
|
9. The Free Software Foundation may publish revised and/or new versions
|
||||||
|
of the 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 a version number of this License which applies to it and "any
|
||||||
|
later version", you have the option of following the terms and conditions
|
||||||
|
either of that version or of any later version published by the Free
|
||||||
|
Software Foundation. If the Program does not specify a version number of
|
||||||
|
this License, you may choose any version ever published by the Free Software
|
||||||
|
Foundation.
|
||||||
|
|
||||||
|
10. If you wish to incorporate parts of the Program into other free
|
||||||
|
programs whose distribution conditions are different, write to the author
|
||||||
|
to ask for permission. For software which is copyrighted by the Free
|
||||||
|
Software Foundation, write to the Free Software Foundation; we sometimes
|
||||||
|
make exceptions for this. Our decision will be guided by the two goals
|
||||||
|
of preserving the free status of all derivatives of our free software and
|
||||||
|
of promoting the sharing and reuse of software generally.
|
||||||
|
|
||||||
|
NO WARRANTY
|
||||||
|
|
||||||
|
11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, 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.
|
||||||
|
|
||||||
|
12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
||||||
|
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
|
||||||
|
REDISTRIBUTE 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.
|
||||||
|
|
||||||
|
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
|
||||||
|
convey 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 2 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, write to the Free Software
|
||||||
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
|
|
||||||
|
|
||||||
|
Also add information on how to contact you by electronic and paper mail.
|
||||||
|
|
||||||
|
If the program is interactive, make it output a short notice like this
|
||||||
|
when it starts in an interactive mode:
|
||||||
|
|
||||||
|
Gnomovision version 69, Copyright (C) year name of author
|
||||||
|
Gnomovision 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, the commands you use may
|
||||||
|
be called something other than `show w' and `show c'; they could even be
|
||||||
|
mouse-clicks or menu items--whatever suits your program.
|
||||||
|
|
||||||
|
You should also get your employer (if you work as a programmer) or your
|
||||||
|
school, if any, to sign a "copyright disclaimer" for the program, if
|
||||||
|
necessary. Here is a sample; alter the names:
|
||||||
|
|
||||||
|
Yoyodyne, Inc., hereby disclaims all copyright interest in the program
|
||||||
|
`Gnomovision' (which makes passes at compilers) written by James Hacker.
|
||||||
|
|
||||||
|
<signature of Ty Coon>, 1 April 1989
|
||||||
|
Ty Coon, President of Vice
|
||||||
|
|
||||||
|
This 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 Library General
|
||||||
|
Public License instead of this License.
|
50
dependencies/libpng/src/contrib/gregbook/LICENSE
vendored
Normal file
@ -0,0 +1,50 @@
|
|||||||
|
---------------------------------------------------------------------------
|
||||||
|
|
||||||
|
Copyright (c) 1998-2008 Greg Roelofs. All rights reserved.
|
||||||
|
|
||||||
|
This software is provided "as is," without warranty of any kind,
|
||||||
|
express or implied. In no event shall the author or contributors
|
||||||
|
be held liable for any damages arising in any way from the use of
|
||||||
|
this software.
|
||||||
|
|
||||||
|
The contents of this file are DUAL-LICENSED. You may modify and/or
|
||||||
|
redistribute this software according to the terms of one of the
|
||||||
|
following two licenses (at your option):
|
||||||
|
|
||||||
|
|
||||||
|
LICENSE 1 ("BSD-like with advertising clause"):
|
||||||
|
|
||||||
|
Permission is granted to anyone to use this software for any purpose,
|
||||||
|
including commercial applications, and to alter it and redistribute
|
||||||
|
it freely, subject to the following restrictions:
|
||||||
|
|
||||||
|
1. Redistributions of source code must retain the above copyright
|
||||||
|
notice, disclaimer, and this list of conditions.
|
||||||
|
2. Redistributions in binary form must reproduce the above copyright
|
||||||
|
notice, disclaimer, and this list of conditions in the documenta-
|
||||||
|
tion and/or other materials provided with the distribution.
|
||||||
|
3. All advertising materials mentioning features or use of this
|
||||||
|
software must display the following acknowledgment:
|
||||||
|
|
||||||
|
This product includes software developed by Greg Roelofs
|
||||||
|
and contributors for the book, "PNG: The Definitive Guide,"
|
||||||
|
published by O'Reilly and Associates.
|
||||||
|
|
||||||
|
|
||||||
|
LICENSE 2 (GNU GPL v2 or later):
|
||||||
|
|
||||||
|
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 2 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, write to the Free Software Foundation,
|
||||||
|
Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
|
|
||||||
|
---------------------------------------------------------------------------
|
130
dependencies/libpng/src/contrib/gregbook/Makefile.mingw32
vendored
Normal file
@ -0,0 +1,130 @@
|
|||||||
|
# Sample makefile for rpng-win / rpng2-win / wpng using mingw32-gcc and make.
|
||||||
|
# Greg Roelofs
|
||||||
|
# Last modified: 2 June 2007
|
||||||
|
#
|
||||||
|
# The programs built by this makefile are described in the book,
|
||||||
|
# "PNG: The Definitive Guide," by Greg Roelofs (O'Reilly and
|
||||||
|
# Associates, 1999). Go buy a copy, eh? Well, OK, it's not
|
||||||
|
# generally for sale anymore, but it's the thought that counts,
|
||||||
|
# right? (Hint: http://www.libpng.org/pub/png/book/ )
|
||||||
|
#
|
||||||
|
# Invoke this makefile from a DOS-prompt window via:
|
||||||
|
#
|
||||||
|
# make -f Makefile.mingw32
|
||||||
|
#
|
||||||
|
# This makefile assumes libpng and zlib have already been built or downloaded
|
||||||
|
# and are in subdirectories at the same level as the current subdirectory
|
||||||
|
# (as indicated by the PNGDIR and ZDIR macros below). It makes no assumptions
|
||||||
|
# at all about the mingw32 installation tree (W32DIR). Edit as appropriate.
|
||||||
|
#
|
||||||
|
# Note that the names of the dynamic and static libpng and zlib libraries
|
||||||
|
# used below may change in later releases of the libraries. This makefile
|
||||||
|
# builds both statically and dynamically linked executables by default.
|
||||||
|
# (You need only one set, but for testing it can be handy to have both.)
|
||||||
|
|
||||||
|
|
||||||
|
# macros --------------------------------------------------------------------
|
||||||
|
|
||||||
|
#PNGDIR = ../..# for libpng-x.y.z/contrib/gregbook builds
|
||||||
|
PNGDIR = ../libpng-win32
|
||||||
|
PNGINC = -I$(PNGDIR)
|
||||||
|
PNGLIBd = $(PNGDIR)/libpng.dll.a # dynamically linked
|
||||||
|
PNGLIBs = $(PNGDIR)/libpng.a # statically linked, local libpng
|
||||||
|
|
||||||
|
#ZDIR = ../../../zlib-win32# for libpng-x.y.z/contrib/gregbook builds
|
||||||
|
ZDIR = ../zlib-win32
|
||||||
|
ZINC = -I$(ZDIR)
|
||||||
|
ZLIBd = $(ZDIR)/libzdll.a
|
||||||
|
ZLIBs = $(ZDIR)/libz.a
|
||||||
|
|
||||||
|
# change this to be the path where mingw32 installs its stuff:
|
||||||
|
W32DIR =
|
||||||
|
#W32DIR = /usr/local/cross-tools/i386-mingw32msvc
|
||||||
|
W32INC = -I$(W32DIR)/include
|
||||||
|
W32LIB = $(W32DIR)/lib/libuser32.a $(W32DIR)/lib/libgdi32.a
|
||||||
|
|
||||||
|
CC = gcc
|
||||||
|
#CC = i386-mingw32msvc-gcc # e.g., Linux -> Win32 cross-compilation
|
||||||
|
LD = $(CC)
|
||||||
|
RM = rm -f
|
||||||
|
CFLAGS = -O -Wall $(INCS) $(MINGW_CCFLAGS)
|
||||||
|
# [note that -Wall is a gcc-specific compilation flag ("most warnings on")]
|
||||||
|
# [-ansi, -pedantic and -W can also be used]
|
||||||
|
LDFLAGS = $(MINGW_LDFLAGS)
|
||||||
|
O = .o
|
||||||
|
E = .exe
|
||||||
|
|
||||||
|
INCS = $(PNGINC) $(ZINC) $(W32INC)
|
||||||
|
RLIBSd = $(PNGLIBd) $(ZLIBd) $(W32LIB) -lm
|
||||||
|
RLIBSs = $(PNGLIBs) $(ZLIBs) $(W32LIB) -lm
|
||||||
|
WLIBSd = $(PNGLIBd) $(ZLIBd)
|
||||||
|
WLIBSs = $(PNGLIBs) $(ZLIBs)
|
||||||
|
|
||||||
|
RPNG = rpng-win
|
||||||
|
RPNG2 = rpng2-win
|
||||||
|
WPNG = wpng
|
||||||
|
|
||||||
|
ROBJSd = $(RPNG)$(O) readpng.pic$(O)
|
||||||
|
ROBJS2d = $(RPNG2)$(O) readpng2.pic$(O)
|
||||||
|
WOBJSd = $(WPNG)$(O) writepng.pic$(O)
|
||||||
|
|
||||||
|
RPNGs = $(RPNG)-static
|
||||||
|
RPNG2s = $(RPNG2)-static
|
||||||
|
WPNGs = $(WPNG)-static
|
||||||
|
|
||||||
|
ROBJSs = $(RPNG)$(O) readpng$(O)
|
||||||
|
ROBJS2s = $(RPNG2)$(O) readpng2$(O)
|
||||||
|
WOBJSs = $(WPNG)$(O) writepng$(O)
|
||||||
|
|
||||||
|
STATIC_EXES = $(RPNGs)$(E) $(RPNG2s)$(E) $(WPNGs)$(E)
|
||||||
|
DYNAMIC_EXES = $(RPNG)$(E) $(RPNG2)$(E) $(WPNG)$(E)
|
||||||
|
|
||||||
|
EXES = $(STATIC_EXES) $(DYNAMIC_EXES)
|
||||||
|
|
||||||
|
|
||||||
|
# implicit make rules -------------------------------------------------------
|
||||||
|
|
||||||
|
.c$(O):
|
||||||
|
$(CC) -c $(CFLAGS) $<
|
||||||
|
|
||||||
|
%.pic$(O): %.c
|
||||||
|
$(CC) -c $(CFLAGS) -DPNG_BUILD_DLL -o $@ $<
|
||||||
|
|
||||||
|
|
||||||
|
# dependencies --------------------------------------------------------------
|
||||||
|
|
||||||
|
all: $(EXES)
|
||||||
|
|
||||||
|
$(RPNGs)$(E): $(ROBJSs)
|
||||||
|
$(LD) $(LDFLAGS) -o $@ $(ROBJSs) $(RLIBSs)
|
||||||
|
|
||||||
|
$(RPNG)$(E): $(ROBJSd)
|
||||||
|
$(LD) $(LDFLAGS) -o $@ $(ROBJSd) $(RLIBSd)
|
||||||
|
|
||||||
|
$(RPNG2s)$(E): $(ROBJS2s)
|
||||||
|
$(LD) $(LDFLAGS) -o $@ $(ROBJS2s) $(RLIBSs)
|
||||||
|
|
||||||
|
$(RPNG2)$(E): $(ROBJS2d)
|
||||||
|
$(LD) $(LDFLAGS) -o $@ $(ROBJS2d) $(RLIBSd)
|
||||||
|
|
||||||
|
$(WPNGs)$(E): $(WOBJSs)
|
||||||
|
$(LD) $(LDFLAGS) -o $@ $(WOBJSs) $(WLIBSs)
|
||||||
|
|
||||||
|
$(WPNG)$(E): $(WOBJSd)
|
||||||
|
$(LD) $(LDFLAGS) -o $@ $(WOBJSd) $(WLIBSd)
|
||||||
|
|
||||||
|
$(RPNG)$(O): $(RPNG).c readpng.h
|
||||||
|
$(RPNG2)$(O): $(RPNG2).c readpng2.h
|
||||||
|
$(WPNG)$(O): $(WPNG).c writepng.h
|
||||||
|
|
||||||
|
readpng$(O) readpng.pic$(O): readpng.c readpng.h
|
||||||
|
readpng2$(O) readpng2.pic$(O): readpng2.c readpng2.h
|
||||||
|
writepng$(O) writepng.pic$(O): writepng.c writepng.h
|
||||||
|
|
||||||
|
|
||||||
|
# maintenance ---------------------------------------------------------------
|
||||||
|
|
||||||
|
clean:
|
||||||
|
$(RM) $(EXES)
|
||||||
|
$(RM) $(ROBJSs) $(ROBJS2s) $(WOBJSs)
|
||||||
|
$(RM) $(ROBJSd) $(ROBJS2d) $(WOBJSd)
|
104
dependencies/libpng/src/contrib/gregbook/Makefile.sgi
vendored
Normal file
@ -0,0 +1,104 @@
|
|||||||
|
# Sample makefile for rpng-x / rpng2-x / wpng for SGI using cc and make.
|
||||||
|
# Greg Roelofs
|
||||||
|
# Last modified: 7 March 2002
|
||||||
|
#
|
||||||
|
# The programs built by this makefile are described in the book,
|
||||||
|
# "PNG: The Definitive Guide," by Greg Roelofs (O'Reilly and
|
||||||
|
# Associates, 1999). Go buy a copy, eh? Buy some for friends
|
||||||
|
# and family, too. (Not that this is a blatant plug or anything.)
|
||||||
|
#
|
||||||
|
# Invoke this makefile from a shell prompt in the usual way; for example:
|
||||||
|
#
|
||||||
|
# make -f Makefile.sgi
|
||||||
|
#
|
||||||
|
# This makefile assumes libpng and zlib have already been built or downloaded
|
||||||
|
# and are both installed in /usr/local/{include,lib} (as indicated by the
|
||||||
|
# PNG* and Z* macros below). Edit as appropriate--choose only ONE each of
|
||||||
|
# the PNGINC, PNGLIB, ZINC and ZLIB lines.
|
||||||
|
#
|
||||||
|
# This makefile builds dynamically linked executables (against libpng and zlib,
|
||||||
|
# that is), but that can be changed by uncommenting the appropriate PNGLIB and
|
||||||
|
# ZLIB lines.
|
||||||
|
|
||||||
|
|
||||||
|
# macros --------------------------------------------------------------------
|
||||||
|
|
||||||
|
PNGINC = -I/usr/local/include/libpng12
|
||||||
|
PNGLIB = -L/usr/local/lib -lpng12 # dynamically linked against libpng
|
||||||
|
#PNGLIB = /usr/local/lib/libpng12.a # statically linked against libpng
|
||||||
|
# or:
|
||||||
|
#PNGINC = -I../..
|
||||||
|
#PNGLIB = -L../.. -lpng
|
||||||
|
#PNGLIB = ../../libpng.a
|
||||||
|
|
||||||
|
ZINC = -I/usr/local/include
|
||||||
|
ZLIB = -L/usr/local/lib -lz # dynamically linked against zlib
|
||||||
|
#ZLIB = /usr/local/lib/libz.a # statically linked against zlib
|
||||||
|
#ZINC = -I../zlib
|
||||||
|
#ZLIB = -L../zlib -lz
|
||||||
|
#ZLIB = ../../../zlib/libz.a
|
||||||
|
|
||||||
|
XINC = -I/usr/include/X11 # old-style, stock X distributions
|
||||||
|
XLIB = -L/usr/lib/X11 -lX11
|
||||||
|
#XINC = -I/usr/openwin/include # Sun workstations (OpenWindows)
|
||||||
|
#XLIB = -L/usr/openwin/lib -lX11
|
||||||
|
#XINC = -I/usr/X11R6/include # new X distributions (XFree86, etc.)
|
||||||
|
#XLIB = -L/usr/X11R6/lib -lX11
|
||||||
|
|
||||||
|
INCS = $(PNGINC) $(ZINC) $(XINC)
|
||||||
|
RLIBS = $(PNGLIB) $(ZLIB) $(XLIB) -lm
|
||||||
|
WLIBS = $(PNGLIB) $(ZLIB)
|
||||||
|
|
||||||
|
CC = cc
|
||||||
|
LD = cc
|
||||||
|
RM = rm -f
|
||||||
|
# ABI must be the same as that used to build libpng.
|
||||||
|
ABI=
|
||||||
|
CFLAGS = $(ABI) -O -fullwarn $(INCS)
|
||||||
|
LDFLAGS = $(ABI)
|
||||||
|
O = .o
|
||||||
|
E =
|
||||||
|
|
||||||
|
RPNG = rpng-x
|
||||||
|
RPNG2 = rpng2-x
|
||||||
|
WPNG = wpng
|
||||||
|
|
||||||
|
ROBJS = $(RPNG)$(O) readpng$(O)
|
||||||
|
ROBJS2 = $(RPNG2)$(O) readpng2$(O)
|
||||||
|
WOBJS = $(WPNG)$(O) writepng$(O)
|
||||||
|
|
||||||
|
EXES = $(RPNG)$(E) $(RPNG2)$(E) $(WPNG)$(E)
|
||||||
|
|
||||||
|
|
||||||
|
# implicit make rules -------------------------------------------------------
|
||||||
|
|
||||||
|
.c$(O):
|
||||||
|
$(CC) -c $(CFLAGS) $<
|
||||||
|
|
||||||
|
|
||||||
|
# dependencies --------------------------------------------------------------
|
||||||
|
|
||||||
|
all: $(EXES)
|
||||||
|
|
||||||
|
$(RPNG)$(E): $(ROBJS)
|
||||||
|
$(LD) $(LDFLAGS) -o $@ $(ROBJS) $(RLIBS)
|
||||||
|
|
||||||
|
$(RPNG2)$(E): $(ROBJS2)
|
||||||
|
$(LD) $(LDFLAGS) -o $@ $(ROBJS2) $(RLIBS)
|
||||||
|
|
||||||
|
$(WPNG)$(E): $(WOBJS)
|
||||||
|
$(LD) $(LDFLAGS) -o $@ $(WOBJS) $(WLIBS)
|
||||||
|
|
||||||
|
$(RPNG)$(O): $(RPNG).c readpng.h
|
||||||
|
$(RPNG2)$(O): $(RPNG2).c readpng2.h
|
||||||
|
$(WPNG)$(O): $(WPNG).c writepng.h
|
||||||
|
|
||||||
|
readpng$(O): readpng.c readpng.h
|
||||||
|
readpng2$(O): readpng2.c readpng2.h
|
||||||
|
writepng$(O): writepng.c writepng.h
|
||||||
|
|
||||||
|
|
||||||
|
# maintenance ---------------------------------------------------------------
|
||||||
|
|
||||||
|
clean:
|
||||||
|
$(RM) $(EXES) $(ROBJS) $(ROBJS2) $(WOBJS)
|
132
dependencies/libpng/src/contrib/gregbook/Makefile.unx
vendored
Normal file
@ -0,0 +1,132 @@
|
|||||||
|
# Sample makefile for rpng-x / rpng2-x / wpng using gcc and make.
|
||||||
|
# Greg Roelofs
|
||||||
|
# Last modified: 2 June 2007
|
||||||
|
#
|
||||||
|
# The programs built by this makefile are described in the book,
|
||||||
|
# "PNG: The Definitive Guide," by Greg Roelofs (O'Reilly and
|
||||||
|
# Associates, 1999). Go buy a copy, eh? Well, OK, it's not
|
||||||
|
# generally for sale anymore, but it's the thought that counts,
|
||||||
|
# right? (Hint: http://www.libpng.org/pub/png/book/ )
|
||||||
|
#
|
||||||
|
# Invoke this makefile from a shell prompt in the usual way; for example:
|
||||||
|
#
|
||||||
|
# make -f Makefile.unx
|
||||||
|
#
|
||||||
|
# This makefile assumes libpng and zlib have already been built or downloaded
|
||||||
|
# and are installed in /usr/local/{include,lib} or as otherwise indicated by
|
||||||
|
# the PNG* and Z* macros below. Edit as appropriate--choose only ONE each of
|
||||||
|
# the PNGINC, PNGLIBd, PNGLIBs, ZINC, ZLIBd and ZLIBs lines.
|
||||||
|
#
|
||||||
|
# This makefile builds both dynamically and statically linked executables
|
||||||
|
# (against libpng and zlib, that is), but that can be changed by modifying
|
||||||
|
# the "EXES =" line. (You need only one set, but for testing it can be handy
|
||||||
|
# to have both.)
|
||||||
|
|
||||||
|
|
||||||
|
# macros --------------------------------------------------------------------
|
||||||
|
|
||||||
|
#PNGDIR = /usr/local/lib
|
||||||
|
#PNGINC = -I/usr/local/include/libpng12
|
||||||
|
#PNGLIBd = -L$(PNGDIR) -lpng12 # dynamically linked, installed libpng
|
||||||
|
#PNGLIBs = $(PNGDIR)/libpng12.a # statically linked, installed libpng
|
||||||
|
# or:
|
||||||
|
PNGDIR = ../..# this one is for libpng-x.y.z/contrib/gregbook builds
|
||||||
|
#PNGDIR = ../libpng
|
||||||
|
PNGINC = -I$(PNGDIR)
|
||||||
|
PNGLIBd = -Wl,-rpath,$(PNGDIR) -L$(PNGDIR) -lpng12 # dynamically linked
|
||||||
|
PNGLIBs = $(PNGDIR)/libpng.a # statically linked, local libpng
|
||||||
|
|
||||||
|
ZDIR = /usr/local/lib
|
||||||
|
#ZDIR = /usr/lib64
|
||||||
|
ZINC = -I/usr/local/include
|
||||||
|
ZLIBd = -L$(ZDIR) -lz # dynamically linked against zlib
|
||||||
|
ZLIBs = $(ZDIR)/libz.a # statically linked against zlib
|
||||||
|
# or:
|
||||||
|
#ZDIR = ../zlib
|
||||||
|
#ZINC = -I$(ZDIR)
|
||||||
|
#ZLIBd = -Wl,-rpath,$(ZDIR) -L$(ZDIR) -lz # -rpath allows in-place testing
|
||||||
|
#ZLIBs = $(ZDIR)/libz.a
|
||||||
|
|
||||||
|
#XINC = -I/usr/include # old-style, stock X distributions
|
||||||
|
#XLIB = -L/usr/lib/X11 -lX11 # (including SGI IRIX)
|
||||||
|
#XINC = -I/usr/openwin/include # Sun workstations (OpenWindows)
|
||||||
|
#XLIB = -L/usr/openwin/lib -lX11
|
||||||
|
XINC = -I/usr/X11R6/include # new X distributions (X.org, etc.)
|
||||||
|
XLIB = -L/usr/X11R6/lib -lX11
|
||||||
|
#XLIB = -L/usr/X11R6/lib64 -lX11 # e.g., Red Hat on AMD64
|
||||||
|
|
||||||
|
INCS = $(PNGINC) $(ZINC) $(XINC)
|
||||||
|
RLIBSd = $(PNGLIBd) $(ZLIBd) $(XLIB) -lm
|
||||||
|
RLIBSs = $(PNGLIBs) $(ZLIBs) $(XLIB) -lm
|
||||||
|
WLIBSd = $(PNGLIBd) $(ZLIBd) -lm
|
||||||
|
WLIBSs = $(PNGLIBs) $(ZLIBs)
|
||||||
|
|
||||||
|
CC = gcc
|
||||||
|
LD = gcc
|
||||||
|
RM = rm -f
|
||||||
|
CFLAGS = -O -Wall $(INCS) -DFEATURE_LOOP
|
||||||
|
# [note that -Wall is a gcc-specific compilation flag ("most warnings on")]
|
||||||
|
# [-ansi, -pedantic and -W can also be used]
|
||||||
|
LDFLAGS =
|
||||||
|
O = .o
|
||||||
|
E =
|
||||||
|
|
||||||
|
RPNG = rpng-x
|
||||||
|
RPNG2 = rpng2-x
|
||||||
|
WPNG = wpng
|
||||||
|
|
||||||
|
RPNGs = $(RPNG)-static
|
||||||
|
RPNG2s = $(RPNG2)-static
|
||||||
|
WPNGs = $(WPNG)-static
|
||||||
|
|
||||||
|
ROBJS = $(RPNG)$(O) readpng$(O)
|
||||||
|
ROBJS2 = $(RPNG2)$(O) readpng2$(O)
|
||||||
|
WOBJS = $(WPNG)$(O) writepng$(O)
|
||||||
|
|
||||||
|
STATIC_EXES = $(RPNGs)$(E) $(RPNG2s)$(E) $(WPNGs)$(E)
|
||||||
|
DYNAMIC_EXES = $(RPNG)$(E) $(RPNG2)$(E) $(WPNG)$(E)
|
||||||
|
|
||||||
|
EXES = $(STATIC_EXES) $(DYNAMIC_EXES)
|
||||||
|
|
||||||
|
|
||||||
|
# implicit make rules -------------------------------------------------------
|
||||||
|
|
||||||
|
.c$(O):
|
||||||
|
$(CC) -c $(CFLAGS) $<
|
||||||
|
|
||||||
|
|
||||||
|
# dependencies --------------------------------------------------------------
|
||||||
|
|
||||||
|
all: $(EXES)
|
||||||
|
|
||||||
|
$(RPNGs)$(E): $(ROBJS)
|
||||||
|
$(LD) $(LDFLAGS) -o $@ $(ROBJS) $(RLIBSs)
|
||||||
|
|
||||||
|
$(RPNG)$(E): $(ROBJS)
|
||||||
|
$(LD) $(LDFLAGS) -o $@ $(ROBJS) $(RLIBSd)
|
||||||
|
|
||||||
|
$(RPNG2s)$(E): $(ROBJS2)
|
||||||
|
$(LD) $(LDFLAGS) -o $@ $(ROBJS2) $(RLIBSs)
|
||||||
|
|
||||||
|
$(RPNG2)$(E): $(ROBJS2)
|
||||||
|
$(LD) $(LDFLAGS) -o $@ $(ROBJS2) $(RLIBSd)
|
||||||
|
|
||||||
|
$(WPNGs)$(E): $(WOBJS)
|
||||||
|
$(LD) $(LDFLAGS) -o $@ $(WOBJS) $(WLIBSs)
|
||||||
|
|
||||||
|
$(WPNG)$(E): $(WOBJS)
|
||||||
|
$(LD) $(LDFLAGS) -o $@ $(WOBJS) $(WLIBSd)
|
||||||
|
|
||||||
|
$(RPNG)$(O): $(RPNG).c readpng.h
|
||||||
|
$(RPNG2)$(O): $(RPNG2).c readpng2.h
|
||||||
|
$(WPNG)$(O): $(WPNG).c writepng.h
|
||||||
|
|
||||||
|
readpng$(O): readpng.c readpng.h
|
||||||
|
readpng2$(O): readpng2.c readpng2.h
|
||||||
|
writepng$(O): writepng.c writepng.h
|
||||||
|
|
||||||
|
|
||||||
|
# maintenance ---------------------------------------------------------------
|
||||||
|
|
||||||
|
clean:
|
||||||
|
$(RM) $(EXES) $(ROBJS) $(ROBJS2) $(WOBJS)
|
113
dependencies/libpng/src/contrib/gregbook/Makefile.w32
vendored
Normal file
@ -0,0 +1,113 @@
|
|||||||
|
# Sample makefile for rpng-win / rpng2-win / wpng using MSVC and NMAKE.
|
||||||
|
# Greg Roelofs
|
||||||
|
# Last modified: 2 June 2007
|
||||||
|
#
|
||||||
|
# The programs built by this makefile are described in the book,
|
||||||
|
# "PNG: The Definitive Guide," by Greg Roelofs (O'Reilly and
|
||||||
|
# Associates, 1999). Go buy a copy, eh? Well, OK, it's not
|
||||||
|
# generally for sale anymore, but it's the thought that counts,
|
||||||
|
# right? (Hint: http://www.libpng.org/pub/png/book/ )
|
||||||
|
#
|
||||||
|
# Invoke this makefile from a DOS prompt window via:
|
||||||
|
#
|
||||||
|
# %devstudio%\vc\bin\vcvars32.bat
|
||||||
|
# nmake -nologo -f Makefile.w32
|
||||||
|
#
|
||||||
|
# where %devstudio% is the installation directory for MSVC / DevStudio. If
|
||||||
|
# you get "environment out of space" errors, create a desktop shortcut with
|
||||||
|
# "c:\windows\command.com /e:4096" as the program command line and set the
|
||||||
|
# working directory to this directory. Then double-click to open the new
|
||||||
|
# DOS-prompt window with a bigger environment and retry the commands above.
|
||||||
|
#
|
||||||
|
# This makefile assumes libpng and zlib have already been built or downloaded
|
||||||
|
# and are in subdirectories at the same level as the current subdirectory
|
||||||
|
# (as indicated by the PNGPATH and ZPATH macros below). Edit as appropriate.
|
||||||
|
#
|
||||||
|
# Note that the names of the dynamic and static libpng and zlib libraries
|
||||||
|
# used below may change in later releases of the libraries. This makefile
|
||||||
|
# builds statically linked executables, but that can be changed by uncom-
|
||||||
|
# menting the appropriate PNGLIB and ZLIB lines.
|
||||||
|
|
||||||
|
!include <ntwin32.mak>
|
||||||
|
|
||||||
|
|
||||||
|
# macros --------------------------------------------------------------------
|
||||||
|
|
||||||
|
PNGPATH = ../libpng
|
||||||
|
PNGINC = -I$(PNGPATH)
|
||||||
|
#PNGLIB = $(PNGPATH)/pngdll.lib
|
||||||
|
PNGLIB = $(PNGPATH)/libpng.lib
|
||||||
|
|
||||||
|
ZPATH = ../zlib
|
||||||
|
ZINC = -I$(ZPATH)
|
||||||
|
#ZLIB = $(ZPATH)/zlibdll.lib
|
||||||
|
ZLIB = $(ZPATH)/zlibstat.lib
|
||||||
|
|
||||||
|
WINLIBS = -defaultlib:user32.lib gdi32.lib
|
||||||
|
# ["real" apps may also need comctl32.lib, comdlg32.lib, winmm.lib, etc.]
|
||||||
|
|
||||||
|
INCS = $(PNGINC) $(ZINC)
|
||||||
|
RLIBS = $(PNGLIB) $(ZLIB) $(WINLIBS)
|
||||||
|
WLIBS = $(PNGLIB) $(ZLIB)
|
||||||
|
|
||||||
|
CC = cl
|
||||||
|
LD = link
|
||||||
|
RM = del
|
||||||
|
CFLAGS = -nologo -O -W3 $(INCS) $(cvars)
|
||||||
|
# [note that -W3 is an MSVC-specific compilation flag ("all warnings on")]
|
||||||
|
# [see %devstudio%\vc\include\win32.mak for cvars macro definition]
|
||||||
|
O = .obj
|
||||||
|
E = .exe
|
||||||
|
|
||||||
|
RLDFLAGS = -nologo -subsystem:windows
|
||||||
|
WLDFLAGS = -nologo
|
||||||
|
|
||||||
|
RPNG = rpng-win
|
||||||
|
RPNG2 = rpng2-win
|
||||||
|
WPNG = wpng
|
||||||
|
|
||||||
|
ROBJS = $(RPNG)$(O) readpng$(O)
|
||||||
|
ROBJS2 = $(RPNG2)$(O) readpng2$(O)
|
||||||
|
WOBJS = $(WPNG)$(O) writepng$(O)
|
||||||
|
|
||||||
|
EXES = $(RPNG)$(E) $(RPNG2)$(E) $(WPNG)$(E)
|
||||||
|
|
||||||
|
|
||||||
|
# implicit make rules -------------------------------------------------------
|
||||||
|
|
||||||
|
.c$(O):
|
||||||
|
$(CC) -c $(CFLAGS) $<
|
||||||
|
|
||||||
|
|
||||||
|
# dependencies --------------------------------------------------------------
|
||||||
|
|
||||||
|
all: $(EXES)
|
||||||
|
|
||||||
|
$(RPNG)$(E): $(ROBJS)
|
||||||
|
$(LD) $(RLDFLAGS) -out:$@ $(ROBJS) $(RLIBS)
|
||||||
|
|
||||||
|
$(RPNG2)$(E): $(ROBJS2)
|
||||||
|
$(LD) $(RLDFLAGS) -out:$@ $(ROBJS2) $(RLIBS)
|
||||||
|
|
||||||
|
$(WPNG)$(E): $(WOBJS)
|
||||||
|
$(LD) $(WLDFLAGS) -out:$@ $(WOBJS) $(WLIBS)
|
||||||
|
|
||||||
|
$(RPNG)$(O): $(RPNG).c readpng.h
|
||||||
|
$(RPNG2)$(O): $(RPNG2).c readpng2.h
|
||||||
|
$(WPNG)$(O): $(WPNG).c writepng.h
|
||||||
|
|
||||||
|
readpng$(O): readpng.c readpng.h
|
||||||
|
readpng2$(O): readpng2.c readpng2.h
|
||||||
|
writepng$(O): writepng.c writepng.h
|
||||||
|
|
||||||
|
|
||||||
|
# maintenance ---------------------------------------------------------------
|
||||||
|
|
||||||
|
clean:
|
||||||
|
# ideally we could just do this:
|
||||||
|
# $(RM) $(EXES) $(ROBJS) $(ROBJS2) $(WOBJS)
|
||||||
|
# ...but the Windows "DEL" command is none too bright, so:
|
||||||
|
$(RM) r*$(E)
|
||||||
|
$(RM) w*$(E)
|
||||||
|
$(RM) r*$(O)
|
||||||
|
$(RM) w*$(O)
|
186
dependencies/libpng/src/contrib/gregbook/README
vendored
Normal file
@ -0,0 +1,186 @@
|
|||||||
|
===========================
|
||||||
|
PNG: The Definitive Guide
|
||||||
|
===========================
|
||||||
|
|
||||||
|
Source Code
|
||||||
|
|
||||||
|
Chapters 13, 14 and 15 of "PNG: The Definitive Guide" discuss three free,
|
||||||
|
cross-platform demo programs that show how to use the libpng reference
|
||||||
|
library: rpng, rpng2 and wpng. rpng and rpng2 are viewers; the first is
|
||||||
|
a very simple example that that shows how a standard file-viewer might use
|
||||||
|
libpng, while the second is designed to process streaming data and shows
|
||||||
|
how a web browser might be written. wpng is a simple command-line program
|
||||||
|
that reads binary PGM and PPM files (the ``raw'' grayscale and RGB subsets
|
||||||
|
of PBMPLUS/NetPBM) and converts them to PNG.
|
||||||
|
|
||||||
|
The source code for all three demo programs currently compiles under
|
||||||
|
Unix, OpenVMS, and 32-bit Windows. (Special thanks to Martin Zinser,
|
||||||
|
zinser@decus.de, for making the necessary changes for OpenVMS and for
|
||||||
|
providing an appropriate build script.) Build instructions can be found
|
||||||
|
below.
|
||||||
|
|
||||||
|
Files:
|
||||||
|
|
||||||
|
README this file
|
||||||
|
LICENSE terms of distribution and reuse (BSD-like or GNU GPL)
|
||||||
|
COPYING GNU General Public License (GPL)
|
||||||
|
|
||||||
|
Makefile.unx Unix makefile
|
||||||
|
Makefile.w32 Windows (MSVC) makefile
|
||||||
|
makevms.com OpenVMS build script
|
||||||
|
|
||||||
|
rpng-win.c Windows front end for the basic viewer
|
||||||
|
rpng-x.c X Window System (Unix, OpenVMS) front end
|
||||||
|
readpng.c generic back end for the basic viewer
|
||||||
|
readpng.h header file for the basic viewer
|
||||||
|
|
||||||
|
rpng2-win.c Windows front end for the progressive viewer
|
||||||
|
rpng2-x.c X front end for the progressive viewer
|
||||||
|
readpng2.c generic back end for the progressive viewer
|
||||||
|
readpng2.h header file for the progressive viewer
|
||||||
|
|
||||||
|
wpng.c generic (text) front end for the converter
|
||||||
|
writepng.c generic back end for the converter
|
||||||
|
writepng.h header file for the converter
|
||||||
|
|
||||||
|
toucan.png transparent PNG for testing (by Stefan Schneider)
|
||||||
|
|
||||||
|
Note that, although the programs are designed to be functional, their
|
||||||
|
primary purpose is to illustrate how to use libpng to add PNG support to
|
||||||
|
other programs. As such, their user interfaces are crude and definitely
|
||||||
|
are not intended for everyday use.
|
||||||
|
|
||||||
|
Please see http://www.libpng.org/pub/png/pngbook.html for further infor-
|
||||||
|
mation and links to the latest version of the source code, and Chapters
|
||||||
|
13-15 of the book for detailed discussion of the three programs.
|
||||||
|
|
||||||
|
Greg Roelofs
|
||||||
|
http://pobox.com/~newt/greg_contact.html
|
||||||
|
16 March 2008
|
||||||
|
|
||||||
|
|
||||||
|
BUILD INSTRUCTIONS
|
||||||
|
|
||||||
|
- Prerequisites (in order of compilation):
|
||||||
|
|
||||||
|
- zlib http://zlib.net/
|
||||||
|
- libpng http://www.libpng.org/pub/png/libpng.html
|
||||||
|
- pngbook http://www.libpng.org/pub/png/book/sources.html
|
||||||
|
|
||||||
|
The pngbook demo programs are explicitly designed to demonstrate proper
|
||||||
|
coding techniques for using the libpng reference library. As a result,
|
||||||
|
you need to download and build both zlib (on which libpng depends) and
|
||||||
|
libpng. A common build setup is to place the zlib, libpng and pngbook
|
||||||
|
subdirectory trees ("folders") in the same parent directory. Then the
|
||||||
|
libpng build can refer to files in ../zlib (or ..\zlib or [-.zlib]),
|
||||||
|
and similarly for the pngbook build.
|
||||||
|
|
||||||
|
Note that all three packages are designed to be built from a command
|
||||||
|
line by default; those who wish to use a graphical or other integrated
|
||||||
|
development environments are on their own.
|
||||||
|
|
||||||
|
|
||||||
|
- Unix:
|
||||||
|
|
||||||
|
Unpack the latest pngbook sources (which should correspond to this
|
||||||
|
README file) into a directory and change into that directory.
|
||||||
|
|
||||||
|
Copy Makefile.unx to Makefile and edit the PNG* and Z* variables
|
||||||
|
appropriately (possibly also the X* variables if necessary).
|
||||||
|
|
||||||
|
make
|
||||||
|
|
||||||
|
There is no "install" target, so copy the three executables somewhere
|
||||||
|
in your path or run them from the current directory. All three will
|
||||||
|
print a basic usage screen when run without any command-line arguments;
|
||||||
|
see the book for more details.
|
||||||
|
|
||||||
|
|
||||||
|
- Windows:
|
||||||
|
|
||||||
|
Unpack the latest pngbook sources (which should correspond to this
|
||||||
|
README file) into a folder, open a "DOS shell" or "command prompt"
|
||||||
|
or equivalent command-line window, and cd into the folder where you
|
||||||
|
unpacked the source code.
|
||||||
|
|
||||||
|
For MSVC, set up the necessary environment variables by invoking
|
||||||
|
|
||||||
|
%devstudio%\vc\bin\vcvars32.bat
|
||||||
|
|
||||||
|
where where %devstudio% is the installation directory for MSVC /
|
||||||
|
DevStudio. If you get "environment out of space" errors under 95/98,
|
||||||
|
create a desktop shortcut with "c:\windows\command.com /e:4096" as
|
||||||
|
the program command line and set the working directory to the pngbook
|
||||||
|
directory. Then double-click to open the new DOS-prompt window with
|
||||||
|
a bigger environment and retry the commands above.
|
||||||
|
|
||||||
|
Copy Makefile.w32 to Makefile and edit the PNGPATH and ZPATH variables
|
||||||
|
appropriately (possibly also the "INC" and "LIB" variables if needed).
|
||||||
|
Note that the names of the dynamic and static libpng and zlib libraries
|
||||||
|
used in the makefile may change in later releases of the libraries.
|
||||||
|
Also note that, as of libpng version 1.0.5, MSVC DLL builds do not work.
|
||||||
|
This makefile therefore builds statically linked executables, but if
|
||||||
|
the DLL problems ever get fixed, uncommenting the appropriate PNGLIB
|
||||||
|
and ZLIB lines will build dynamically linked executables instead.
|
||||||
|
|
||||||
|
Do the build by typing
|
||||||
|
|
||||||
|
nmake
|
||||||
|
|
||||||
|
The result should be three executables: rpng-win.exe, rpng2-win.exe,
|
||||||
|
and wpng.exe. Copy them somewhere in your PATH or run them from the
|
||||||
|
current folder. Like the Unix versions, the two windowed programs
|
||||||
|
(rpng and rpng2) now display a usage screen in a console window when
|
||||||
|
invoked without command-line arguments; this is new behavior as of
|
||||||
|
the June 2001 release. Note that the programs use the Unix-style "-"
|
||||||
|
character to specify options, instead of the more common DOS/Windows
|
||||||
|
"/" character. (For example: "rpng2-win -bgpat 4 foo.png", not
|
||||||
|
"rpng2-win /bgpat 4 foo.png")
|
||||||
|
|
||||||
|
|
||||||
|
- OpenVMS:
|
||||||
|
|
||||||
|
Unpack the pngbook sources into a subdirectory and change into that
|
||||||
|
subdirectory.
|
||||||
|
|
||||||
|
Edit makevms.com appropriately, specifically the zpath and pngpath
|
||||||
|
variables.
|
||||||
|
|
||||||
|
@makevms
|
||||||
|
|
||||||
|
To run the programs, they probably first need to be set up as "foreign
|
||||||
|
symbols," with "disk" and "dir" set appropriately:
|
||||||
|
|
||||||
|
$ rpng == "$disk:[dir]rpng-x.exe"
|
||||||
|
$ rpng2 == "$disk:[dir]rpng2-x.exe"
|
||||||
|
$ wpng == "$disk:[dir]wpng.exe"
|
||||||
|
|
||||||
|
All three will print a basic usage screen when run without any command-
|
||||||
|
line arguments; see the book for more details. Note that the options
|
||||||
|
style is Unix-like, i.e., preceded by "-" rather than "/".
|
||||||
|
|
||||||
|
|
||||||
|
RUNNING THE PROGRAMS: (VERY) BRIEF INTRO
|
||||||
|
|
||||||
|
rpng is a simple PNG viewer that can display transparent PNGs with a
|
||||||
|
specified background color; for example,
|
||||||
|
|
||||||
|
rpng -bgcolor #ff0000 toucan.png
|
||||||
|
|
||||||
|
would display the image with a red background. rpng2 is a progressive
|
||||||
|
viewer that simulates a web browser in some respects; it can display
|
||||||
|
images against either a background color or a dynamically generated
|
||||||
|
background image. For example:
|
||||||
|
|
||||||
|
rpng2 -bgpat 16 toucan.png
|
||||||
|
|
||||||
|
wpng is a purely command-line image converter from binary PBMPLUS/NetPBM
|
||||||
|
format (.pgm or .ppm) to PNG; for example,
|
||||||
|
|
||||||
|
wpng -time < toucan-notrans.ppm > toucan-notrans.png
|
||||||
|
|
||||||
|
would convert the specified PPM file (using redirection) to PNG, auto-
|
||||||
|
matically setting the PNG modification-time chunk.
|
||||||
|
|
||||||
|
All options can be abbreviated to the shortest unique value; for example,
|
||||||
|
"-bgc" for -bgcolor (versus "-bgp" for -bgpat), or "-g" for -gamma.
|
132
dependencies/libpng/src/contrib/gregbook/makevms.com
vendored
Normal file
@ -0,0 +1,132 @@
|
|||||||
|
$!------------------------------------------------------------------------------
|
||||||
|
$! make "PNG: The Definitive Guide" demo programs (for X) under OpenVMS
|
||||||
|
$!
|
||||||
|
$! Script created by Martin Zinser for libpng; modified by Greg Roelofs
|
||||||
|
$! for standalone pngbook source distribution.
|
||||||
|
$!
|
||||||
|
$!
|
||||||
|
$! Set locations where zlib and libpng sources live.
|
||||||
|
$!
|
||||||
|
$ zpath = ""
|
||||||
|
$ pngpath = ""
|
||||||
|
$!
|
||||||
|
$ if f$search("[---.zlib]zlib.h").nes."" then zpath = "[---.zlib]"
|
||||||
|
$ if f$search("[--]png.h").nes."" then pngpath = "[--]"
|
||||||
|
$!
|
||||||
|
$ if f$search("[-.zlib]zlib.h").nes."" then zpath = "[-.zlib]"
|
||||||
|
$ if f$search("[-.libpng]png.h").nes."" then pngpath = "[-.libpng]"
|
||||||
|
$!
|
||||||
|
$ if zpath .eqs. ""
|
||||||
|
$ then
|
||||||
|
$ write sys$output "zlib include not found. Exiting..."
|
||||||
|
$ exit 2
|
||||||
|
$ endif
|
||||||
|
$!
|
||||||
|
$ if pngpath .eqs. ""
|
||||||
|
$ then
|
||||||
|
$ write sys$output "libpng include not found. Exiting..."
|
||||||
|
$ exit 2
|
||||||
|
$ endif
|
||||||
|
$!
|
||||||
|
$! Look for the compiler used.
|
||||||
|
$!
|
||||||
|
$ ccopt="/include=(''zpath',''pngpath')"
|
||||||
|
$ if f$getsyi("HW_MODEL").ge.1024
|
||||||
|
$ then
|
||||||
|
$ ccopt = "/prefix=all"+ccopt
|
||||||
|
$ comp = "__decc__=1"
|
||||||
|
$ if f$trnlnm("SYS").eqs."" then define sys sys$library:
|
||||||
|
$ else
|
||||||
|
$ if f$search("SYS$SYSTEM:DECC$COMPILER.EXE").eqs.""
|
||||||
|
$ then
|
||||||
|
$ if f$trnlnm("SYS").eqs."" then define sys sys$library:
|
||||||
|
$ if f$search("SYS$SYSTEM:VAXC.EXE").eqs.""
|
||||||
|
$ then
|
||||||
|
$ comp = "__gcc__=1"
|
||||||
|
$ CC :== GCC
|
||||||
|
$ else
|
||||||
|
$ comp = "__vaxc__=1"
|
||||||
|
$ endif
|
||||||
|
$ else
|
||||||
|
$ if f$trnlnm("SYS").eqs."" then define sys decc$library_include:
|
||||||
|
$ ccopt = "/decc/prefix=all"+ccopt
|
||||||
|
$ comp = "__decc__=1"
|
||||||
|
$ endif
|
||||||
|
$ endif
|
||||||
|
$ open/write lopt lib.opt
|
||||||
|
$ write lopt "''pngpath'libpng.olb/lib"
|
||||||
|
$ write lopt "''zpath'libz.olb/lib"
|
||||||
|
$ close lopt
|
||||||
|
$ open/write xopt x11.opt
|
||||||
|
$ write xopt "sys$library:decw$xlibshr.exe/share"
|
||||||
|
$ close xopt
|
||||||
|
$!
|
||||||
|
$! Build 'em.
|
||||||
|
$!
|
||||||
|
$ write sys$output "Compiling PNG book programs ..."
|
||||||
|
$ CALL MAKE readpng.OBJ "cc ''CCOPT' readpng" -
|
||||||
|
readpng.c readpng.h
|
||||||
|
$ CALL MAKE readpng2.OBJ "cc ''CCOPT' readpng2" -
|
||||||
|
readpng2.c readpng2.h
|
||||||
|
$ CALL MAKE writepng.OBJ "cc ''CCOPT' writepng" -
|
||||||
|
writepng.c writepng.h
|
||||||
|
$ write sys$output "Building rpng-x..."
|
||||||
|
$ CALL MAKE rpng-x.OBJ "cc ''CCOPT' rpng-x" -
|
||||||
|
rpng-x.c readpng.h
|
||||||
|
$ call make rpng-x.exe -
|
||||||
|
"LINK rpng-x,readpng,lib.opt/opt,x11.opt/opt" -
|
||||||
|
rpng-x.obj readpng.obj
|
||||||
|
$ write sys$output "Building rpng2-x..."
|
||||||
|
$ CALL MAKE rpng2-x.OBJ "cc ''CCOPT' rpng2-x" -
|
||||||
|
rpng2-x.c readpng2.h
|
||||||
|
$ call make rpng2-x.exe -
|
||||||
|
"LINK rpng2-x,readpng2,lib.opt/opt,x11.opt/opt" -
|
||||||
|
rpng2-x.obj readpng2.obj
|
||||||
|
$ write sys$output "Building wpng..."
|
||||||
|
$ CALL MAKE wpng.OBJ "cc ''CCOPT' wpng" -
|
||||||
|
wpng.c writepng.h
|
||||||
|
$ call make wpng.exe -
|
||||||
|
"LINK wpng,writepng,lib.opt/opt" -
|
||||||
|
wpng.obj writepng.obj
|
||||||
|
$ exit
|
||||||
|
$!
|
||||||
|
$!
|
||||||
|
$MAKE: SUBROUTINE !SUBROUTINE TO CHECK DEPENDENCIES
|
||||||
|
$ V = 'F$Verify(0)
|
||||||
|
$! P1 = What we are trying to make
|
||||||
|
$! P2 = Command to make it
|
||||||
|
$! P3 - P8 What it depends on
|
||||||
|
$
|
||||||
|
$ If F$Search(P1) .Eqs. "" Then Goto Makeit
|
||||||
|
$ Time = F$CvTime(F$File(P1,"RDT"))
|
||||||
|
$arg=3
|
||||||
|
$Loop:
|
||||||
|
$ Argument = P'arg
|
||||||
|
$ If Argument .Eqs. "" Then Goto Exit
|
||||||
|
$ El=0
|
||||||
|
$Loop2:
|
||||||
|
$ File = F$Element(El," ",Argument)
|
||||||
|
$ If File .Eqs. " " Then Goto Endl
|
||||||
|
$ AFile = ""
|
||||||
|
$Loop3:
|
||||||
|
$ OFile = AFile
|
||||||
|
$ AFile = F$Search(File)
|
||||||
|
$ If AFile .Eqs. "" .Or. AFile .Eqs. OFile Then Goto NextEl
|
||||||
|
$ If F$CvTime(F$File(AFile,"RDT")) .Ges. Time Then Goto Makeit
|
||||||
|
$ Goto Loop3
|
||||||
|
$NextEL:
|
||||||
|
$ El = El + 1
|
||||||
|
$ Goto Loop2
|
||||||
|
$EndL:
|
||||||
|
$ arg=arg+1
|
||||||
|
$ If arg .Le. 8 Then Goto Loop
|
||||||
|
$ Goto Exit
|
||||||
|
$
|
||||||
|
$Makeit:
|
||||||
|
$ VV=F$VERIFY(0)
|
||||||
|
$ write sys$output P2
|
||||||
|
$ 'P2
|
||||||
|
$ VV='F$Verify(VV)
|
||||||
|
$Exit:
|
||||||
|
$ If V Then Set Verify
|
||||||
|
$ENDSUBROUTINE
|
308
dependencies/libpng/src/contrib/gregbook/readpng.c
vendored
Normal file
@ -0,0 +1,308 @@
|
|||||||
|
/*---------------------------------------------------------------------------
|
||||||
|
|
||||||
|
rpng - simple PNG display program readpng.c
|
||||||
|
|
||||||
|
---------------------------------------------------------------------------
|
||||||
|
|
||||||
|
Copyright (c) 1998-2007 Greg Roelofs. All rights reserved.
|
||||||
|
|
||||||
|
This software is provided "as is," without warranty of any kind,
|
||||||
|
express or implied. In no event shall the author or contributors
|
||||||
|
be held liable for any damages arising in any way from the use of
|
||||||
|
this software.
|
||||||
|
|
||||||
|
The contents of this file are DUAL-LICENSED. You may modify and/or
|
||||||
|
redistribute this software according to the terms of one of the
|
||||||
|
following two licenses (at your option):
|
||||||
|
|
||||||
|
|
||||||
|
LICENSE 1 ("BSD-like with advertising clause"):
|
||||||
|
|
||||||
|
Permission is granted to anyone to use this software for any purpose,
|
||||||
|
including commercial applications, and to alter it and redistribute
|
||||||
|
it freely, subject to the following restrictions:
|
||||||
|
|
||||||
|
1. Redistributions of source code must retain the above copyright
|
||||||
|
notice, disclaimer, and this list of conditions.
|
||||||
|
2. Redistributions in binary form must reproduce the above copyright
|
||||||
|
notice, disclaimer, and this list of conditions in the documenta-
|
||||||
|
tion and/or other materials provided with the distribution.
|
||||||
|
3. All advertising materials mentioning features or use of this
|
||||||
|
software must display the following acknowledgment:
|
||||||
|
|
||||||
|
This product includes software developed by Greg Roelofs
|
||||||
|
and contributors for the book, "PNG: The Definitive Guide,"
|
||||||
|
published by O'Reilly and Associates.
|
||||||
|
|
||||||
|
|
||||||
|
LICENSE 2 (GNU GPL v2 or later):
|
||||||
|
|
||||||
|
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 2 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, write to the Free Software Foundation,
|
||||||
|
Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
|
|
||||||
|
---------------------------------------------------------------------------*/
|
||||||
|
|
||||||
|
#include <stdio.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
|
||||||
|
#include "png.h" /* libpng header; includes zlib.h */
|
||||||
|
#include "readpng.h" /* typedefs, common macros, public prototypes */
|
||||||
|
|
||||||
|
/* future versions of libpng will provide this macro: */
|
||||||
|
#ifndef png_jmpbuf
|
||||||
|
# define png_jmpbuf(png_ptr) ((png_ptr)->jmpbuf)
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
static png_structp png_ptr = NULL;
|
||||||
|
static png_infop info_ptr = NULL;
|
||||||
|
|
||||||
|
png_uint_32 width, height;
|
||||||
|
int bit_depth, color_type;
|
||||||
|
uch *image_data = NULL;
|
||||||
|
|
||||||
|
|
||||||
|
void readpng_version_info(void)
|
||||||
|
{
|
||||||
|
fprintf(stderr, " Compiled with libpng %s; using libpng %s.\n",
|
||||||
|
PNG_LIBPNG_VER_STRING, png_libpng_ver);
|
||||||
|
fprintf(stderr, " Compiled with zlib %s; using zlib %s.\n",
|
||||||
|
ZLIB_VERSION, zlib_version);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* return value = 0 for success, 1 for bad sig, 2 for bad IHDR, 4 for no mem */
|
||||||
|
|
||||||
|
int readpng_init(FILE *infile, ulg *pWidth, ulg *pHeight)
|
||||||
|
{
|
||||||
|
uch sig[8];
|
||||||
|
|
||||||
|
|
||||||
|
/* first do a quick check that the file really is a PNG image; could
|
||||||
|
* have used slightly more general png_sig_cmp() function instead */
|
||||||
|
|
||||||
|
fread(sig, 1, 8, infile);
|
||||||
|
if (png_sig_cmp(sig, 0, 8))
|
||||||
|
return 1; /* bad signature */
|
||||||
|
|
||||||
|
|
||||||
|
/* could pass pointers to user-defined error handlers instead of NULLs: */
|
||||||
|
|
||||||
|
png_ptr = png_create_read_struct(PNG_LIBPNG_VER_STRING, NULL, NULL, NULL);
|
||||||
|
if (!png_ptr)
|
||||||
|
return 4; /* out of memory */
|
||||||
|
|
||||||
|
info_ptr = png_create_info_struct(png_ptr);
|
||||||
|
if (!info_ptr) {
|
||||||
|
png_destroy_read_struct(&png_ptr, NULL, NULL);
|
||||||
|
return 4; /* out of memory */
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* we could create a second info struct here (end_info), but it's only
|
||||||
|
* useful if we want to keep pre- and post-IDAT chunk info separated
|
||||||
|
* (mainly for PNG-aware image editors and converters) */
|
||||||
|
|
||||||
|
|
||||||
|
/* setjmp() must be called in every function that calls a PNG-reading
|
||||||
|
* libpng function */
|
||||||
|
|
||||||
|
if (setjmp(png_jmpbuf(png_ptr))) {
|
||||||
|
png_destroy_read_struct(&png_ptr, &info_ptr, NULL);
|
||||||
|
return 2;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
png_init_io(png_ptr, infile);
|
||||||
|
png_set_sig_bytes(png_ptr, 8); /* we already read the 8 signature bytes */
|
||||||
|
|
||||||
|
png_read_info(png_ptr, info_ptr); /* read all PNG info up to image data */
|
||||||
|
|
||||||
|
|
||||||
|
/* alternatively, could make separate calls to png_get_image_width(),
|
||||||
|
* etc., but want bit_depth and color_type for later [don't care about
|
||||||
|
* compression_type and filter_type => NULLs] */
|
||||||
|
|
||||||
|
png_get_IHDR(png_ptr, info_ptr, &width, &height, &bit_depth, &color_type,
|
||||||
|
NULL, NULL, NULL);
|
||||||
|
*pWidth = width;
|
||||||
|
*pHeight = height;
|
||||||
|
|
||||||
|
|
||||||
|
/* OK, that's all we need for now; return happy */
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/* returns 0 if succeeds, 1 if fails due to no bKGD chunk, 2 if libpng error;
|
||||||
|
* scales values to 8-bit if necessary */
|
||||||
|
|
||||||
|
int readpng_get_bgcolor(uch *red, uch *green, uch *blue)
|
||||||
|
{
|
||||||
|
png_color_16p pBackground;
|
||||||
|
|
||||||
|
|
||||||
|
/* setjmp() must be called in every function that calls a PNG-reading
|
||||||
|
* libpng function */
|
||||||
|
|
||||||
|
if (setjmp(png_jmpbuf(png_ptr))) {
|
||||||
|
png_destroy_read_struct(&png_ptr, &info_ptr, NULL);
|
||||||
|
return 2;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
if (!png_get_valid(png_ptr, info_ptr, PNG_INFO_bKGD))
|
||||||
|
return 1;
|
||||||
|
|
||||||
|
/* it is not obvious from the libpng documentation, but this function
|
||||||
|
* takes a pointer to a pointer, and it always returns valid red, green
|
||||||
|
* and blue values, regardless of color_type: */
|
||||||
|
|
||||||
|
png_get_bKGD(png_ptr, info_ptr, &pBackground);
|
||||||
|
|
||||||
|
|
||||||
|
/* however, it always returns the raw bKGD data, regardless of any
|
||||||
|
* bit-depth transformations, so check depth and adjust if necessary */
|
||||||
|
|
||||||
|
if (bit_depth == 16) {
|
||||||
|
*red = pBackground->red >> 8;
|
||||||
|
*green = pBackground->green >> 8;
|
||||||
|
*blue = pBackground->blue >> 8;
|
||||||
|
} else if (color_type == PNG_COLOR_TYPE_GRAY && bit_depth < 8) {
|
||||||
|
if (bit_depth == 1)
|
||||||
|
*red = *green = *blue = pBackground->gray? 255 : 0;
|
||||||
|
else if (bit_depth == 2)
|
||||||
|
*red = *green = *blue = (255/3) * pBackground->gray;
|
||||||
|
else /* bit_depth == 4 */
|
||||||
|
*red = *green = *blue = (255/15) * pBackground->gray;
|
||||||
|
} else {
|
||||||
|
*red = (uch)pBackground->red;
|
||||||
|
*green = (uch)pBackground->green;
|
||||||
|
*blue = (uch)pBackground->blue;
|
||||||
|
}
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/* display_exponent == LUT_exponent * CRT_exponent */
|
||||||
|
|
||||||
|
uch *readpng_get_image(double display_exponent, int *pChannels, ulg *pRowbytes)
|
||||||
|
{
|
||||||
|
double gamma;
|
||||||
|
png_uint_32 i, rowbytes;
|
||||||
|
png_bytepp row_pointers = NULL;
|
||||||
|
|
||||||
|
|
||||||
|
/* setjmp() must be called in every function that calls a PNG-reading
|
||||||
|
* libpng function */
|
||||||
|
|
||||||
|
if (setjmp(png_jmpbuf(png_ptr))) {
|
||||||
|
free(image_data);
|
||||||
|
image_data = NULL;
|
||||||
|
free(row_pointers);
|
||||||
|
row_pointers = NULL;
|
||||||
|
png_destroy_read_struct(&png_ptr, &info_ptr, NULL);
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* expand palette images to RGB, low-bit-depth grayscale images to 8 bits,
|
||||||
|
* transparency chunks to full alpha channel; strip 16-bit-per-sample
|
||||||
|
* images to 8 bits per sample; and convert grayscale to RGB[A] */
|
||||||
|
|
||||||
|
if (color_type == PNG_COLOR_TYPE_PALETTE)
|
||||||
|
png_set_expand(png_ptr);
|
||||||
|
if (color_type == PNG_COLOR_TYPE_GRAY && bit_depth < 8)
|
||||||
|
png_set_expand(png_ptr);
|
||||||
|
if (png_get_valid(png_ptr, info_ptr, PNG_INFO_tRNS))
|
||||||
|
png_set_expand(png_ptr);
|
||||||
|
if (bit_depth == 16)
|
||||||
|
png_set_strip_16(png_ptr);
|
||||||
|
if (color_type == PNG_COLOR_TYPE_GRAY ||
|
||||||
|
color_type == PNG_COLOR_TYPE_GRAY_ALPHA)
|
||||||
|
png_set_gray_to_rgb(png_ptr);
|
||||||
|
|
||||||
|
|
||||||
|
/* unlike the example in the libpng documentation, we have *no* idea where
|
||||||
|
* this file may have come from--so if it doesn't have a file gamma, don't
|
||||||
|
* do any correction ("do no harm") */
|
||||||
|
|
||||||
|
if (png_get_gAMA(png_ptr, info_ptr, &gamma))
|
||||||
|
png_set_gamma(png_ptr, display_exponent, gamma);
|
||||||
|
|
||||||
|
|
||||||
|
/* all transformations have been registered; now update info_ptr data,
|
||||||
|
* get rowbytes and channels, and allocate image memory */
|
||||||
|
|
||||||
|
png_read_update_info(png_ptr, info_ptr);
|
||||||
|
|
||||||
|
*pRowbytes = rowbytes = png_get_rowbytes(png_ptr, info_ptr);
|
||||||
|
*pChannels = (int)png_get_channels(png_ptr, info_ptr);
|
||||||
|
|
||||||
|
if ((image_data = (uch *)malloc(rowbytes*height)) == NULL) {
|
||||||
|
png_destroy_read_struct(&png_ptr, &info_ptr, NULL);
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
if ((row_pointers = (png_bytepp)malloc(height*sizeof(png_bytep))) == NULL) {
|
||||||
|
png_destroy_read_struct(&png_ptr, &info_ptr, NULL);
|
||||||
|
free(image_data);
|
||||||
|
image_data = NULL;
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
Trace((stderr, "readpng_get_image: channels = %d, rowbytes = %ld, height = %ld\n", *pChannels, rowbytes, height));
|
||||||
|
|
||||||
|
|
||||||
|
/* set the individual row_pointers to point at the correct offsets */
|
||||||
|
|
||||||
|
for (i = 0; i < height; ++i)
|
||||||
|
row_pointers[i] = image_data + i*rowbytes;
|
||||||
|
|
||||||
|
|
||||||
|
/* now we can go ahead and just read the whole image */
|
||||||
|
|
||||||
|
png_read_image(png_ptr, row_pointers);
|
||||||
|
|
||||||
|
|
||||||
|
/* and we're done! (png_read_end() can be omitted if no processing of
|
||||||
|
* post-IDAT text/time/etc. is desired) */
|
||||||
|
|
||||||
|
free(row_pointers);
|
||||||
|
row_pointers = NULL;
|
||||||
|
|
||||||
|
png_read_end(png_ptr, NULL);
|
||||||
|
|
||||||
|
return image_data;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
void readpng_cleanup(int free_image_data)
|
||||||
|
{
|
||||||
|
if (free_image_data && image_data) {
|
||||||
|
free(image_data);
|
||||||
|
image_data = NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (png_ptr && info_ptr) {
|
||||||
|
png_destroy_read_struct(&png_ptr, &info_ptr, NULL);
|
||||||
|
png_ptr = NULL;
|
||||||
|
info_ptr = NULL;
|
||||||
|
}
|
||||||
|
}
|
88
dependencies/libpng/src/contrib/gregbook/readpng.h
vendored
Normal file
@ -0,0 +1,88 @@
|
|||||||
|
/*---------------------------------------------------------------------------
|
||||||
|
|
||||||
|
rpng - simple PNG display program readpng.h
|
||||||
|
|
||||||
|
---------------------------------------------------------------------------
|
||||||
|
|
||||||
|
Copyright (c) 1998-2007 Greg Roelofs. All rights reserved.
|
||||||
|
|
||||||
|
This software is provided "as is," without warranty of any kind,
|
||||||
|
express or implied. In no event shall the author or contributors
|
||||||
|
be held liable for any damages arising in any way from the use of
|
||||||
|
this software.
|
||||||
|
|
||||||
|
The contents of this file are DUAL-LICENSED. You may modify and/or
|
||||||
|
redistribute this software according to the terms of one of the
|
||||||
|
following two licenses (at your option):
|
||||||
|
|
||||||
|
|
||||||
|
LICENSE 1 ("BSD-like with advertising clause"):
|
||||||
|
|
||||||
|
Permission is granted to anyone to use this software for any purpose,
|
||||||
|
including commercial applications, and to alter it and redistribute
|
||||||
|
it freely, subject to the following restrictions:
|
||||||
|
|
||||||
|
1. Redistributions of source code must retain the above copyright
|
||||||
|
notice, disclaimer, and this list of conditions.
|
||||||
|
2. Redistributions in binary form must reproduce the above copyright
|
||||||
|
notice, disclaimer, and this list of conditions in the documenta-
|
||||||
|
tion and/or other materials provided with the distribution.
|
||||||
|
3. All advertising materials mentioning features or use of this
|
||||||
|
software must display the following acknowledgment:
|
||||||
|
|
||||||
|
This product includes software developed by Greg Roelofs
|
||||||
|
and contributors for the book, "PNG: The Definitive Guide,"
|
||||||
|
published by O'Reilly and Associates.
|
||||||
|
|
||||||
|
|
||||||
|
LICENSE 2 (GNU GPL v2 or later):
|
||||||
|
|
||||||
|
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 2 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, write to the Free Software Foundation,
|
||||||
|
Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
|
|
||||||
|
---------------------------------------------------------------------------*/
|
||||||
|
|
||||||
|
#ifndef TRUE
|
||||||
|
# define TRUE 1
|
||||||
|
# define FALSE 0
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifndef MAX
|
||||||
|
# define MAX(a,b) ((a) > (b)? (a) : (b))
|
||||||
|
# define MIN(a,b) ((a) < (b)? (a) : (b))
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifdef DEBUG
|
||||||
|
# define Trace(x) {fprintf x ; fflush(stderr); fflush(stdout);}
|
||||||
|
#else
|
||||||
|
# define Trace(x) ;
|
||||||
|
#endif
|
||||||
|
|
||||||
|
typedef unsigned char uch;
|
||||||
|
typedef unsigned short ush;
|
||||||
|
typedef unsigned long ulg;
|
||||||
|
|
||||||
|
|
||||||
|
/* prototypes for public functions in readpng.c */
|
||||||
|
|
||||||
|
void readpng_version_info(void);
|
||||||
|
|
||||||
|
int readpng_init(FILE *infile, ulg *pWidth, ulg *pHeight);
|
||||||
|
|
||||||
|
int readpng_get_bgcolor(uch *bg_red, uch *bg_green, uch *bg_blue);
|
||||||
|
|
||||||
|
uch *readpng_get_image(double display_exponent, int *pChannels,
|
||||||
|
ulg *pRowbytes);
|
||||||
|
|
||||||
|
void readpng_cleanup(int free_image_data);
|
648
dependencies/libpng/src/contrib/gregbook/readpng2.c
vendored
Normal file
@ -0,0 +1,648 @@
|
|||||||
|
/*---------------------------------------------------------------------------
|
||||||
|
|
||||||
|
rpng2 - progressive-model PNG display program readpng2.c
|
||||||
|
|
||||||
|
---------------------------------------------------------------------------
|
||||||
|
|
||||||
|
Copyright (c) 1998-2007 Greg Roelofs. All rights reserved.
|
||||||
|
|
||||||
|
This software is provided "as is," without warranty of any kind,
|
||||||
|
express or implied. In no event shall the author or contributors
|
||||||
|
be held liable for any damages arising in any way from the use of
|
||||||
|
this software.
|
||||||
|
|
||||||
|
The contents of this file are DUAL-LICENSED. You may modify and/or
|
||||||
|
redistribute this software according to the terms of one of the
|
||||||
|
following two licenses (at your option):
|
||||||
|
|
||||||
|
|
||||||
|
LICENSE 1 ("BSD-like with advertising clause"):
|
||||||
|
|
||||||
|
Permission is granted to anyone to use this software for any purpose,
|
||||||
|
including commercial applications, and to alter it and redistribute
|
||||||
|
it freely, subject to the following restrictions:
|
||||||
|
|
||||||
|
1. Redistributions of source code must retain the above copyright
|
||||||
|
notice, disclaimer, and this list of conditions.
|
||||||
|
2. Redistributions in binary form must reproduce the above copyright
|
||||||
|
notice, disclaimer, and this list of conditions in the documenta-
|
||||||
|
tion and/or other materials provided with the distribution.
|
||||||
|
3. All advertising materials mentioning features or use of this
|
||||||
|
software must display the following acknowledgment:
|
||||||
|
|
||||||
|
This product includes software developed by Greg Roelofs
|
||||||
|
and contributors for the book, "PNG: The Definitive Guide,"
|
||||||
|
published by O'Reilly and Associates.
|
||||||
|
|
||||||
|
|
||||||
|
LICENSE 2 (GNU GPL v2 or later):
|
||||||
|
|
||||||
|
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 2 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, write to the Free Software Foundation,
|
||||||
|
Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
|
|
||||||
|
---------------------------------------------------------------------------*/
|
||||||
|
|
||||||
|
|
||||||
|
#include <stdlib.h> /* for exit() prototype */
|
||||||
|
|
||||||
|
#include "png.h" /* libpng header; includes zlib.h and setjmp.h */
|
||||||
|
#include "readpng2.h" /* typedefs, common macros, public prototypes */
|
||||||
|
|
||||||
|
|
||||||
|
/* local prototypes */
|
||||||
|
|
||||||
|
static void readpng2_info_callback(png_structp png_ptr, png_infop info_ptr);
|
||||||
|
static void readpng2_row_callback(png_structp png_ptr, png_bytep new_row,
|
||||||
|
png_uint_32 row_num, int pass);
|
||||||
|
static void readpng2_end_callback(png_structp png_ptr, png_infop info_ptr);
|
||||||
|
static void readpng2_error_handler(png_structp png_ptr, png_const_charp msg);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
void readpng2_version_info(void)
|
||||||
|
{
|
||||||
|
#if defined(PNG_ASSEMBLER_CODE_SUPPORTED) && \
|
||||||
|
(defined(__i386__) || defined(_M_IX86) || defined(__x86_64__)) && \
|
||||||
|
defined(PNG_LIBPNG_VER) && (PNG_LIBPNG_VER >= 10200)
|
||||||
|
/*
|
||||||
|
* WARNING: This preprocessor approach means that the following code
|
||||||
|
* cannot be used with a libpng DLL older than 1.2.0--the
|
||||||
|
* compiled-in symbols for the new functions will not exist.
|
||||||
|
* (Could use dlopen() and dlsym() on Unix and corresponding
|
||||||
|
* calls for Windows, but not portable...)
|
||||||
|
*/
|
||||||
|
{
|
||||||
|
int mmxsupport = png_mmx_support();
|
||||||
|
if (mmxsupport < 0)
|
||||||
|
fprintf(stderr, " Compiled with libpng %s; using libpng %s "
|
||||||
|
"without MMX support.\n", PNG_LIBPNG_VER_STRING, png_libpng_ver);
|
||||||
|
else {
|
||||||
|
int compilerID;
|
||||||
|
png_uint_32 mmx_mask = png_get_mmx_flagmask(
|
||||||
|
PNG_SELECT_READ | PNG_SELECT_WRITE, &compilerID);
|
||||||
|
|
||||||
|
fprintf(stderr, " Compiled with libpng %s; using libpng %s "
|
||||||
|
"with MMX support\n (%s version).", PNG_LIBPNG_VER_STRING,
|
||||||
|
png_libpng_ver, compilerID == 1? "MSVC++" :
|
||||||
|
(compilerID == 2? "GNU C" : "unknown"));
|
||||||
|
fprintf(stderr, " Processor (x86%s) %s MMX instructions.\n",
|
||||||
|
#if defined(__x86_64__)
|
||||||
|
"_64",
|
||||||
|
#else
|
||||||
|
"",
|
||||||
|
#endif
|
||||||
|
mmxsupport? "supports" : "does not support");
|
||||||
|
if (mmxsupport > 0) {
|
||||||
|
int num_optims = 0;
|
||||||
|
|
||||||
|
fprintf(stderr,
|
||||||
|
" Potential MMX optimizations supported by libpng:\n");
|
||||||
|
if (mmx_mask & PNG_ASM_FLAG_MMX_READ_FILTER_SUB)
|
||||||
|
++num_optims;
|
||||||
|
if (mmx_mask & PNG_ASM_FLAG_MMX_READ_FILTER_UP)
|
||||||
|
++num_optims;
|
||||||
|
if (mmx_mask & PNG_ASM_FLAG_MMX_READ_FILTER_AVG)
|
||||||
|
++num_optims;
|
||||||
|
if (mmx_mask & PNG_ASM_FLAG_MMX_READ_FILTER_PAETH)
|
||||||
|
++num_optims;
|
||||||
|
if (num_optims)
|
||||||
|
fprintf(stderr,
|
||||||
|
" decoding %s row filters (reading)\n",
|
||||||
|
(num_optims == 4)? "all non-trivial" : "some");
|
||||||
|
if (mmx_mask & PNG_ASM_FLAG_MMX_READ_COMBINE_ROW) {
|
||||||
|
fprintf(stderr, " combining rows (reading)\n");
|
||||||
|
++num_optims;
|
||||||
|
}
|
||||||
|
if (mmx_mask & PNG_ASM_FLAG_MMX_READ_INTERLACE) {
|
||||||
|
fprintf(stderr,
|
||||||
|
" expanding interlacing (reading)\n");
|
||||||
|
++num_optims;
|
||||||
|
}
|
||||||
|
mmx_mask &= ~( PNG_ASM_FLAG_MMX_READ_COMBINE_ROW \
|
||||||
|
| PNG_ASM_FLAG_MMX_READ_INTERLACE \
|
||||||
|
| PNG_ASM_FLAG_MMX_READ_FILTER_SUB \
|
||||||
|
| PNG_ASM_FLAG_MMX_READ_FILTER_UP \
|
||||||
|
| PNG_ASM_FLAG_MMX_READ_FILTER_AVG \
|
||||||
|
| PNG_ASM_FLAG_MMX_READ_FILTER_PAETH );
|
||||||
|
if (mmx_mask) {
|
||||||
|
fprintf(stderr, " other (unknown)\n");
|
||||||
|
++num_optims;
|
||||||
|
}
|
||||||
|
if (num_optims == 0)
|
||||||
|
fprintf(stderr, " (none)\n");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
#else
|
||||||
|
fprintf(stderr, " Compiled with libpng %s; using libpng %s "
|
||||||
|
"without MMX support.\n", PNG_LIBPNG_VER_STRING, png_libpng_ver);
|
||||||
|
#endif
|
||||||
|
|
||||||
|
fprintf(stderr, " Compiled with zlib %s; using zlib %s.\n",
|
||||||
|
ZLIB_VERSION, zlib_version);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
int readpng2_check_sig(uch *sig, int num)
|
||||||
|
{
|
||||||
|
return !png_sig_cmp(sig, 0, num);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/* returns 0 for success, 2 for libpng problem, 4 for out of memory */
|
||||||
|
|
||||||
|
int readpng2_init(mainprog_info *mainprog_ptr)
|
||||||
|
{
|
||||||
|
png_structp png_ptr; /* note: temporary variables! */
|
||||||
|
png_infop info_ptr;
|
||||||
|
|
||||||
|
|
||||||
|
/* could also replace libpng warning-handler (final NULL), but no need: */
|
||||||
|
|
||||||
|
png_ptr = png_create_read_struct(PNG_LIBPNG_VER_STRING, mainprog_ptr,
|
||||||
|
readpng2_error_handler, NULL);
|
||||||
|
if (!png_ptr)
|
||||||
|
return 4; /* out of memory */
|
||||||
|
|
||||||
|
info_ptr = png_create_info_struct(png_ptr);
|
||||||
|
if (!info_ptr) {
|
||||||
|
png_destroy_read_struct(&png_ptr, NULL, NULL);
|
||||||
|
return 4; /* out of memory */
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* we could create a second info struct here (end_info), but it's only
|
||||||
|
* useful if we want to keep pre- and post-IDAT chunk info separated
|
||||||
|
* (mainly for PNG-aware image editors and converters) */
|
||||||
|
|
||||||
|
|
||||||
|
/* setjmp() must be called in every function that calls a PNG-reading
|
||||||
|
* libpng function, unless an alternate error handler was installed--
|
||||||
|
* but compatible error handlers must either use longjmp() themselves
|
||||||
|
* (as in this program) or exit immediately, so here we are: */
|
||||||
|
|
||||||
|
if (setjmp(mainprog_ptr->jmpbuf)) {
|
||||||
|
png_destroy_read_struct(&png_ptr, &info_ptr, NULL);
|
||||||
|
return 2;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
#ifdef PNG_UNKNOWN_CHUNKS_SUPPORTED
|
||||||
|
/* prepare the reader to ignore all recognized chunks whose data won't be
|
||||||
|
* used, i.e., all chunks recognized by libpng except for IHDR, PLTE, IDAT,
|
||||||
|
* IEND, tRNS, bKGD, gAMA, and sRGB (small performance improvement) */
|
||||||
|
{
|
||||||
|
/* These byte strings were copied from png.h. If a future libpng
|
||||||
|
* version recognizes more chunks, add them to this list. If a
|
||||||
|
* future version of readpng2.c recognizes more chunks, delete them
|
||||||
|
* from this list. */
|
||||||
|
static const png_byte chunks_to_ignore[] = {
|
||||||
|
99, 72, 82, 77, '\0', /* cHRM */
|
||||||
|
104, 73, 83, 84, '\0', /* hIST */
|
||||||
|
105, 67, 67, 80, '\0', /* iCCP */
|
||||||
|
105, 84, 88, 116, '\0', /* iTXt */
|
||||||
|
111, 70, 70, 115, '\0', /* oFFs */
|
||||||
|
112, 67, 65, 76, '\0', /* pCAL */
|
||||||
|
112, 72, 89, 115, '\0', /* pHYs */
|
||||||
|
115, 66, 73, 84, '\0', /* sBIT */
|
||||||
|
115, 67, 65, 76, '\0', /* sCAL */
|
||||||
|
115, 80, 76, 84, '\0', /* sPLT */
|
||||||
|
115, 84, 69, 82, '\0', /* sTER */
|
||||||
|
116, 69, 88, 116, '\0', /* tEXt */
|
||||||
|
116, 73, 77, 69, '\0', /* tIME */
|
||||||
|
122, 84, 88, 116, '\0' /* zTXt */
|
||||||
|
};
|
||||||
|
|
||||||
|
png_set_keep_unknown_chunks(png_ptr, 1 /* PNG_HANDLE_CHUNK_NEVER */,
|
||||||
|
chunks_to_ignore, sizeof(chunks_to_ignore)/5);
|
||||||
|
}
|
||||||
|
#endif /* PNG_UNKNOWN_CHUNKS_SUPPORTED */
|
||||||
|
|
||||||
|
|
||||||
|
/* instead of doing png_init_io() here, now we set up our callback
|
||||||
|
* functions for progressive decoding */
|
||||||
|
|
||||||
|
png_set_progressive_read_fn(png_ptr, mainprog_ptr,
|
||||||
|
readpng2_info_callback, readpng2_row_callback, readpng2_end_callback);
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* may as well enable or disable MMX routines here, if supported;
|
||||||
|
*
|
||||||
|
* to enable all: mask = png_get_mmx_flagmask (
|
||||||
|
* PNG_SELECT_READ | PNG_SELECT_WRITE, &compilerID);
|
||||||
|
* flags = png_get_asm_flags (png_ptr);
|
||||||
|
* flags |= mask;
|
||||||
|
* png_set_asm_flags (png_ptr, flags);
|
||||||
|
*
|
||||||
|
* to disable all: mask = png_get_mmx_flagmask (
|
||||||
|
* PNG_SELECT_READ | PNG_SELECT_WRITE, &compilerID);
|
||||||
|
* flags = png_get_asm_flags (png_ptr);
|
||||||
|
* flags &= ~mask;
|
||||||
|
* png_set_asm_flags (png_ptr, flags);
|
||||||
|
*/
|
||||||
|
|
||||||
|
#if (defined(__i386__) || defined(_M_IX86) || defined(__x86_64__)) && \
|
||||||
|
defined(PNG_LIBPNG_VER) && (PNG_LIBPNG_VER >= 10200)
|
||||||
|
/*
|
||||||
|
* WARNING: This preprocessor approach means that the following code
|
||||||
|
* cannot be used with a libpng DLL older than 1.2.0--the
|
||||||
|
* compiled-in symbols for the new functions will not exist.
|
||||||
|
* (Could use dlopen() and dlsym() on Unix and corresponding
|
||||||
|
* calls for Windows, but not portable...)
|
||||||
|
*/
|
||||||
|
{
|
||||||
|
#ifdef PNG_ASSEMBLER_CODE_SUPPORTED
|
||||||
|
png_uint_32 mmx_disable_mask = 0;
|
||||||
|
png_uint_32 asm_flags, mmx_mask;
|
||||||
|
int compilerID;
|
||||||
|
|
||||||
|
if (mainprog_ptr->nommxfilters)
|
||||||
|
mmx_disable_mask |= ( PNG_ASM_FLAG_MMX_READ_FILTER_SUB \
|
||||||
|
| PNG_ASM_FLAG_MMX_READ_FILTER_UP \
|
||||||
|
| PNG_ASM_FLAG_MMX_READ_FILTER_AVG \
|
||||||
|
| PNG_ASM_FLAG_MMX_READ_FILTER_PAETH );
|
||||||
|
if (mainprog_ptr->nommxcombine)
|
||||||
|
mmx_disable_mask |= PNG_ASM_FLAG_MMX_READ_COMBINE_ROW;
|
||||||
|
if (mainprog_ptr->nommxinterlace)
|
||||||
|
mmx_disable_mask |= PNG_ASM_FLAG_MMX_READ_INTERLACE;
|
||||||
|
asm_flags = png_get_asm_flags(png_ptr);
|
||||||
|
png_set_asm_flags(png_ptr, asm_flags & ~mmx_disable_mask);
|
||||||
|
|
||||||
|
|
||||||
|
/* Now query libpng's asm settings, just for yuks. Note that this
|
||||||
|
* differs from the querying of its *potential* MMX capabilities
|
||||||
|
* in readpng2_version_info(); this is true runtime verification. */
|
||||||
|
|
||||||
|
asm_flags = png_get_asm_flags(png_ptr);
|
||||||
|
mmx_mask = png_get_mmx_flagmask(PNG_SELECT_READ | PNG_SELECT_WRITE,
|
||||||
|
&compilerID);
|
||||||
|
if (asm_flags & PNG_ASM_FLAG_MMX_SUPPORT_COMPILED)
|
||||||
|
fprintf(stderr,
|
||||||
|
" MMX support (%s version) is compiled into libpng\n",
|
||||||
|
compilerID == 1? "MSVC++" :
|
||||||
|
(compilerID == 2? "GNU C" : "unknown"));
|
||||||
|
else
|
||||||
|
fprintf(stderr, " MMX support is not compiled into libpng\n");
|
||||||
|
fprintf(stderr, " MMX instructions are %ssupported by CPU\n",
|
||||||
|
(asm_flags & PNG_ASM_FLAG_MMX_SUPPORT_IN_CPU)? "" : "not ");
|
||||||
|
fprintf(stderr, " MMX read support for combining rows is %sabled\n",
|
||||||
|
(asm_flags & PNG_ASM_FLAG_MMX_READ_COMBINE_ROW)? "en" : "dis");
|
||||||
|
fprintf(stderr,
|
||||||
|
" MMX read support for expanding interlacing is %sabled\n",
|
||||||
|
(asm_flags & PNG_ASM_FLAG_MMX_READ_INTERLACE)? "en" : "dis");
|
||||||
|
fprintf(stderr, " MMX read support for \"sub\" filter is %sabled\n",
|
||||||
|
(asm_flags & PNG_ASM_FLAG_MMX_READ_FILTER_SUB)? "en" : "dis");
|
||||||
|
fprintf(stderr, " MMX read support for \"up\" filter is %sabled\n",
|
||||||
|
(asm_flags & PNG_ASM_FLAG_MMX_READ_FILTER_UP)? "en" : "dis");
|
||||||
|
fprintf(stderr, " MMX read support for \"avg\" filter is %sabled\n",
|
||||||
|
(asm_flags & PNG_ASM_FLAG_MMX_READ_FILTER_AVG)? "en" : "dis");
|
||||||
|
fprintf(stderr, " MMX read support for \"Paeth\" filter is %sabled\n",
|
||||||
|
(asm_flags & PNG_ASM_FLAG_MMX_READ_FILTER_PAETH)? "en" : "dis");
|
||||||
|
asm_flags &= (mmx_mask & ~( PNG_ASM_FLAG_MMX_READ_COMBINE_ROW \
|
||||||
|
| PNG_ASM_FLAG_MMX_READ_INTERLACE \
|
||||||
|
| PNG_ASM_FLAG_MMX_READ_FILTER_SUB \
|
||||||
|
| PNG_ASM_FLAG_MMX_READ_FILTER_UP \
|
||||||
|
| PNG_ASM_FLAG_MMX_READ_FILTER_AVG \
|
||||||
|
| PNG_ASM_FLAG_MMX_READ_FILTER_PAETH ));
|
||||||
|
if (asm_flags)
|
||||||
|
fprintf(stderr,
|
||||||
|
" additional MMX support is also enabled (0x%02lx)\n",
|
||||||
|
asm_flags);
|
||||||
|
#else /* !PNG_ASSEMBLER_CODE_SUPPORTED */
|
||||||
|
fprintf(stderr, " MMX querying is disabled in libpng.\n");
|
||||||
|
#endif /* ?PNG_ASSEMBLER_CODE_SUPPORTED */
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
/* make sure we save our pointers for use in readpng2_decode_data() */
|
||||||
|
|
||||||
|
mainprog_ptr->png_ptr = png_ptr;
|
||||||
|
mainprog_ptr->info_ptr = info_ptr;
|
||||||
|
|
||||||
|
|
||||||
|
/* and that's all there is to initialization */
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/* returns 0 for success, 2 for libpng (longjmp) problem */
|
||||||
|
|
||||||
|
int readpng2_decode_data(mainprog_info *mainprog_ptr, uch *rawbuf, ulg length)
|
||||||
|
{
|
||||||
|
png_structp png_ptr = (png_structp)mainprog_ptr->png_ptr;
|
||||||
|
png_infop info_ptr = (png_infop)mainprog_ptr->info_ptr;
|
||||||
|
|
||||||
|
|
||||||
|
/* setjmp() must be called in every function that calls a PNG-reading
|
||||||
|
* libpng function */
|
||||||
|
|
||||||
|
if (setjmp(mainprog_ptr->jmpbuf)) {
|
||||||
|
png_destroy_read_struct(&png_ptr, &info_ptr, NULL);
|
||||||
|
mainprog_ptr->png_ptr = NULL;
|
||||||
|
mainprog_ptr->info_ptr = NULL;
|
||||||
|
return 2;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* hand off the next chunk of input data to libpng for decoding */
|
||||||
|
|
||||||
|
png_process_data(png_ptr, info_ptr, rawbuf, length);
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
static void readpng2_info_callback(png_structp png_ptr, png_infop info_ptr)
|
||||||
|
{
|
||||||
|
mainprog_info *mainprog_ptr;
|
||||||
|
int color_type, bit_depth;
|
||||||
|
png_uint_32 width, height;
|
||||||
|
double gamma;
|
||||||
|
|
||||||
|
|
||||||
|
/* setjmp() doesn't make sense here, because we'd either have to exit(),
|
||||||
|
* longjmp() ourselves, or return control to libpng, which doesn't want
|
||||||
|
* to see us again. By not doing anything here, libpng will instead jump
|
||||||
|
* to readpng2_decode_data(), which can return an error value to the main
|
||||||
|
* program. */
|
||||||
|
|
||||||
|
|
||||||
|
/* retrieve the pointer to our special-purpose struct, using the png_ptr
|
||||||
|
* that libpng passed back to us (i.e., not a global this time--there's
|
||||||
|
* no real difference for a single image, but for a multithreaded browser
|
||||||
|
* decoding several PNG images at the same time, one needs to avoid mixing
|
||||||
|
* up different images' structs) */
|
||||||
|
|
||||||
|
mainprog_ptr = png_get_progressive_ptr(png_ptr);
|
||||||
|
|
||||||
|
if (mainprog_ptr == NULL) { /* we be hosed */
|
||||||
|
fprintf(stderr,
|
||||||
|
"readpng2 error: main struct not recoverable in info_callback.\n");
|
||||||
|
fflush(stderr);
|
||||||
|
return;
|
||||||
|
/*
|
||||||
|
* Alternatively, we could call our error-handler just like libpng
|
||||||
|
* does, which would effectively terminate the program. Since this
|
||||||
|
* can only happen if png_ptr gets redirected somewhere odd or the
|
||||||
|
* main PNG struct gets wiped, we're probably toast anyway. (If
|
||||||
|
* png_ptr itself is NULL, we would not have been called.)
|
||||||
|
*/
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* this is just like in the non-progressive case */
|
||||||
|
|
||||||
|
png_get_IHDR(png_ptr, info_ptr, &width, &height, &bit_depth, &color_type,
|
||||||
|
NULL, NULL, NULL);
|
||||||
|
mainprog_ptr->width = (ulg)width;
|
||||||
|
mainprog_ptr->height = (ulg)height;
|
||||||
|
|
||||||
|
|
||||||
|
/* since we know we've read all of the PNG file's "header" (i.e., up
|
||||||
|
* to IDAT), we can check for a background color here */
|
||||||
|
|
||||||
|
if (mainprog_ptr->need_bgcolor &&
|
||||||
|
png_get_valid(png_ptr, info_ptr, PNG_INFO_bKGD))
|
||||||
|
{
|
||||||
|
png_color_16p pBackground;
|
||||||
|
|
||||||
|
/* it is not obvious from the libpng documentation, but this function
|
||||||
|
* takes a pointer to a pointer, and it always returns valid red,
|
||||||
|
* green and blue values, regardless of color_type: */
|
||||||
|
png_get_bKGD(png_ptr, info_ptr, &pBackground);
|
||||||
|
|
||||||
|
/* however, it always returns the raw bKGD data, regardless of any
|
||||||
|
* bit-depth transformations, so check depth and adjust if necessary */
|
||||||
|
if (bit_depth == 16) {
|
||||||
|
mainprog_ptr->bg_red = pBackground->red >> 8;
|
||||||
|
mainprog_ptr->bg_green = pBackground->green >> 8;
|
||||||
|
mainprog_ptr->bg_blue = pBackground->blue >> 8;
|
||||||
|
} else if (color_type == PNG_COLOR_TYPE_GRAY && bit_depth < 8) {
|
||||||
|
if (bit_depth == 1)
|
||||||
|
mainprog_ptr->bg_red = mainprog_ptr->bg_green =
|
||||||
|
mainprog_ptr->bg_blue = pBackground->gray? 255 : 0;
|
||||||
|
else if (bit_depth == 2)
|
||||||
|
mainprog_ptr->bg_red = mainprog_ptr->bg_green =
|
||||||
|
mainprog_ptr->bg_blue = (255/3) * pBackground->gray;
|
||||||
|
else /* bit_depth == 4 */
|
||||||
|
mainprog_ptr->bg_red = mainprog_ptr->bg_green =
|
||||||
|
mainprog_ptr->bg_blue = (255/15) * pBackground->gray;
|
||||||
|
} else {
|
||||||
|
mainprog_ptr->bg_red = (uch)pBackground->red;
|
||||||
|
mainprog_ptr->bg_green = (uch)pBackground->green;
|
||||||
|
mainprog_ptr->bg_blue = (uch)pBackground->blue;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* as before, let libpng expand palette images to RGB, low-bit-depth
|
||||||
|
* grayscale images to 8 bits, transparency chunks to full alpha channel;
|
||||||
|
* strip 16-bit-per-sample images to 8 bits per sample; and convert
|
||||||
|
* grayscale to RGB[A] */
|
||||||
|
|
||||||
|
if (color_type == PNG_COLOR_TYPE_PALETTE)
|
||||||
|
png_set_expand(png_ptr);
|
||||||
|
if (color_type == PNG_COLOR_TYPE_GRAY && bit_depth < 8)
|
||||||
|
png_set_expand(png_ptr);
|
||||||
|
if (png_get_valid(png_ptr, info_ptr, PNG_INFO_tRNS))
|
||||||
|
png_set_expand(png_ptr);
|
||||||
|
if (bit_depth == 16)
|
||||||
|
png_set_strip_16(png_ptr);
|
||||||
|
if (color_type == PNG_COLOR_TYPE_GRAY ||
|
||||||
|
color_type == PNG_COLOR_TYPE_GRAY_ALPHA)
|
||||||
|
png_set_gray_to_rgb(png_ptr);
|
||||||
|
|
||||||
|
|
||||||
|
/* Unlike the basic viewer, which was designed to operate on local files,
|
||||||
|
* this program is intended to simulate a web browser--even though we
|
||||||
|
* actually read from a local file, too. But because we are pretending
|
||||||
|
* that most of the images originate on the Internet, we follow the recom-
|
||||||
|
* mendation of the sRGB proposal and treat unlabelled images (no gAMA
|
||||||
|
* chunk) as existing in the sRGB color space. That is, we assume that
|
||||||
|
* such images have a file gamma of 0.45455, which corresponds to a PC-like
|
||||||
|
* display system. This change in assumptions will have no effect on a
|
||||||
|
* PC-like system, but on a Mac, SGI, NeXT or other system with a non-
|
||||||
|
* identity lookup table, it will darken unlabelled images, which effec-
|
||||||
|
* tively favors images from PC-like systems over those originating on
|
||||||
|
* the local platform. Note that mainprog_ptr->display_exponent is the
|
||||||
|
* "gamma" value for the entire display system, i.e., the product of
|
||||||
|
* LUT_exponent and CRT_exponent. */
|
||||||
|
|
||||||
|
if (png_get_gAMA(png_ptr, info_ptr, &gamma))
|
||||||
|
png_set_gamma(png_ptr, mainprog_ptr->display_exponent, gamma);
|
||||||
|
else
|
||||||
|
png_set_gamma(png_ptr, mainprog_ptr->display_exponent, 0.45455);
|
||||||
|
|
||||||
|
|
||||||
|
/* we'll let libpng expand interlaced images, too */
|
||||||
|
|
||||||
|
mainprog_ptr->passes = png_set_interlace_handling(png_ptr);
|
||||||
|
|
||||||
|
|
||||||
|
/* all transformations have been registered; now update info_ptr data and
|
||||||
|
* then get rowbytes and channels */
|
||||||
|
|
||||||
|
png_read_update_info(png_ptr, info_ptr);
|
||||||
|
|
||||||
|
mainprog_ptr->rowbytes = (int)png_get_rowbytes(png_ptr, info_ptr);
|
||||||
|
mainprog_ptr->channels = png_get_channels(png_ptr, info_ptr);
|
||||||
|
|
||||||
|
|
||||||
|
/* Call the main program to allocate memory for the image buffer and
|
||||||
|
* initialize windows and whatnot. (The old-style function-pointer
|
||||||
|
* invocation is used for compatibility with a few supposedly ANSI
|
||||||
|
* compilers that nevertheless barf on "fn_ptr()"-style syntax.) */
|
||||||
|
|
||||||
|
(*mainprog_ptr->mainprog_init)();
|
||||||
|
|
||||||
|
|
||||||
|
/* and that takes care of initialization */
|
||||||
|
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
static void readpng2_row_callback(png_structp png_ptr, png_bytep new_row,
|
||||||
|
png_uint_32 row_num, int pass)
|
||||||
|
{
|
||||||
|
mainprog_info *mainprog_ptr;
|
||||||
|
|
||||||
|
|
||||||
|
/* first check whether the row differs from the previous pass; if not,
|
||||||
|
* nothing to combine or display */
|
||||||
|
|
||||||
|
if (!new_row)
|
||||||
|
return;
|
||||||
|
|
||||||
|
|
||||||
|
/* retrieve the pointer to our special-purpose struct so we can access
|
||||||
|
* the old rows and image-display callback function */
|
||||||
|
|
||||||
|
mainprog_ptr = png_get_progressive_ptr(png_ptr);
|
||||||
|
|
||||||
|
|
||||||
|
/* save the pass number for optional use by the front end */
|
||||||
|
|
||||||
|
mainprog_ptr->pass = pass;
|
||||||
|
|
||||||
|
|
||||||
|
/* have libpng either combine the new row data with the existing row data
|
||||||
|
* from previous passes (if interlaced) or else just copy the new row
|
||||||
|
* into the main program's image buffer */
|
||||||
|
|
||||||
|
png_progressive_combine_row(png_ptr, mainprog_ptr->row_pointers[row_num],
|
||||||
|
new_row);
|
||||||
|
|
||||||
|
|
||||||
|
/* finally, call the display routine in the main program with the number
|
||||||
|
* of the row we just updated */
|
||||||
|
|
||||||
|
(*mainprog_ptr->mainprog_display_row)(row_num);
|
||||||
|
|
||||||
|
|
||||||
|
/* and we're ready for more */
|
||||||
|
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
static void readpng2_end_callback(png_structp png_ptr, png_infop info_ptr)
|
||||||
|
{
|
||||||
|
mainprog_info *mainprog_ptr;
|
||||||
|
|
||||||
|
|
||||||
|
/* retrieve the pointer to our special-purpose struct */
|
||||||
|
|
||||||
|
mainprog_ptr = png_get_progressive_ptr(png_ptr);
|
||||||
|
|
||||||
|
|
||||||
|
/* let the main program know that it should flush any buffered image
|
||||||
|
* data to the display now and set a "done" flag or whatever, but note
|
||||||
|
* that it SHOULD NOT DESTROY THE PNG STRUCTS YET--in other words, do
|
||||||
|
* NOT call readpng2_cleanup() either here or in the finish_display()
|
||||||
|
* routine; wait until control returns to the main program via
|
||||||
|
* readpng2_decode_data() */
|
||||||
|
|
||||||
|
(*mainprog_ptr->mainprog_finish_display)();
|
||||||
|
|
||||||
|
|
||||||
|
/* all done */
|
||||||
|
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
void readpng2_cleanup(mainprog_info *mainprog_ptr)
|
||||||
|
{
|
||||||
|
png_structp png_ptr = (png_structp)mainprog_ptr->png_ptr;
|
||||||
|
png_infop info_ptr = (png_infop)mainprog_ptr->info_ptr;
|
||||||
|
|
||||||
|
if (png_ptr && info_ptr)
|
||||||
|
png_destroy_read_struct(&png_ptr, &info_ptr, NULL);
|
||||||
|
|
||||||
|
mainprog_ptr->png_ptr = NULL;
|
||||||
|
mainprog_ptr->info_ptr = NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
static void readpng2_error_handler(png_structp png_ptr, png_const_charp msg)
|
||||||
|
{
|
||||||
|
mainprog_info *mainprog_ptr;
|
||||||
|
|
||||||
|
/* This function, aside from the extra step of retrieving the "error
|
||||||
|
* pointer" (below) and the fact that it exists within the application
|
||||||
|
* rather than within libpng, is essentially identical to libpng's
|
||||||
|
* default error handler. The second point is critical: since both
|
||||||
|
* setjmp() and longjmp() are called from the same code, they are
|
||||||
|
* guaranteed to have compatible notions of how big a jmp_buf is,
|
||||||
|
* regardless of whether _BSD_SOURCE or anything else has (or has not)
|
||||||
|
* been defined. */
|
||||||
|
|
||||||
|
fprintf(stderr, "readpng2 libpng error: %s\n", msg);
|
||||||
|
fflush(stderr);
|
||||||
|
|
||||||
|
mainprog_ptr = png_get_error_ptr(png_ptr);
|
||||||
|
if (mainprog_ptr == NULL) { /* we are completely hosed now */
|
||||||
|
fprintf(stderr,
|
||||||
|
"readpng2 severe error: jmpbuf not recoverable; terminating.\n");
|
||||||
|
fflush(stderr);
|
||||||
|
exit(99);
|
||||||
|
}
|
||||||
|
|
||||||
|
longjmp(mainprog_ptr->jmpbuf, 1);
|
||||||
|
}
|
121
dependencies/libpng/src/contrib/gregbook/readpng2.h
vendored
Normal file
@ -0,0 +1,121 @@
|
|||||||
|
/*---------------------------------------------------------------------------
|
||||||
|
|
||||||
|
rpng2 - progressive-model PNG display program readpng2.h
|
||||||
|
|
||||||
|
---------------------------------------------------------------------------
|
||||||
|
|
||||||
|
Copyright (c) 1998-2008 Greg Roelofs. All rights reserved.
|
||||||
|
|
||||||
|
This software is provided "as is," without warranty of any kind,
|
||||||
|
express or implied. In no event shall the author or contributors
|
||||||
|
be held liable for any damages arising in any way from the use of
|
||||||
|
this software.
|
||||||
|
|
||||||
|
The contents of this file are DUAL-LICENSED. You may modify and/or
|
||||||
|
redistribute this software according to the terms of one of the
|
||||||
|
following two licenses (at your option):
|
||||||
|
|
||||||
|
|
||||||
|
LICENSE 1 ("BSD-like with advertising clause"):
|
||||||
|
|
||||||
|
Permission is granted to anyone to use this software for any purpose,
|
||||||
|
including commercial applications, and to alter it and redistribute
|
||||||
|
it freely, subject to the following restrictions:
|
||||||
|
|
||||||
|
1. Redistributions of source code must retain the above copyright
|
||||||
|
notice, disclaimer, and this list of conditions.
|
||||||
|
2. Redistributions in binary form must reproduce the above copyright
|
||||||
|
notice, disclaimer, and this list of conditions in the documenta-
|
||||||
|
tion and/or other materials provided with the distribution.
|
||||||
|
3. All advertising materials mentioning features or use of this
|
||||||
|
software must display the following acknowledgment:
|
||||||
|
|
||||||
|
This product includes software developed by Greg Roelofs
|
||||||
|
and contributors for the book, "PNG: The Definitive Guide,"
|
||||||
|
published by O'Reilly and Associates.
|
||||||
|
|
||||||
|
|
||||||
|
LICENSE 2 (GNU GPL v2 or later):
|
||||||
|
|
||||||
|
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 2 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, write to the Free Software Foundation,
|
||||||
|
Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
|
|
||||||
|
---------------------------------------------------------------------------*/
|
||||||
|
|
||||||
|
#ifndef TRUE
|
||||||
|
# define TRUE 1
|
||||||
|
# define FALSE 0
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifndef MAX
|
||||||
|
# define MAX(a,b) ((a) > (b)? (a) : (b))
|
||||||
|
# define MIN(a,b) ((a) < (b)? (a) : (b))
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifdef DEBUG
|
||||||
|
# define Trace(x) {fprintf x ; fflush(stderr); fflush(stdout);}
|
||||||
|
#else
|
||||||
|
# define Trace(x) ;
|
||||||
|
#endif
|
||||||
|
|
||||||
|
enum rpng2_states {
|
||||||
|
kPreInit = 0,
|
||||||
|
kWindowInit,
|
||||||
|
kDone
|
||||||
|
};
|
||||||
|
|
||||||
|
typedef unsigned char uch;
|
||||||
|
typedef unsigned short ush;
|
||||||
|
typedef unsigned long ulg;
|
||||||
|
|
||||||
|
typedef struct _mainprog_info {
|
||||||
|
double display_exponent;
|
||||||
|
ulg width;
|
||||||
|
ulg height;
|
||||||
|
void *png_ptr;
|
||||||
|
void *info_ptr;
|
||||||
|
void (*mainprog_init)(void);
|
||||||
|
void (*mainprog_display_row)(ulg row_num);
|
||||||
|
void (*mainprog_finish_display)(void);
|
||||||
|
uch *image_data;
|
||||||
|
uch **row_pointers;
|
||||||
|
jmp_buf jmpbuf;
|
||||||
|
int passes; /* not used */
|
||||||
|
int pass;
|
||||||
|
int rowbytes;
|
||||||
|
int channels;
|
||||||
|
int need_bgcolor;
|
||||||
|
#if (defined(__i386__) || defined(_M_IX86) || defined(__x86_64__))
|
||||||
|
int nommxfilters;
|
||||||
|
int nommxcombine;
|
||||||
|
int nommxinterlace;
|
||||||
|
#endif
|
||||||
|
int state;
|
||||||
|
uch bg_red;
|
||||||
|
uch bg_green;
|
||||||
|
uch bg_blue;
|
||||||
|
} mainprog_info;
|
||||||
|
|
||||||
|
|
||||||
|
/* prototypes for public functions in readpng2.c */
|
||||||
|
|
||||||
|
void readpng2_version_info(void);
|
||||||
|
|
||||||
|
int readpng2_check_sig(uch *sig, int num);
|
||||||
|
|
||||||
|
int readpng2_init(mainprog_info *mainprog_ptr);
|
||||||
|
|
||||||
|
int readpng2_decode_data(mainprog_info *mainprog_ptr, uch *rawbuf, ulg length);
|
||||||
|
|
||||||
|
void readpng2_cleanup(mainprog_info *mainprog_ptr);
|
179
dependencies/libpng/src/contrib/gregbook/readppm.c
vendored
Normal file
@ -0,0 +1,179 @@
|
|||||||
|
/*---------------------------------------------------------------------------
|
||||||
|
|
||||||
|
rpng - simple PNG display program readppm.c
|
||||||
|
|
||||||
|
---------------------------------------------------------------------------
|
||||||
|
|
||||||
|
This is a special-purpose replacement for readpng.c that allows binary
|
||||||
|
PPM files to be used in place of PNG images.
|
||||||
|
|
||||||
|
---------------------------------------------------------------------------
|
||||||
|
|
||||||
|
Copyright (c) 1998-2007 Greg Roelofs. All rights reserved.
|
||||||
|
|
||||||
|
This software is provided "as is," without warranty of any kind,
|
||||||
|
express or implied. In no event shall the author or contributors
|
||||||
|
be held liable for any damages arising in any way from the use of
|
||||||
|
this software.
|
||||||
|
|
||||||
|
The contents of this file are DUAL-LICENSED. You may modify and/or
|
||||||
|
redistribute this software according to the terms of one of the
|
||||||
|
following two licenses (at your option):
|
||||||
|
|
||||||
|
|
||||||
|
LICENSE 1 ("BSD-like with advertising clause"):
|
||||||
|
|
||||||
|
Permission is granted to anyone to use this software for any purpose,
|
||||||
|
including commercial applications, and to alter it and redistribute
|
||||||
|
it freely, subject to the following restrictions:
|
||||||
|
|
||||||
|
1. Redistributions of source code must retain the above copyright
|
||||||
|
notice, disclaimer, and this list of conditions.
|
||||||
|
2. Redistributions in binary form must reproduce the above copyright
|
||||||
|
notice, disclaimer, and this list of conditions in the documenta-
|
||||||
|
tion and/or other materials provided with the distribution.
|
||||||
|
3. All advertising materials mentioning features or use of this
|
||||||
|
software must display the following acknowledgment:
|
||||||
|
|
||||||
|
This product includes software developed by Greg Roelofs
|
||||||
|
and contributors for the book, "PNG: The Definitive Guide,"
|
||||||
|
published by O'Reilly and Associates.
|
||||||
|
|
||||||
|
|
||||||
|
LICENSE 2 (GNU GPL v2 or later):
|
||||||
|
|
||||||
|
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 2 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, write to the Free Software Foundation,
|
||||||
|
Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
|
|
||||||
|
---------------------------------------------------------------------------*/
|
||||||
|
|
||||||
|
#include <stdio.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
|
||||||
|
#include "readpng.h" /* typedefs, common macros, public prototypes */
|
||||||
|
|
||||||
|
|
||||||
|
ulg width, height;
|
||||||
|
int bit_depth, color_type, channels;
|
||||||
|
uch *image_data = NULL;
|
||||||
|
FILE *saved_infile;
|
||||||
|
|
||||||
|
|
||||||
|
void readpng_version_info()
|
||||||
|
{
|
||||||
|
fprintf(stderr, " Compiled without libpng, zlib or PBMPLUS/NetPBM.\n");
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* return value = 0 for success, 1 for bad sig, 2 for bad IHDR, 4 for no mem */
|
||||||
|
|
||||||
|
int readpng_init(FILE *infile, ulg *pWidth, ulg *pHeight)
|
||||||
|
{
|
||||||
|
static uch ppmline[256];
|
||||||
|
int maxval;
|
||||||
|
|
||||||
|
|
||||||
|
saved_infile = infile;
|
||||||
|
|
||||||
|
fgets(ppmline, 256, infile);
|
||||||
|
if (ppmline[0] != 'P' || ppmline[1] != '6') {
|
||||||
|
fprintf(stderr, "ERROR: not a PPM file\n");
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
/* possible color types: P5 = grayscale (0), P6 = RGB (2), P8 = RGBA (6) */
|
||||||
|
if (ppmline[1] == '6') {
|
||||||
|
color_type = 2;
|
||||||
|
channels = 3;
|
||||||
|
} else if (ppmline[1] == '8') {
|
||||||
|
color_type = 6;
|
||||||
|
channels = 4;
|
||||||
|
} else /* if (ppmline[1] == '5') */ {
|
||||||
|
color_type = 0;
|
||||||
|
channels = 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
do {
|
||||||
|
fgets(ppmline, 256, infile);
|
||||||
|
} while (ppmline[0] == '#');
|
||||||
|
sscanf(ppmline, "%lu %lu", &width, &height);
|
||||||
|
|
||||||
|
do {
|
||||||
|
fgets(ppmline, 256, infile);
|
||||||
|
} while (ppmline[0] == '#');
|
||||||
|
sscanf(ppmline, "%d", &maxval);
|
||||||
|
if (maxval != 255) {
|
||||||
|
fprintf(stderr, "ERROR: maxval = %d\n", maxval);
|
||||||
|
return 2;
|
||||||
|
}
|
||||||
|
bit_depth = 8;
|
||||||
|
|
||||||
|
*pWidth = width;
|
||||||
|
*pHeight = height;
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/* returns 0 if succeeds, 1 if fails due to no bKGD chunk, 2 if libpng error;
|
||||||
|
* scales values to 8-bit if necessary */
|
||||||
|
|
||||||
|
int readpng_get_bgcolor(uch *red, uch *green, uch *blue)
|
||||||
|
{
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/* display_exponent == LUT_exponent * CRT_exponent */
|
||||||
|
|
||||||
|
uch *readpng_get_image(double display_exponent, int *pChannels, ulg *pRowbytes)
|
||||||
|
{
|
||||||
|
ulg rowbytes;
|
||||||
|
|
||||||
|
|
||||||
|
/* expand palette images to RGB, low-bit-depth grayscale images to 8 bits,
|
||||||
|
* transparency chunks to full alpha channel; strip 16-bit-per-sample
|
||||||
|
* images to 8 bits per sample; and convert grayscale to RGB[A] */
|
||||||
|
|
||||||
|
/* GRR WARNING: grayscale needs to be expanded and channels reset! */
|
||||||
|
|
||||||
|
*pRowbytes = rowbytes = channels*width;
|
||||||
|
*pChannels = channels;
|
||||||
|
|
||||||
|
if ((image_data = (uch *)malloc(rowbytes*height)) == NULL) {
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
Trace((stderr, "readpng_get_image: rowbytes = %ld, height = %ld\n", rowbytes, height));
|
||||||
|
|
||||||
|
|
||||||
|
/* now we can go ahead and just read the whole image */
|
||||||
|
|
||||||
|
fread(image_data, 1L, rowbytes*height, saved_infile);
|
||||||
|
|
||||||
|
|
||||||
|
return image_data;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
void readpng_cleanup(int free_image_data)
|
||||||
|
{
|
||||||
|
if (free_image_data && image_data) {
|
||||||
|
free(image_data);
|
||||||
|
image_data = NULL;
|
||||||
|
}
|
||||||
|
}
|
684
dependencies/libpng/src/contrib/gregbook/rpng-win.c
vendored
Normal file
@ -0,0 +1,684 @@
|
|||||||
|
/*---------------------------------------------------------------------------
|
||||||
|
|
||||||
|
rpng - simple PNG display program rpng-win.c
|
||||||
|
|
||||||
|
This program decodes and displays PNG images, with gamma correction and
|
||||||
|
optionally with a user-specified background color (in case the image has
|
||||||
|
transparency). It is very nearly the most basic PNG viewer possible.
|
||||||
|
This version is for 32-bit Windows; it may compile under 16-bit Windows
|
||||||
|
with a little tweaking (or maybe not).
|
||||||
|
|
||||||
|
to do:
|
||||||
|
- handle quoted command-line args (especially filenames with spaces)
|
||||||
|
- have minimum window width: oh well
|
||||||
|
- use %.1023s to simplify truncation of title-bar string?
|
||||||
|
|
||||||
|
---------------------------------------------------------------------------
|
||||||
|
|
||||||
|
Changelog:
|
||||||
|
- 1.00: initial public release
|
||||||
|
- 1.01: modified to allow abbreviated options; fixed long/ulong mis-
|
||||||
|
match; switched to png_jmpbuf() macro
|
||||||
|
- 1.02: added extra set of parentheses to png_jmpbuf() macro; fixed
|
||||||
|
command-line parsing bug
|
||||||
|
- 1.10: enabled "message window"/console (thanks to David Geldreich)
|
||||||
|
- 2.00: dual-licensed (added GNU GPL)
|
||||||
|
- 2.01: fixed improper display of usage screen on PNG error(s)
|
||||||
|
|
||||||
|
---------------------------------------------------------------------------
|
||||||
|
|
||||||
|
Copyright (c) 1998-2008 Greg Roelofs. All rights reserved.
|
||||||
|
|
||||||
|
This software is provided "as is," without warranty of any kind,
|
||||||
|
express or implied. In no event shall the author or contributors
|
||||||
|
be held liable for any damages arising in any way from the use of
|
||||||
|
this software.
|
||||||
|
|
||||||
|
The contents of this file are DUAL-LICENSED. You may modify and/or
|
||||||
|
redistribute this software according to the terms of one of the
|
||||||
|
following two licenses (at your option):
|
||||||
|
|
||||||
|
|
||||||
|
LICENSE 1 ("BSD-like with advertising clause"):
|
||||||
|
|
||||||
|
Permission is granted to anyone to use this software for any purpose,
|
||||||
|
including commercial applications, and to alter it and redistribute
|
||||||
|
it freely, subject to the following restrictions:
|
||||||
|
|
||||||
|
1. Redistributions of source code must retain the above copyright
|
||||||
|
notice, disclaimer, and this list of conditions.
|
||||||
|
2. Redistributions in binary form must reproduce the above copyright
|
||||||
|
notice, disclaimer, and this list of conditions in the documenta-
|
||||||
|
tion and/or other materials provided with the distribution.
|
||||||
|
3. All advertising materials mentioning features or use of this
|
||||||
|
software must display the following acknowledgment:
|
||||||
|
|
||||||
|
This product includes software developed by Greg Roelofs
|
||||||
|
and contributors for the book, "PNG: The Definitive Guide,"
|
||||||
|
published by O'Reilly and Associates.
|
||||||
|
|
||||||
|
|
||||||
|
LICENSE 2 (GNU GPL v2 or later):
|
||||||
|
|
||||||
|
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 2 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, write to the Free Software Foundation,
|
||||||
|
Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
|
|
||||||
|
---------------------------------------------------------------------------*/
|
||||||
|
|
||||||
|
#define PROGNAME "rpng-win"
|
||||||
|
#define LONGNAME "Simple PNG Viewer for Windows"
|
||||||
|
#define VERSION "2.01 of 16 March 2008"
|
||||||
|
|
||||||
|
#include <stdio.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
#include <string.h>
|
||||||
|
#include <time.h>
|
||||||
|
#include <windows.h>
|
||||||
|
#include <conio.h> /* only for _getch() */
|
||||||
|
|
||||||
|
/* #define DEBUG : this enables the Trace() macros */
|
||||||
|
|
||||||
|
#include "readpng.h" /* typedefs, common macros, readpng prototypes */
|
||||||
|
|
||||||
|
|
||||||
|
/* could just include png.h, but this macro is the only thing we need
|
||||||
|
* (name and typedefs changed to local versions); note that side effects
|
||||||
|
* only happen with alpha (which could easily be avoided with
|
||||||
|
* "ush acopy = (alpha);") */
|
||||||
|
|
||||||
|
#define alpha_composite(composite, fg, alpha, bg) { \
|
||||||
|
ush temp = ((ush)(fg)*(ush)(alpha) + \
|
||||||
|
(ush)(bg)*(ush)(255 - (ush)(alpha)) + (ush)128); \
|
||||||
|
(composite) = (uch)((temp + (temp >> 8)) >> 8); \
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* local prototypes */
|
||||||
|
static int rpng_win_create_window(HINSTANCE hInst, int showmode);
|
||||||
|
static int rpng_win_display_image(void);
|
||||||
|
static void rpng_win_cleanup(void);
|
||||||
|
LRESULT CALLBACK rpng_win_wndproc(HWND, UINT, WPARAM, LPARAM);
|
||||||
|
|
||||||
|
|
||||||
|
static char titlebar[1024];
|
||||||
|
static char *progname = PROGNAME;
|
||||||
|
static char *appname = LONGNAME;
|
||||||
|
static char *filename;
|
||||||
|
static FILE *infile;
|
||||||
|
|
||||||
|
static char *bgstr;
|
||||||
|
static uch bg_red=0, bg_green=0, bg_blue=0;
|
||||||
|
|
||||||
|
static double display_exponent;
|
||||||
|
|
||||||
|
static ulg image_width, image_height, image_rowbytes;
|
||||||
|
static int image_channels;
|
||||||
|
static uch *image_data;
|
||||||
|
|
||||||
|
/* Windows-specific variables */
|
||||||
|
static ulg wimage_rowbytes;
|
||||||
|
static uch *dib;
|
||||||
|
static uch *wimage_data;
|
||||||
|
static BITMAPINFOHEADER *bmih;
|
||||||
|
|
||||||
|
static HWND global_hwnd;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
int WINAPI WinMain(HINSTANCE hInst, HINSTANCE hPrevInst, PSTR cmd, int showmode)
|
||||||
|
{
|
||||||
|
char *args[1024]; /* arbitrary limit, but should suffice */
|
||||||
|
char *p, *q, **argv = args;
|
||||||
|
int argc = 0;
|
||||||
|
int rc, alen, flen;
|
||||||
|
int error = 0;
|
||||||
|
int have_bg = FALSE;
|
||||||
|
double LUT_exponent; /* just the lookup table */
|
||||||
|
double CRT_exponent = 2.2; /* just the monitor */
|
||||||
|
double default_display_exponent; /* whole display system */
|
||||||
|
MSG msg;
|
||||||
|
|
||||||
|
|
||||||
|
filename = (char *)NULL;
|
||||||
|
|
||||||
|
|
||||||
|
/* First reenable console output, which normally goes to the bit bucket
|
||||||
|
* for windowed apps. Closing the console window will terminate the
|
||||||
|
* app. Thanks to David.Geldreich@realviz.com for supplying the magical
|
||||||
|
* incantation. */
|
||||||
|
|
||||||
|
AllocConsole();
|
||||||
|
freopen("CONOUT$", "a", stderr);
|
||||||
|
freopen("CONOUT$", "a", stdout);
|
||||||
|
|
||||||
|
|
||||||
|
/* Next set the default value for our display-system exponent, i.e.,
|
||||||
|
* the product of the CRT exponent and the exponent corresponding to
|
||||||
|
* the frame-buffer's lookup table (LUT), if any. This is not an
|
||||||
|
* exhaustive list of LUT values (e.g., OpenStep has a lot of weird
|
||||||
|
* ones), but it should cover 99% of the current possibilities. And
|
||||||
|
* yes, these ifdefs are completely wasted in a Windows program... */
|
||||||
|
|
||||||
|
#if defined(NeXT)
|
||||||
|
LUT_exponent = 1.0 / 2.2;
|
||||||
|
/*
|
||||||
|
if (some_next_function_that_returns_gamma(&next_gamma))
|
||||||
|
LUT_exponent = 1.0 / next_gamma;
|
||||||
|
*/
|
||||||
|
#elif defined(sgi)
|
||||||
|
LUT_exponent = 1.0 / 1.7;
|
||||||
|
/* there doesn't seem to be any documented function to get the
|
||||||
|
* "gamma" value, so we do it the hard way */
|
||||||
|
infile = fopen("/etc/config/system.glGammaVal", "r");
|
||||||
|
if (infile) {
|
||||||
|
double sgi_gamma;
|
||||||
|
|
||||||
|
fgets(tmpline, 80, infile);
|
||||||
|
fclose(infile);
|
||||||
|
sgi_gamma = atof(tmpline);
|
||||||
|
if (sgi_gamma > 0.0)
|
||||||
|
LUT_exponent = 1.0 / sgi_gamma;
|
||||||
|
}
|
||||||
|
#elif defined(Macintosh)
|
||||||
|
LUT_exponent = 1.8 / 2.61;
|
||||||
|
/*
|
||||||
|
if (some_mac_function_that_returns_gamma(&mac_gamma))
|
||||||
|
LUT_exponent = mac_gamma / 2.61;
|
||||||
|
*/
|
||||||
|
#else
|
||||||
|
LUT_exponent = 1.0; /* assume no LUT: most PCs */
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* the defaults above give 1.0, 1.3, 1.5 and 2.2, respectively: */
|
||||||
|
default_display_exponent = LUT_exponent * CRT_exponent;
|
||||||
|
|
||||||
|
|
||||||
|
/* If the user has set the SCREEN_GAMMA environment variable as suggested
|
||||||
|
* (somewhat imprecisely) in the libpng documentation, use that; otherwise
|
||||||
|
* use the default value we just calculated. Either way, the user may
|
||||||
|
* override this via a command-line option. */
|
||||||
|
|
||||||
|
if ((p = getenv("SCREEN_GAMMA")) != NULL)
|
||||||
|
display_exponent = atof(p);
|
||||||
|
else
|
||||||
|
display_exponent = default_display_exponent;
|
||||||
|
|
||||||
|
|
||||||
|
/* Windows really hates command lines, so we have to set up our own argv.
|
||||||
|
* Note that we do NOT bother with quoted arguments here, so don't use
|
||||||
|
* filenames with spaces in 'em! */
|
||||||
|
|
||||||
|
argv[argc++] = PROGNAME;
|
||||||
|
p = cmd;
|
||||||
|
for (;;) {
|
||||||
|
if (*p == ' ')
|
||||||
|
while (*++p == ' ')
|
||||||
|
;
|
||||||
|
/* now p points at the first non-space after some spaces */
|
||||||
|
if (*p == '\0')
|
||||||
|
break; /* nothing after the spaces: done */
|
||||||
|
argv[argc++] = q = p;
|
||||||
|
while (*q && *q != ' ')
|
||||||
|
++q;
|
||||||
|
/* now q points at a space or the end of the string */
|
||||||
|
if (*q == '\0')
|
||||||
|
break; /* last argv already terminated; quit */
|
||||||
|
*q = '\0'; /* change space to terminator */
|
||||||
|
p = q + 1;
|
||||||
|
}
|
||||||
|
argv[argc] = NULL; /* terminate the argv array itself */
|
||||||
|
|
||||||
|
|
||||||
|
/* Now parse the command line for options and the PNG filename. */
|
||||||
|
|
||||||
|
while (*++argv && !error) {
|
||||||
|
if (!strncmp(*argv, "-gamma", 2)) {
|
||||||
|
if (!*++argv)
|
||||||
|
++error;
|
||||||
|
else {
|
||||||
|
display_exponent = atof(*argv);
|
||||||
|
if (display_exponent <= 0.0)
|
||||||
|
++error;
|
||||||
|
}
|
||||||
|
} else if (!strncmp(*argv, "-bgcolor", 2)) {
|
||||||
|
if (!*++argv)
|
||||||
|
++error;
|
||||||
|
else {
|
||||||
|
bgstr = *argv;
|
||||||
|
if (strlen(bgstr) != 7 || bgstr[0] != '#')
|
||||||
|
++error;
|
||||||
|
else
|
||||||
|
have_bg = TRUE;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
if (**argv != '-') {
|
||||||
|
filename = *argv;
|
||||||
|
if (argv[1]) /* shouldn't be any more args after filename */
|
||||||
|
++error;
|
||||||
|
} else
|
||||||
|
++error; /* not expecting any other options */
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!filename)
|
||||||
|
++error;
|
||||||
|
|
||||||
|
|
||||||
|
/* print usage screen if any errors up to this point */
|
||||||
|
|
||||||
|
if (error) {
|
||||||
|
int ch;
|
||||||
|
|
||||||
|
fprintf(stderr, "\n%s %s: %s\n\n", PROGNAME, VERSION, appname);
|
||||||
|
readpng_version_info();
|
||||||
|
fprintf(stderr, "\n"
|
||||||
|
"Usage: %s [-gamma exp] [-bgcolor bg] file.png\n"
|
||||||
|
" exp \ttransfer-function exponent (``gamma'') of the display\n"
|
||||||
|
"\t\t system in floating-point format (e.g., ``%.1f''); equal\n"
|
||||||
|
"\t\t to the product of the lookup-table exponent (varies)\n"
|
||||||
|
"\t\t and the CRT exponent (usually 2.2); must be positive\n"
|
||||||
|
" bg \tdesired background color in 7-character hex RGB format\n"
|
||||||
|
"\t\t (e.g., ``#ff7700'' for orange: same as HTML colors);\n"
|
||||||
|
"\t\t used with transparent images\n"
|
||||||
|
"\nPress Q, Esc or mouse button 1 after image is displayed to quit.\n"
|
||||||
|
"Press Q or Esc to quit this usage screen.\n"
|
||||||
|
"\n", PROGNAME, default_display_exponent);
|
||||||
|
do
|
||||||
|
ch = _getch();
|
||||||
|
while (ch != 'q' && ch != 'Q' && ch != 0x1B);
|
||||||
|
exit(1);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
if (!(infile = fopen(filename, "rb"))) {
|
||||||
|
fprintf(stderr, PROGNAME ": can't open PNG file [%s]\n", filename);
|
||||||
|
++error;
|
||||||
|
} else {
|
||||||
|
if ((rc = readpng_init(infile, &image_width, &image_height)) != 0) {
|
||||||
|
switch (rc) {
|
||||||
|
case 1:
|
||||||
|
fprintf(stderr, PROGNAME
|
||||||
|
": [%s] is not a PNG file: incorrect signature\n",
|
||||||
|
filename);
|
||||||
|
break;
|
||||||
|
case 2:
|
||||||
|
fprintf(stderr, PROGNAME
|
||||||
|
": [%s] has bad IHDR (libpng longjmp)\n", filename);
|
||||||
|
break;
|
||||||
|
case 4:
|
||||||
|
fprintf(stderr, PROGNAME ": insufficient memory\n");
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
fprintf(stderr, PROGNAME
|
||||||
|
": unknown readpng_init() error\n");
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
++error;
|
||||||
|
}
|
||||||
|
if (error)
|
||||||
|
fclose(infile);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
if (error) {
|
||||||
|
int ch;
|
||||||
|
|
||||||
|
fprintf(stderr, PROGNAME ": aborting.\n");
|
||||||
|
do
|
||||||
|
ch = _getch();
|
||||||
|
while (ch != 'q' && ch != 'Q' && ch != 0x1B);
|
||||||
|
exit(2);
|
||||||
|
} else {
|
||||||
|
fprintf(stderr, "\n%s %s: %s\n", PROGNAME, VERSION, appname);
|
||||||
|
fprintf(stderr,
|
||||||
|
"\n [console window: closing this window will terminate %s]\n\n",
|
||||||
|
PROGNAME);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* set the title-bar string, but make sure buffer doesn't overflow */
|
||||||
|
|
||||||
|
alen = strlen(appname);
|
||||||
|
flen = strlen(filename);
|
||||||
|
if (alen + flen + 3 > 1023)
|
||||||
|
sprintf(titlebar, "%s: ...%s", appname, filename+(alen+flen+6-1023));
|
||||||
|
else
|
||||||
|
sprintf(titlebar, "%s: %s", appname, filename);
|
||||||
|
|
||||||
|
|
||||||
|
/* if the user didn't specify a background color on the command line,
|
||||||
|
* check for one in the PNG file--if not, the initialized values of 0
|
||||||
|
* (black) will be used */
|
||||||
|
|
||||||
|
if (have_bg) {
|
||||||
|
unsigned r, g, b; /* this approach quiets compiler warnings */
|
||||||
|
|
||||||
|
sscanf(bgstr+1, "%2x%2x%2x", &r, &g, &b);
|
||||||
|
bg_red = (uch)r;
|
||||||
|
bg_green = (uch)g;
|
||||||
|
bg_blue = (uch)b;
|
||||||
|
} else if (readpng_get_bgcolor(&bg_red, &bg_green, &bg_blue) > 1) {
|
||||||
|
readpng_cleanup(TRUE);
|
||||||
|
fprintf(stderr, PROGNAME
|
||||||
|
": libpng error while checking for background color\n");
|
||||||
|
exit(2);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* do the basic Windows initialization stuff, make the window and fill it
|
||||||
|
* with the background color */
|
||||||
|
|
||||||
|
if (rpng_win_create_window(hInst, showmode))
|
||||||
|
exit(2);
|
||||||
|
|
||||||
|
|
||||||
|
/* decode the image, all at once */
|
||||||
|
|
||||||
|
Trace((stderr, "calling readpng_get_image()\n"))
|
||||||
|
image_data = readpng_get_image(display_exponent, &image_channels,
|
||||||
|
&image_rowbytes);
|
||||||
|
Trace((stderr, "done with readpng_get_image()\n"))
|
||||||
|
|
||||||
|
|
||||||
|
/* done with PNG file, so clean up to minimize memory usage (but do NOT
|
||||||
|
* nuke image_data!) */
|
||||||
|
|
||||||
|
readpng_cleanup(FALSE);
|
||||||
|
fclose(infile);
|
||||||
|
|
||||||
|
if (!image_data) {
|
||||||
|
fprintf(stderr, PROGNAME ": unable to decode PNG image\n");
|
||||||
|
exit(3);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* display image (composite with background if requested) */
|
||||||
|
|
||||||
|
Trace((stderr, "calling rpng_win_display_image()\n"))
|
||||||
|
if (rpng_win_display_image()) {
|
||||||
|
free(image_data);
|
||||||
|
exit(4);
|
||||||
|
}
|
||||||
|
Trace((stderr, "done with rpng_win_display_image()\n"))
|
||||||
|
|
||||||
|
|
||||||
|
/* wait for the user to tell us when to quit */
|
||||||
|
|
||||||
|
printf(
|
||||||
|
"Done. Press Q, Esc or mouse button 1 (within image window) to quit.\n");
|
||||||
|
fflush(stdout);
|
||||||
|
|
||||||
|
while (GetMessage(&msg, NULL, 0, 0)) {
|
||||||
|
TranslateMessage(&msg);
|
||||||
|
DispatchMessage(&msg);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* OK, we're done: clean up all image and Windows resources and go away */
|
||||||
|
|
||||||
|
rpng_win_cleanup();
|
||||||
|
|
||||||
|
return msg.wParam;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
static int rpng_win_create_window(HINSTANCE hInst, int showmode)
|
||||||
|
{
|
||||||
|
uch *dest;
|
||||||
|
int extra_width, extra_height;
|
||||||
|
ulg i, j;
|
||||||
|
WNDCLASSEX wndclass;
|
||||||
|
|
||||||
|
|
||||||
|
/*---------------------------------------------------------------------------
|
||||||
|
Allocate memory for the display-specific version of the image (round up
|
||||||
|
to multiple of 4 for Windows DIB).
|
||||||
|
---------------------------------------------------------------------------*/
|
||||||
|
|
||||||
|
wimage_rowbytes = ((3*image_width + 3L) >> 2) << 2;
|
||||||
|
|
||||||
|
if (!(dib = (uch *)malloc(sizeof(BITMAPINFOHEADER) +
|
||||||
|
wimage_rowbytes*image_height)))
|
||||||
|
{
|
||||||
|
return 4; /* fail */
|
||||||
|
}
|
||||||
|
|
||||||
|
/*---------------------------------------------------------------------------
|
||||||
|
Initialize the DIB. Negative height means to use top-down BMP ordering
|
||||||
|
(must be uncompressed, but that's what we want). Bit count of 1, 4 or 8
|
||||||
|
implies a colormap of RGBX quads, but 24-bit BMPs just use B,G,R values
|
||||||
|
directly => wimage_data begins immediately after BMP header.
|
||||||
|
---------------------------------------------------------------------------*/
|
||||||
|
|
||||||
|
memset(dib, 0, sizeof(BITMAPINFOHEADER));
|
||||||
|
bmih = (BITMAPINFOHEADER *)dib;
|
||||||
|
bmih->biSize = sizeof(BITMAPINFOHEADER);
|
||||||
|
bmih->biWidth = image_width;
|
||||||
|
bmih->biHeight = -((long)image_height);
|
||||||
|
bmih->biPlanes = 1;
|
||||||
|
bmih->biBitCount = 24;
|
||||||
|
bmih->biCompression = 0;
|
||||||
|
wimage_data = dib + sizeof(BITMAPINFOHEADER);
|
||||||
|
|
||||||
|
/*---------------------------------------------------------------------------
|
||||||
|
Fill in background color (black by default); data are in BGR order.
|
||||||
|
---------------------------------------------------------------------------*/
|
||||||
|
|
||||||
|
for (j = 0; j < image_height; ++j) {
|
||||||
|
dest = wimage_data + j*wimage_rowbytes;
|
||||||
|
for (i = image_width; i > 0; --i) {
|
||||||
|
*dest++ = bg_blue;
|
||||||
|
*dest++ = bg_green;
|
||||||
|
*dest++ = bg_red;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/*---------------------------------------------------------------------------
|
||||||
|
Set the window parameters.
|
||||||
|
---------------------------------------------------------------------------*/
|
||||||
|
|
||||||
|
memset(&wndclass, 0, sizeof(wndclass));
|
||||||
|
|
||||||
|
wndclass.cbSize = sizeof(wndclass);
|
||||||
|
wndclass.style = CS_HREDRAW | CS_VREDRAW;
|
||||||
|
wndclass.lpfnWndProc = rpng_win_wndproc;
|
||||||
|
wndclass.hInstance = hInst;
|
||||||
|
wndclass.hIcon = LoadIcon(NULL, IDI_APPLICATION);
|
||||||
|
wndclass.hCursor = LoadCursor(NULL, IDC_ARROW);
|
||||||
|
wndclass.hbrBackground = (HBRUSH)GetStockObject(DKGRAY_BRUSH);
|
||||||
|
wndclass.lpszMenuName = NULL;
|
||||||
|
wndclass.lpszClassName = progname;
|
||||||
|
wndclass.hIconSm = LoadIcon(NULL, IDI_APPLICATION);
|
||||||
|
|
||||||
|
RegisterClassEx(&wndclass);
|
||||||
|
|
||||||
|
/*---------------------------------------------------------------------------
|
||||||
|
Finally, create the window.
|
||||||
|
---------------------------------------------------------------------------*/
|
||||||
|
|
||||||
|
extra_width = 2*(GetSystemMetrics(SM_CXBORDER) +
|
||||||
|
GetSystemMetrics(SM_CXDLGFRAME));
|
||||||
|
extra_height = 2*(GetSystemMetrics(SM_CYBORDER) +
|
||||||
|
GetSystemMetrics(SM_CYDLGFRAME)) +
|
||||||
|
GetSystemMetrics(SM_CYCAPTION);
|
||||||
|
|
||||||
|
global_hwnd = CreateWindow(progname, titlebar, WS_OVERLAPPEDWINDOW,
|
||||||
|
CW_USEDEFAULT, CW_USEDEFAULT, image_width+extra_width,
|
||||||
|
image_height+extra_height, NULL, NULL, hInst, NULL);
|
||||||
|
|
||||||
|
ShowWindow(global_hwnd, showmode);
|
||||||
|
UpdateWindow(global_hwnd);
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
|
||||||
|
} /* end function rpng_win_create_window() */
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
static int rpng_win_display_image()
|
||||||
|
{
|
||||||
|
uch *src, *dest;
|
||||||
|
uch r, g, b, a;
|
||||||
|
ulg i, row, lastrow;
|
||||||
|
RECT rect;
|
||||||
|
|
||||||
|
|
||||||
|
Trace((stderr, "beginning display loop (image_channels == %d)\n",
|
||||||
|
image_channels))
|
||||||
|
Trace((stderr, "(width = %ld, rowbytes = %ld, wimage_rowbytes = %d)\n",
|
||||||
|
image_width, image_rowbytes, wimage_rowbytes))
|
||||||
|
|
||||||
|
|
||||||
|
/*---------------------------------------------------------------------------
|
||||||
|
Blast image data to buffer. This whole routine takes place before the
|
||||||
|
message loop begins, so there's no real point in any pseudo-progressive
|
||||||
|
display...
|
||||||
|
---------------------------------------------------------------------------*/
|
||||||
|
|
||||||
|
for (lastrow = row = 0; row < image_height; ++row) {
|
||||||
|
src = image_data + row*image_rowbytes;
|
||||||
|
dest = wimage_data + row*wimage_rowbytes;
|
||||||
|
if (image_channels == 3) {
|
||||||
|
for (i = image_width; i > 0; --i) {
|
||||||
|
r = *src++;
|
||||||
|
g = *src++;
|
||||||
|
b = *src++;
|
||||||
|
*dest++ = b;
|
||||||
|
*dest++ = g; /* note reverse order */
|
||||||
|
*dest++ = r;
|
||||||
|
}
|
||||||
|
} else /* if (image_channels == 4) */ {
|
||||||
|
for (i = image_width; i > 0; --i) {
|
||||||
|
r = *src++;
|
||||||
|
g = *src++;
|
||||||
|
b = *src++;
|
||||||
|
a = *src++;
|
||||||
|
if (a == 255) {
|
||||||
|
*dest++ = b;
|
||||||
|
*dest++ = g;
|
||||||
|
*dest++ = r;
|
||||||
|
} else if (a == 0) {
|
||||||
|
*dest++ = bg_blue;
|
||||||
|
*dest++ = bg_green;
|
||||||
|
*dest++ = bg_red;
|
||||||
|
} else {
|
||||||
|
/* this macro (copied from png.h) composites the
|
||||||
|
* foreground and background values and puts the
|
||||||
|
* result into the first argument; there are no
|
||||||
|
* side effects with the first argument */
|
||||||
|
alpha_composite(*dest++, b, a, bg_blue);
|
||||||
|
alpha_composite(*dest++, g, a, bg_green);
|
||||||
|
alpha_composite(*dest++, r, a, bg_red);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
/* display after every 16 lines */
|
||||||
|
if (((row+1) & 0xf) == 0) {
|
||||||
|
rect.left = 0L;
|
||||||
|
rect.top = (LONG)lastrow;
|
||||||
|
rect.right = (LONG)image_width; /* possibly off by one? */
|
||||||
|
rect.bottom = (LONG)lastrow + 16L; /* possibly off by one? */
|
||||||
|
InvalidateRect(global_hwnd, &rect, FALSE);
|
||||||
|
UpdateWindow(global_hwnd); /* similar to XFlush() */
|
||||||
|
lastrow = row + 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Trace((stderr, "calling final image-flush routine\n"))
|
||||||
|
if (lastrow < image_height) {
|
||||||
|
rect.left = 0L;
|
||||||
|
rect.top = (LONG)lastrow;
|
||||||
|
rect.right = (LONG)image_width; /* possibly off by one? */
|
||||||
|
rect.bottom = (LONG)image_height; /* possibly off by one? */
|
||||||
|
InvalidateRect(global_hwnd, &rect, FALSE);
|
||||||
|
UpdateWindow(global_hwnd); /* similar to XFlush() */
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
last param determines whether or not background is wiped before paint
|
||||||
|
InvalidateRect(global_hwnd, NULL, TRUE);
|
||||||
|
UpdateWindow(global_hwnd);
|
||||||
|
*/
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
static void rpng_win_cleanup()
|
||||||
|
{
|
||||||
|
if (image_data) {
|
||||||
|
free(image_data);
|
||||||
|
image_data = NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (dib) {
|
||||||
|
free(dib);
|
||||||
|
dib = NULL;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
LRESULT CALLBACK rpng_win_wndproc(HWND hwnd, UINT iMsg, WPARAM wP, LPARAM lP)
|
||||||
|
{
|
||||||
|
HDC hdc;
|
||||||
|
PAINTSTRUCT ps;
|
||||||
|
int rc;
|
||||||
|
|
||||||
|
switch (iMsg) {
|
||||||
|
case WM_CREATE:
|
||||||
|
/* one-time processing here, if any */
|
||||||
|
return 0;
|
||||||
|
|
||||||
|
case WM_PAINT:
|
||||||
|
hdc = BeginPaint(hwnd, &ps);
|
||||||
|
/* dest */
|
||||||
|
rc = StretchDIBits(hdc, 0, 0, image_width, image_height,
|
||||||
|
/* source */
|
||||||
|
0, 0, image_width, image_height,
|
||||||
|
wimage_data, (BITMAPINFO *)bmih,
|
||||||
|
/* iUsage: no clue */
|
||||||
|
0, SRCCOPY);
|
||||||
|
EndPaint(hwnd, &ps);
|
||||||
|
return 0;
|
||||||
|
|
||||||
|
/* wait for the user to tell us when to quit */
|
||||||
|
case WM_CHAR:
|
||||||
|
switch (wP) { /* only need one, so ignore repeat count */
|
||||||
|
case 'q':
|
||||||
|
case 'Q':
|
||||||
|
case 0x1B: /* Esc key */
|
||||||
|
PostQuitMessage(0);
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
|
|
||||||
|
case WM_LBUTTONDOWN: /* another way of quitting */
|
||||||
|
case WM_DESTROY:
|
||||||
|
PostQuitMessage(0);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
return DefWindowProc(hwnd, iMsg, wP, lP);
|
||||||
|
}
|
904
dependencies/libpng/src/contrib/gregbook/rpng-x.c
vendored
Normal file
@ -0,0 +1,904 @@
|
|||||||
|
/*---------------------------------------------------------------------------
|
||||||
|
|
||||||
|
rpng - simple PNG display program rpng-x.c
|
||||||
|
|
||||||
|
This program decodes and displays PNG images, with gamma correction and
|
||||||
|
optionally with a user-specified background color (in case the image has
|
||||||
|
transparency). It is very nearly the most basic PNG viewer possible.
|
||||||
|
This version is for the X Window System (tested by author under Unix and
|
||||||
|
by Martin Zinser under OpenVMS; may work under OS/2 with some tweaking).
|
||||||
|
|
||||||
|
to do:
|
||||||
|
- 8-bit (colormapped) X support
|
||||||
|
- use %.1023s to simplify truncation of title-bar string?
|
||||||
|
|
||||||
|
---------------------------------------------------------------------------
|
||||||
|
|
||||||
|
Changelog:
|
||||||
|
- 1.01: initial public release
|
||||||
|
- 1.02: modified to allow abbreviated options; fixed long/ulong mis-
|
||||||
|
match; switched to png_jmpbuf() macro
|
||||||
|
- 1.10: added support for non-default visuals; fixed X pixel-conversion
|
||||||
|
- 1.11: added extra set of parentheses to png_jmpbuf() macro; fixed
|
||||||
|
command-line parsing bug
|
||||||
|
- 1.12: fixed some small X memory leaks (thanks to François Petitjean)
|
||||||
|
- 1.13: fixed XFreeGC() crash bug (thanks to Patrick Welche)
|
||||||
|
- 1.14: added support for X resources (thanks to Gerhard Niklasch)
|
||||||
|
- 2.00: dual-licensed (added GNU GPL)
|
||||||
|
- 2.01: fixed improper display of usage screen on PNG error(s)
|
||||||
|
|
||||||
|
---------------------------------------------------------------------------
|
||||||
|
|
||||||
|
Copyright (c) 1998-2008 Greg Roelofs. All rights reserved.
|
||||||
|
|
||||||
|
This software is provided "as is," without warranty of any kind,
|
||||||
|
express or implied. In no event shall the author or contributors
|
||||||
|
be held liable for any damages arising in any way from the use of
|
||||||
|
this software.
|
||||||
|
|
||||||
|
The contents of this file are DUAL-LICENSED. You may modify and/or
|
||||||
|
redistribute this software according to the terms of one of the
|
||||||
|
following two licenses (at your option):
|
||||||
|
|
||||||
|
|
||||||
|
LICENSE 1 ("BSD-like with advertising clause"):
|
||||||
|
|
||||||
|
Permission is granted to anyone to use this software for any purpose,
|
||||||
|
including commercial applications, and to alter it and redistribute
|
||||||
|
it freely, subject to the following restrictions:
|
||||||
|
|
||||||
|
1. Redistributions of source code must retain the above copyright
|
||||||
|
notice, disclaimer, and this list of conditions.
|
||||||
|
2. Redistributions in binary form must reproduce the above copyright
|
||||||
|
notice, disclaimer, and this list of conditions in the documenta-
|
||||||
|
tion and/or other materials provided with the distribution.
|
||||||
|
3. All advertising materials mentioning features or use of this
|
||||||
|
software must display the following acknowledgment:
|
||||||
|
|
||||||
|
This product includes software developed by Greg Roelofs
|
||||||
|
and contributors for the book, "PNG: The Definitive Guide,"
|
||||||
|
published by O'Reilly and Associates.
|
||||||
|
|
||||||
|
|
||||||
|
LICENSE 2 (GNU GPL v2 or later):
|
||||||
|
|
||||||
|
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 2 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, write to the Free Software Foundation,
|
||||||
|
Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
|
|
||||||
|
---------------------------------------------------------------------------*/
|
||||||
|
|
||||||
|
#define PROGNAME "rpng-x"
|
||||||
|
#define LONGNAME "Simple PNG Viewer for X"
|
||||||
|
#define VERSION "2.01 of 16 March 2008"
|
||||||
|
#define RESNAME "rpng" /* our X resource application name */
|
||||||
|
#define RESCLASS "Rpng" /* our X resource class name */
|
||||||
|
|
||||||
|
#include <stdio.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
#include <string.h>
|
||||||
|
#include <time.h>
|
||||||
|
#include <X11/Xlib.h>
|
||||||
|
#include <X11/Xutil.h>
|
||||||
|
#include <X11/Xos.h>
|
||||||
|
#include <X11/keysym.h>
|
||||||
|
|
||||||
|
/* #define DEBUG : this enables the Trace() macros */
|
||||||
|
|
||||||
|
#include "readpng.h" /* typedefs, common macros, readpng prototypes */
|
||||||
|
|
||||||
|
|
||||||
|
/* could just include png.h, but this macro is the only thing we need
|
||||||
|
* (name and typedefs changed to local versions); note that side effects
|
||||||
|
* only happen with alpha (which could easily be avoided with
|
||||||
|
* "ush acopy = (alpha);") */
|
||||||
|
|
||||||
|
#define alpha_composite(composite, fg, alpha, bg) { \
|
||||||
|
ush temp = ((ush)(fg)*(ush)(alpha) + \
|
||||||
|
(ush)(bg)*(ush)(255 - (ush)(alpha)) + (ush)128); \
|
||||||
|
(composite) = (uch)((temp + (temp >> 8)) >> 8); \
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* local prototypes */
|
||||||
|
static int rpng_x_create_window(void);
|
||||||
|
static int rpng_x_display_image(void);
|
||||||
|
static void rpng_x_cleanup(void);
|
||||||
|
static int rpng_x_msb(ulg u32val);
|
||||||
|
|
||||||
|
|
||||||
|
static char titlebar[1024], *window_name = titlebar;
|
||||||
|
static char *appname = LONGNAME;
|
||||||
|
static char *icon_name = PROGNAME;
|
||||||
|
static char *res_name = RESNAME;
|
||||||
|
static char *res_class = RESCLASS;
|
||||||
|
static char *filename;
|
||||||
|
static FILE *infile;
|
||||||
|
|
||||||
|
static char *bgstr;
|
||||||
|
static uch bg_red=0, bg_green=0, bg_blue=0;
|
||||||
|
|
||||||
|
static double display_exponent;
|
||||||
|
|
||||||
|
static ulg image_width, image_height, image_rowbytes;
|
||||||
|
static int image_channels;
|
||||||
|
static uch *image_data;
|
||||||
|
|
||||||
|
/* X-specific variables */
|
||||||
|
static char *displayname;
|
||||||
|
static XImage *ximage;
|
||||||
|
static Display *display;
|
||||||
|
static int depth;
|
||||||
|
static Visual *visual;
|
||||||
|
static XVisualInfo *visual_list;
|
||||||
|
static int RShift, GShift, BShift;
|
||||||
|
static ulg RMask, GMask, BMask;
|
||||||
|
static Window window;
|
||||||
|
static GC gc;
|
||||||
|
static Colormap colormap;
|
||||||
|
|
||||||
|
static int have_nondefault_visual = FALSE;
|
||||||
|
static int have_colormap = FALSE;
|
||||||
|
static int have_window = FALSE;
|
||||||
|
static int have_gc = FALSE;
|
||||||
|
/*
|
||||||
|
ulg numcolors=0, pixels[256];
|
||||||
|
ush reds[256], greens[256], blues[256];
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
int main(int argc, char **argv)
|
||||||
|
{
|
||||||
|
#ifdef sgi
|
||||||
|
char tmpline[80];
|
||||||
|
#endif
|
||||||
|
char *p;
|
||||||
|
int rc, alen, flen;
|
||||||
|
int error = 0;
|
||||||
|
int have_bg = FALSE;
|
||||||
|
double LUT_exponent; /* just the lookup table */
|
||||||
|
double CRT_exponent = 2.2; /* just the monitor */
|
||||||
|
double default_display_exponent; /* whole display system */
|
||||||
|
XEvent e;
|
||||||
|
KeySym k;
|
||||||
|
|
||||||
|
|
||||||
|
displayname = (char *)NULL;
|
||||||
|
filename = (char *)NULL;
|
||||||
|
|
||||||
|
|
||||||
|
/* First set the default value for our display-system exponent, i.e.,
|
||||||
|
* the product of the CRT exponent and the exponent corresponding to
|
||||||
|
* the frame-buffer's lookup table (LUT), if any. This is not an
|
||||||
|
* exhaustive list of LUT values (e.g., OpenStep has a lot of weird
|
||||||
|
* ones), but it should cover 99% of the current possibilities. */
|
||||||
|
|
||||||
|
#if defined(NeXT)
|
||||||
|
LUT_exponent = 1.0 / 2.2;
|
||||||
|
/*
|
||||||
|
if (some_next_function_that_returns_gamma(&next_gamma))
|
||||||
|
LUT_exponent = 1.0 / next_gamma;
|
||||||
|
*/
|
||||||
|
#elif defined(sgi)
|
||||||
|
LUT_exponent = 1.0 / 1.7;
|
||||||
|
/* there doesn't seem to be any documented function to get the
|
||||||
|
* "gamma" value, so we do it the hard way */
|
||||||
|
infile = fopen("/etc/config/system.glGammaVal", "r");
|
||||||
|
if (infile) {
|
||||||
|
double sgi_gamma;
|
||||||
|
|
||||||
|
fgets(tmpline, 80, infile);
|
||||||
|
fclose(infile);
|
||||||
|
sgi_gamma = atof(tmpline);
|
||||||
|
if (sgi_gamma > 0.0)
|
||||||
|
LUT_exponent = 1.0 / sgi_gamma;
|
||||||
|
}
|
||||||
|
#elif defined(Macintosh)
|
||||||
|
LUT_exponent = 1.8 / 2.61;
|
||||||
|
/*
|
||||||
|
if (some_mac_function_that_returns_gamma(&mac_gamma))
|
||||||
|
LUT_exponent = mac_gamma / 2.61;
|
||||||
|
*/
|
||||||
|
#else
|
||||||
|
LUT_exponent = 1.0; /* assume no LUT: most PCs */
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* the defaults above give 1.0, 1.3, 1.5 and 2.2, respectively: */
|
||||||
|
default_display_exponent = LUT_exponent * CRT_exponent;
|
||||||
|
|
||||||
|
|
||||||
|
/* If the user has set the SCREEN_GAMMA environment variable as suggested
|
||||||
|
* (somewhat imprecisely) in the libpng documentation, use that; otherwise
|
||||||
|
* use the default value we just calculated. Either way, the user may
|
||||||
|
* override this via a command-line option. */
|
||||||
|
|
||||||
|
if ((p = getenv("SCREEN_GAMMA")) != NULL)
|
||||||
|
display_exponent = atof(p);
|
||||||
|
else
|
||||||
|
display_exponent = default_display_exponent;
|
||||||
|
|
||||||
|
|
||||||
|
/* Now parse the command line for options and the PNG filename. */
|
||||||
|
|
||||||
|
while (*++argv && !error) {
|
||||||
|
if (!strncmp(*argv, "-display", 2)) {
|
||||||
|
if (!*++argv)
|
||||||
|
++error;
|
||||||
|
else
|
||||||
|
displayname = *argv;
|
||||||
|
} else if (!strncmp(*argv, "-gamma", 2)) {
|
||||||
|
if (!*++argv)
|
||||||
|
++error;
|
||||||
|
else {
|
||||||
|
display_exponent = atof(*argv);
|
||||||
|
if (display_exponent <= 0.0)
|
||||||
|
++error;
|
||||||
|
}
|
||||||
|
} else if (!strncmp(*argv, "-bgcolor", 2)) {
|
||||||
|
if (!*++argv)
|
||||||
|
++error;
|
||||||
|
else {
|
||||||
|
bgstr = *argv;
|
||||||
|
if (strlen(bgstr) != 7 || bgstr[0] != '#')
|
||||||
|
++error;
|
||||||
|
else
|
||||||
|
have_bg = TRUE;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
if (**argv != '-') {
|
||||||
|
filename = *argv;
|
||||||
|
if (argv[1]) /* shouldn't be any more args after filename */
|
||||||
|
++error;
|
||||||
|
} else
|
||||||
|
++error; /* not expecting any other options */
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!filename)
|
||||||
|
++error;
|
||||||
|
|
||||||
|
|
||||||
|
/* print usage screen if any errors up to this point */
|
||||||
|
|
||||||
|
if (error) {
|
||||||
|
fprintf(stderr, "\n%s %s: %s\n", PROGNAME, VERSION, appname);
|
||||||
|
readpng_version_info();
|
||||||
|
fprintf(stderr, "\n"
|
||||||
|
"Usage: %s [-display xdpy] [-gamma exp] [-bgcolor bg] file.png\n"
|
||||||
|
" xdpy\tname of the target X display (e.g., ``hostname:0'')\n"
|
||||||
|
" exp \ttransfer-function exponent (``gamma'') of the display\n"
|
||||||
|
"\t\t system in floating-point format (e.g., ``%.1f''); equal\n"
|
||||||
|
"\t\t to the product of the lookup-table exponent (varies)\n"
|
||||||
|
"\t\t and the CRT exponent (usually 2.2); must be positive\n"
|
||||||
|
" bg \tdesired background color in 7-character hex RGB format\n"
|
||||||
|
"\t\t (e.g., ``#ff7700'' for orange: same as HTML colors);\n"
|
||||||
|
"\t\t used with transparent images\n"
|
||||||
|
"\nPress Q, Esc or mouse button 1 (within image window, after image\n"
|
||||||
|
"is displayed) to quit.\n"
|
||||||
|
"\n", PROGNAME, default_display_exponent);
|
||||||
|
exit(1);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
if (!(infile = fopen(filename, "rb"))) {
|
||||||
|
fprintf(stderr, PROGNAME ": can't open PNG file [%s]\n", filename);
|
||||||
|
++error;
|
||||||
|
} else {
|
||||||
|
if ((rc = readpng_init(infile, &image_width, &image_height)) != 0) {
|
||||||
|
switch (rc) {
|
||||||
|
case 1:
|
||||||
|
fprintf(stderr, PROGNAME
|
||||||
|
": [%s] is not a PNG file: incorrect signature\n",
|
||||||
|
filename);
|
||||||
|
break;
|
||||||
|
case 2:
|
||||||
|
fprintf(stderr, PROGNAME
|
||||||
|
": [%s] has bad IHDR (libpng longjmp)\n", filename);
|
||||||
|
break;
|
||||||
|
case 4:
|
||||||
|
fprintf(stderr, PROGNAME ": insufficient memory\n");
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
fprintf(stderr, PROGNAME
|
||||||
|
": unknown readpng_init() error\n");
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
++error;
|
||||||
|
} else {
|
||||||
|
display = XOpenDisplay(displayname);
|
||||||
|
if (!display) {
|
||||||
|
readpng_cleanup(TRUE);
|
||||||
|
fprintf(stderr, PROGNAME ": can't open X display [%s]\n",
|
||||||
|
displayname? displayname : "default");
|
||||||
|
++error;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (error)
|
||||||
|
fclose(infile);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
if (error) {
|
||||||
|
fprintf(stderr, PROGNAME ": aborting.\n");
|
||||||
|
exit(2);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* set the title-bar string, but make sure buffer doesn't overflow */
|
||||||
|
|
||||||
|
alen = strlen(appname);
|
||||||
|
flen = strlen(filename);
|
||||||
|
if (alen + flen + 3 > 1023)
|
||||||
|
sprintf(titlebar, "%s: ...%s", appname, filename+(alen+flen+6-1023));
|
||||||
|
else
|
||||||
|
sprintf(titlebar, "%s: %s", appname, filename);
|
||||||
|
|
||||||
|
|
||||||
|
/* if the user didn't specify a background color on the command line,
|
||||||
|
* check for one in the PNG file--if not, the initialized values of 0
|
||||||
|
* (black) will be used */
|
||||||
|
|
||||||
|
if (have_bg) {
|
||||||
|
unsigned r, g, b; /* this approach quiets compiler warnings */
|
||||||
|
|
||||||
|
sscanf(bgstr+1, "%2x%2x%2x", &r, &g, &b);
|
||||||
|
bg_red = (uch)r;
|
||||||
|
bg_green = (uch)g;
|
||||||
|
bg_blue = (uch)b;
|
||||||
|
} else if (readpng_get_bgcolor(&bg_red, &bg_green, &bg_blue) > 1) {
|
||||||
|
readpng_cleanup(TRUE);
|
||||||
|
fprintf(stderr, PROGNAME
|
||||||
|
": libpng error while checking for background color\n");
|
||||||
|
exit(2);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* do the basic X initialization stuff, make the window and fill it
|
||||||
|
* with the background color */
|
||||||
|
|
||||||
|
if (rpng_x_create_window())
|
||||||
|
exit(2);
|
||||||
|
|
||||||
|
|
||||||
|
/* decode the image, all at once */
|
||||||
|
|
||||||
|
Trace((stderr, "calling readpng_get_image()\n"))
|
||||||
|
image_data = readpng_get_image(display_exponent, &image_channels,
|
||||||
|
&image_rowbytes);
|
||||||
|
Trace((stderr, "done with readpng_get_image()\n"))
|
||||||
|
|
||||||
|
|
||||||
|
/* done with PNG file, so clean up to minimize memory usage (but do NOT
|
||||||
|
* nuke image_data!) */
|
||||||
|
|
||||||
|
readpng_cleanup(FALSE);
|
||||||
|
fclose(infile);
|
||||||
|
|
||||||
|
if (!image_data) {
|
||||||
|
fprintf(stderr, PROGNAME ": unable to decode PNG image\n");
|
||||||
|
exit(3);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* display image (composite with background if requested) */
|
||||||
|
|
||||||
|
Trace((stderr, "calling rpng_x_display_image()\n"))
|
||||||
|
if (rpng_x_display_image()) {
|
||||||
|
free(image_data);
|
||||||
|
exit(4);
|
||||||
|
}
|
||||||
|
Trace((stderr, "done with rpng_x_display_image()\n"))
|
||||||
|
|
||||||
|
|
||||||
|
/* wait for the user to tell us when to quit */
|
||||||
|
|
||||||
|
printf(
|
||||||
|
"Done. Press Q, Esc or mouse button 1 (within image window) to quit.\n");
|
||||||
|
fflush(stdout);
|
||||||
|
|
||||||
|
do
|
||||||
|
XNextEvent(display, &e);
|
||||||
|
while (!(e.type == ButtonPress && e.xbutton.button == Button1) &&
|
||||||
|
!(e.type == KeyPress && /* v--- or 1 for shifted keys */
|
||||||
|
((k = XLookupKeysym(&e.xkey, 0)) == XK_q || k == XK_Escape) ));
|
||||||
|
|
||||||
|
|
||||||
|
/* OK, we're done: clean up all image and X resources and go away */
|
||||||
|
|
||||||
|
rpng_x_cleanup();
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
static int rpng_x_create_window(void)
|
||||||
|
{
|
||||||
|
uch *xdata;
|
||||||
|
int need_colormap = FALSE;
|
||||||
|
int screen, pad;
|
||||||
|
ulg bg_pixel = 0L;
|
||||||
|
ulg attrmask;
|
||||||
|
Window root;
|
||||||
|
XEvent e;
|
||||||
|
XGCValues gcvalues;
|
||||||
|
XSetWindowAttributes attr;
|
||||||
|
XTextProperty windowName, *pWindowName = &windowName;
|
||||||
|
XTextProperty iconName, *pIconName = &iconName;
|
||||||
|
XVisualInfo visual_info;
|
||||||
|
XSizeHints *size_hints;
|
||||||
|
XWMHints *wm_hints;
|
||||||
|
XClassHint *class_hints;
|
||||||
|
|
||||||
|
|
||||||
|
screen = DefaultScreen(display);
|
||||||
|
depth = DisplayPlanes(display, screen);
|
||||||
|
root = RootWindow(display, screen);
|
||||||
|
|
||||||
|
#ifdef DEBUG
|
||||||
|
XSynchronize(display, True);
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if 0
|
||||||
|
/* GRR: add 8-bit support */
|
||||||
|
if (/* depth != 8 && */ depth != 16 && depth != 24 && depth != 32) {
|
||||||
|
fprintf(stderr,
|
||||||
|
"screen depth %d not supported (only 16-, 24- or 32-bit TrueColor)\n",
|
||||||
|
depth);
|
||||||
|
return 2;
|
||||||
|
}
|
||||||
|
|
||||||
|
XMatchVisualInfo(display, screen, depth,
|
||||||
|
(depth == 8)? PseudoColor : TrueColor, &visual_info);
|
||||||
|
visual = visual_info.visual;
|
||||||
|
#else
|
||||||
|
if (depth != 16 && depth != 24 && depth != 32) {
|
||||||
|
int visuals_matched = 0;
|
||||||
|
|
||||||
|
Trace((stderr, "default depth is %d: checking other visuals\n",
|
||||||
|
depth))
|
||||||
|
|
||||||
|
/* 24-bit first */
|
||||||
|
visual_info.screen = screen;
|
||||||
|
visual_info.depth = 24;
|
||||||
|
visual_list = XGetVisualInfo(display,
|
||||||
|
VisualScreenMask | VisualDepthMask, &visual_info, &visuals_matched);
|
||||||
|
if (visuals_matched == 0) {
|
||||||
|
/* GRR: add 15-, 16- and 32-bit TrueColor visuals (also DirectColor?) */
|
||||||
|
fprintf(stderr, "default screen depth %d not supported, and no"
|
||||||
|
" 24-bit visuals found\n", depth);
|
||||||
|
return 2;
|
||||||
|
}
|
||||||
|
Trace((stderr, "XGetVisualInfo() returned %d 24-bit visuals\n",
|
||||||
|
visuals_matched))
|
||||||
|
visual = visual_list[0].visual;
|
||||||
|
depth = visual_list[0].depth;
|
||||||
|
/*
|
||||||
|
colormap_size = visual_list[0].colormap_size;
|
||||||
|
visual_class = visual->class;
|
||||||
|
visualID = XVisualIDFromVisual(visual);
|
||||||
|
*/
|
||||||
|
have_nondefault_visual = TRUE;
|
||||||
|
need_colormap = TRUE;
|
||||||
|
} else {
|
||||||
|
XMatchVisualInfo(display, screen, depth, TrueColor, &visual_info);
|
||||||
|
visual = visual_info.visual;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
RMask = visual->red_mask;
|
||||||
|
GMask = visual->green_mask;
|
||||||
|
BMask = visual->blue_mask;
|
||||||
|
|
||||||
|
/* GRR: add/check 8-bit support */
|
||||||
|
if (depth == 8 || need_colormap) {
|
||||||
|
colormap = XCreateColormap(display, root, visual, AllocNone);
|
||||||
|
if (!colormap) {
|
||||||
|
fprintf(stderr, "XCreateColormap() failed\n");
|
||||||
|
return 2;
|
||||||
|
}
|
||||||
|
have_colormap = TRUE;
|
||||||
|
}
|
||||||
|
if (depth == 15 || depth == 16) {
|
||||||
|
RShift = 15 - rpng_x_msb(RMask); /* these are right-shifts */
|
||||||
|
GShift = 15 - rpng_x_msb(GMask);
|
||||||
|
BShift = 15 - rpng_x_msb(BMask);
|
||||||
|
} else if (depth > 16) {
|
||||||
|
#define NO_24BIT_MASKS
|
||||||
|
#ifdef NO_24BIT_MASKS
|
||||||
|
RShift = rpng_x_msb(RMask) - 7; /* these are left-shifts */
|
||||||
|
GShift = rpng_x_msb(GMask) - 7;
|
||||||
|
BShift = rpng_x_msb(BMask) - 7;
|
||||||
|
#else
|
||||||
|
RShift = 7 - rpng_x_msb(RMask); /* these are right-shifts, too */
|
||||||
|
GShift = 7 - rpng_x_msb(GMask);
|
||||||
|
BShift = 7 - rpng_x_msb(BMask);
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
if (depth >= 15 && (RShift < 0 || GShift < 0 || BShift < 0)) {
|
||||||
|
fprintf(stderr, "rpng internal logic error: negative X shift(s)!\n");
|
||||||
|
return 2;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*---------------------------------------------------------------------------
|
||||||
|
Finally, create the window.
|
||||||
|
---------------------------------------------------------------------------*/
|
||||||
|
|
||||||
|
attr.backing_store = Always;
|
||||||
|
attr.event_mask = ExposureMask | KeyPressMask | ButtonPressMask;
|
||||||
|
attrmask = CWBackingStore | CWEventMask;
|
||||||
|
if (have_nondefault_visual) {
|
||||||
|
attr.colormap = colormap;
|
||||||
|
attr.background_pixel = 0;
|
||||||
|
attr.border_pixel = 1;
|
||||||
|
attrmask |= CWColormap | CWBackPixel | CWBorderPixel;
|
||||||
|
}
|
||||||
|
|
||||||
|
window = XCreateWindow(display, root, 0, 0, image_width, image_height, 0,
|
||||||
|
depth, InputOutput, visual, attrmask, &attr);
|
||||||
|
|
||||||
|
if (window == None) {
|
||||||
|
fprintf(stderr, "XCreateWindow() failed\n");
|
||||||
|
return 2;
|
||||||
|
} else
|
||||||
|
have_window = TRUE;
|
||||||
|
|
||||||
|
if (depth == 8)
|
||||||
|
XSetWindowColormap(display, window, colormap);
|
||||||
|
|
||||||
|
if (!XStringListToTextProperty(&window_name, 1, pWindowName))
|
||||||
|
pWindowName = NULL;
|
||||||
|
if (!XStringListToTextProperty(&icon_name, 1, pIconName))
|
||||||
|
pIconName = NULL;
|
||||||
|
|
||||||
|
/* OK if any hints allocation fails; XSetWMProperties() allows NULLs */
|
||||||
|
|
||||||
|
if ((size_hints = XAllocSizeHints()) != NULL) {
|
||||||
|
/* window will not be resizable */
|
||||||
|
size_hints->flags = PMinSize | PMaxSize;
|
||||||
|
size_hints->min_width = size_hints->max_width = (int)image_width;
|
||||||
|
size_hints->min_height = size_hints->max_height = (int)image_height;
|
||||||
|
}
|
||||||
|
|
||||||
|
if ((wm_hints = XAllocWMHints()) != NULL) {
|
||||||
|
wm_hints->initial_state = NormalState;
|
||||||
|
wm_hints->input = True;
|
||||||
|
/* wm_hints->icon_pixmap = icon_pixmap; */
|
||||||
|
wm_hints->flags = StateHint | InputHint /* | IconPixmapHint */ ;
|
||||||
|
}
|
||||||
|
|
||||||
|
if ((class_hints = XAllocClassHint()) != NULL) {
|
||||||
|
class_hints->res_name = res_name;
|
||||||
|
class_hints->res_class = res_class;
|
||||||
|
}
|
||||||
|
|
||||||
|
XSetWMProperties(display, window, pWindowName, pIconName, NULL, 0,
|
||||||
|
size_hints, wm_hints, class_hints);
|
||||||
|
|
||||||
|
/* various properties and hints no longer needed; free memory */
|
||||||
|
if (pWindowName)
|
||||||
|
XFree(pWindowName->value);
|
||||||
|
if (pIconName)
|
||||||
|
XFree(pIconName->value);
|
||||||
|
if (size_hints)
|
||||||
|
XFree(size_hints);
|
||||||
|
if (wm_hints)
|
||||||
|
XFree(wm_hints);
|
||||||
|
if (class_hints)
|
||||||
|
XFree(class_hints);
|
||||||
|
|
||||||
|
XMapWindow(display, window);
|
||||||
|
|
||||||
|
gc = XCreateGC(display, window, 0, &gcvalues);
|
||||||
|
have_gc = TRUE;
|
||||||
|
|
||||||
|
/*---------------------------------------------------------------------------
|
||||||
|
Fill window with the specified background color.
|
||||||
|
---------------------------------------------------------------------------*/
|
||||||
|
|
||||||
|
if (depth == 24 || depth == 32) {
|
||||||
|
bg_pixel = ((ulg)bg_red << RShift) |
|
||||||
|
((ulg)bg_green << GShift) |
|
||||||
|
((ulg)bg_blue << BShift);
|
||||||
|
} else if (depth == 16) {
|
||||||
|
bg_pixel = ((((ulg)bg_red << 8) >> RShift) & RMask) |
|
||||||
|
((((ulg)bg_green << 8) >> GShift) & GMask) |
|
||||||
|
((((ulg)bg_blue << 8) >> BShift) & BMask);
|
||||||
|
} else /* depth == 8 */ {
|
||||||
|
|
||||||
|
/* GRR: add 8-bit support */
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
XSetForeground(display, gc, bg_pixel);
|
||||||
|
XFillRectangle(display, window, gc, 0, 0, image_width, image_height);
|
||||||
|
|
||||||
|
/*---------------------------------------------------------------------------
|
||||||
|
Wait for first Expose event to do any drawing, then flush.
|
||||||
|
---------------------------------------------------------------------------*/
|
||||||
|
|
||||||
|
do
|
||||||
|
XNextEvent(display, &e);
|
||||||
|
while (e.type != Expose || e.xexpose.count);
|
||||||
|
|
||||||
|
XFlush(display);
|
||||||
|
|
||||||
|
/*---------------------------------------------------------------------------
|
||||||
|
Allocate memory for the X- and display-specific version of the image.
|
||||||
|
---------------------------------------------------------------------------*/
|
||||||
|
|
||||||
|
if (depth == 24 || depth == 32) {
|
||||||
|
xdata = (uch *)malloc(4*image_width*image_height);
|
||||||
|
pad = 32;
|
||||||
|
} else if (depth == 16) {
|
||||||
|
xdata = (uch *)malloc(2*image_width*image_height);
|
||||||
|
pad = 16;
|
||||||
|
} else /* depth == 8 */ {
|
||||||
|
xdata = (uch *)malloc(image_width*image_height);
|
||||||
|
pad = 8;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!xdata) {
|
||||||
|
fprintf(stderr, PROGNAME ": unable to allocate image memory\n");
|
||||||
|
return 4;
|
||||||
|
}
|
||||||
|
|
||||||
|
ximage = XCreateImage(display, visual, depth, ZPixmap, 0,
|
||||||
|
(char *)xdata, image_width, image_height, pad, 0);
|
||||||
|
|
||||||
|
if (!ximage) {
|
||||||
|
fprintf(stderr, PROGNAME ": XCreateImage() failed\n");
|
||||||
|
free(xdata);
|
||||||
|
return 3;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* to avoid testing the byte order every pixel (or doubling the size of
|
||||||
|
* the drawing routine with a giant if-test), we arbitrarily set the byte
|
||||||
|
* order to MSBFirst and let Xlib worry about inverting things on little-
|
||||||
|
* endian machines (like Linux/x86, old VAXen, etc.)--this is not the most
|
||||||
|
* efficient approach (the giant if-test would be better), but in the
|
||||||
|
* interest of clarity, we take the easy way out... */
|
||||||
|
|
||||||
|
ximage->byte_order = MSBFirst;
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
|
||||||
|
} /* end function rpng_x_create_window() */
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
static int rpng_x_display_image(void)
|
||||||
|
{
|
||||||
|
uch *src;
|
||||||
|
char *dest;
|
||||||
|
uch r, g, b, a;
|
||||||
|
ulg i, row, lastrow = 0;
|
||||||
|
ulg pixel;
|
||||||
|
int ximage_rowbytes = ximage->bytes_per_line;
|
||||||
|
/* int bpp = ximage->bits_per_pixel; */
|
||||||
|
|
||||||
|
|
||||||
|
Trace((stderr, "beginning display loop (image_channels == %d)\n",
|
||||||
|
image_channels))
|
||||||
|
Trace((stderr, " (width = %ld, rowbytes = %ld, ximage_rowbytes = %d)\n",
|
||||||
|
image_width, image_rowbytes, ximage_rowbytes))
|
||||||
|
Trace((stderr, " (bpp = %d)\n", ximage->bits_per_pixel))
|
||||||
|
Trace((stderr, " (byte_order = %s)\n", ximage->byte_order == MSBFirst?
|
||||||
|
"MSBFirst" : (ximage->byte_order == LSBFirst? "LSBFirst" : "unknown")))
|
||||||
|
|
||||||
|
if (depth == 24 || depth == 32) {
|
||||||
|
ulg red, green, blue;
|
||||||
|
|
||||||
|
for (lastrow = row = 0; row < image_height; ++row) {
|
||||||
|
src = image_data + row*image_rowbytes;
|
||||||
|
dest = ximage->data + row*ximage_rowbytes;
|
||||||
|
if (image_channels == 3) {
|
||||||
|
for (i = image_width; i > 0; --i) {
|
||||||
|
red = *src++;
|
||||||
|
green = *src++;
|
||||||
|
blue = *src++;
|
||||||
|
#ifdef NO_24BIT_MASKS
|
||||||
|
pixel = (red << RShift) |
|
||||||
|
(green << GShift) |
|
||||||
|
(blue << BShift);
|
||||||
|
/* recall that we set ximage->byte_order = MSBFirst above */
|
||||||
|
/* GRR BUG: this assumes bpp == 32, but may be 24: */
|
||||||
|
*dest++ = (char)((pixel >> 24) & 0xff);
|
||||||
|
*dest++ = (char)((pixel >> 16) & 0xff);
|
||||||
|
*dest++ = (char)((pixel >> 8) & 0xff);
|
||||||
|
*dest++ = (char)( pixel & 0xff);
|
||||||
|
#else
|
||||||
|
red = (RShift < 0)? red << (-RShift) : red >> RShift;
|
||||||
|
green = (GShift < 0)? green << (-GShift) : green >> GShift;
|
||||||
|
blue = (BShift < 0)? blue << (-BShift) : blue >> BShift;
|
||||||
|
pixel = (red & RMask) | (green & GMask) | (blue & BMask);
|
||||||
|
/* recall that we set ximage->byte_order = MSBFirst above */
|
||||||
|
*dest++ = (char)((pixel >> 24) & 0xff);
|
||||||
|
*dest++ = (char)((pixel >> 16) & 0xff);
|
||||||
|
*dest++ = (char)((pixel >> 8) & 0xff);
|
||||||
|
*dest++ = (char)( pixel & 0xff);
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
} else /* if (image_channels == 4) */ {
|
||||||
|
for (i = image_width; i > 0; --i) {
|
||||||
|
r = *src++;
|
||||||
|
g = *src++;
|
||||||
|
b = *src++;
|
||||||
|
a = *src++;
|
||||||
|
if (a == 255) {
|
||||||
|
red = r;
|
||||||
|
green = g;
|
||||||
|
blue = b;
|
||||||
|
} else if (a == 0) {
|
||||||
|
red = bg_red;
|
||||||
|
green = bg_green;
|
||||||
|
blue = bg_blue;
|
||||||
|
} else {
|
||||||
|
/* this macro (from png.h) composites the foreground
|
||||||
|
* and background values and puts the result into the
|
||||||
|
* first argument */
|
||||||
|
alpha_composite(red, r, a, bg_red);
|
||||||
|
alpha_composite(green, g, a, bg_green);
|
||||||
|
alpha_composite(blue, b, a, bg_blue);
|
||||||
|
}
|
||||||
|
pixel = (red << RShift) |
|
||||||
|
(green << GShift) |
|
||||||
|
(blue << BShift);
|
||||||
|
/* recall that we set ximage->byte_order = MSBFirst above */
|
||||||
|
*dest++ = (char)((pixel >> 24) & 0xff);
|
||||||
|
*dest++ = (char)((pixel >> 16) & 0xff);
|
||||||
|
*dest++ = (char)((pixel >> 8) & 0xff);
|
||||||
|
*dest++ = (char)( pixel & 0xff);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
/* display after every 16 lines */
|
||||||
|
if (((row+1) & 0xf) == 0) {
|
||||||
|
XPutImage(display, window, gc, ximage, 0, (int)lastrow, 0,
|
||||||
|
(int)lastrow, image_width, 16);
|
||||||
|
XFlush(display);
|
||||||
|
lastrow = row + 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
} else if (depth == 16) {
|
||||||
|
ush red, green, blue;
|
||||||
|
|
||||||
|
for (lastrow = row = 0; row < image_height; ++row) {
|
||||||
|
src = image_data + row*image_rowbytes;
|
||||||
|
dest = ximage->data + row*ximage_rowbytes;
|
||||||
|
if (image_channels == 3) {
|
||||||
|
for (i = image_width; i > 0; --i) {
|
||||||
|
red = ((ush)(*src) << 8);
|
||||||
|
++src;
|
||||||
|
green = ((ush)(*src) << 8);
|
||||||
|
++src;
|
||||||
|
blue = ((ush)(*src) << 8);
|
||||||
|
++src;
|
||||||
|
pixel = ((red >> RShift) & RMask) |
|
||||||
|
((green >> GShift) & GMask) |
|
||||||
|
((blue >> BShift) & BMask);
|
||||||
|
/* recall that we set ximage->byte_order = MSBFirst above */
|
||||||
|
*dest++ = (char)((pixel >> 8) & 0xff);
|
||||||
|
*dest++ = (char)( pixel & 0xff);
|
||||||
|
}
|
||||||
|
} else /* if (image_channels == 4) */ {
|
||||||
|
for (i = image_width; i > 0; --i) {
|
||||||
|
r = *src++;
|
||||||
|
g = *src++;
|
||||||
|
b = *src++;
|
||||||
|
a = *src++;
|
||||||
|
if (a == 255) {
|
||||||
|
red = ((ush)r << 8);
|
||||||
|
green = ((ush)g << 8);
|
||||||
|
blue = ((ush)b << 8);
|
||||||
|
} else if (a == 0) {
|
||||||
|
red = ((ush)bg_red << 8);
|
||||||
|
green = ((ush)bg_green << 8);
|
||||||
|
blue = ((ush)bg_blue << 8);
|
||||||
|
} else {
|
||||||
|
/* this macro (from png.h) composites the foreground
|
||||||
|
* and background values and puts the result back into
|
||||||
|
* the first argument (== fg byte here: safe) */
|
||||||
|
alpha_composite(r, r, a, bg_red);
|
||||||
|
alpha_composite(g, g, a, bg_green);
|
||||||
|
alpha_composite(b, b, a, bg_blue);
|
||||||
|
red = ((ush)r << 8);
|
||||||
|
green = ((ush)g << 8);
|
||||||
|
blue = ((ush)b << 8);
|
||||||
|
}
|
||||||
|
pixel = ((red >> RShift) & RMask) |
|
||||||
|
((green >> GShift) & GMask) |
|
||||||
|
((blue >> BShift) & BMask);
|
||||||
|
/* recall that we set ximage->byte_order = MSBFirst above */
|
||||||
|
*dest++ = (char)((pixel >> 8) & 0xff);
|
||||||
|
*dest++ = (char)( pixel & 0xff);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
/* display after every 16 lines */
|
||||||
|
if (((row+1) & 0xf) == 0) {
|
||||||
|
XPutImage(display, window, gc, ximage, 0, (int)lastrow, 0,
|
||||||
|
(int)lastrow, image_width, 16);
|
||||||
|
XFlush(display);
|
||||||
|
lastrow = row + 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
} else /* depth == 8 */ {
|
||||||
|
|
||||||
|
/* GRR: add 8-bit support */
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
Trace((stderr, "calling final XPutImage()\n"))
|
||||||
|
if (lastrow < image_height) {
|
||||||
|
XPutImage(display, window, gc, ximage, 0, (int)lastrow, 0,
|
||||||
|
(int)lastrow, image_width, image_height-lastrow);
|
||||||
|
XFlush(display);
|
||||||
|
}
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
static void rpng_x_cleanup(void)
|
||||||
|
{
|
||||||
|
if (image_data) {
|
||||||
|
free(image_data);
|
||||||
|
image_data = NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (ximage) {
|
||||||
|
if (ximage->data) {
|
||||||
|
free(ximage->data); /* we allocated it, so we free it */
|
||||||
|
ximage->data = (char *)NULL; /* instead of XDestroyImage() */
|
||||||
|
}
|
||||||
|
XDestroyImage(ximage);
|
||||||
|
ximage = NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (have_gc)
|
||||||
|
XFreeGC(display, gc);
|
||||||
|
|
||||||
|
if (have_window)
|
||||||
|
XDestroyWindow(display, window);
|
||||||
|
|
||||||
|
if (have_colormap)
|
||||||
|
XFreeColormap(display, colormap);
|
||||||
|
|
||||||
|
if (have_nondefault_visual)
|
||||||
|
XFree(visual_list);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
static int rpng_x_msb(ulg u32val)
|
||||||
|
{
|
||||||
|
int i;
|
||||||
|
|
||||||
|
for (i = 31; i >= 0; --i) {
|
||||||
|
if (u32val & 0x80000000L)
|
||||||
|
break;
|
||||||
|
u32val <<= 1;
|
||||||
|
}
|
||||||
|
return i;
|
||||||
|
}
|
1225
dependencies/libpng/src/contrib/gregbook/rpng2-win.c
vendored
Normal file
2127
dependencies/libpng/src/contrib/gregbook/rpng2-x.c
vendored
Normal file
BIN
dependencies/libpng/src/contrib/gregbook/toucan.png
vendored
Normal file
After Width: | Height: | Size: 13 KiB |
853
dependencies/libpng/src/contrib/gregbook/wpng.c
vendored
Normal file
@ -0,0 +1,853 @@
|
|||||||
|
/*---------------------------------------------------------------------------
|
||||||
|
|
||||||
|
wpng - simple PNG-writing program wpng.c
|
||||||
|
|
||||||
|
This program converts certain NetPBM binary files (grayscale and RGB,
|
||||||
|
maxval = 255) to PNG. Non-interlaced PNGs are written progressively;
|
||||||
|
interlaced PNGs are read and written in one memory-intensive blast.
|
||||||
|
|
||||||
|
Thanks to Jean-loup Gailly for providing the necessary trick to read
|
||||||
|
interactive text from the keyboard while stdin is redirected. Thanks
|
||||||
|
to Cosmin Truta for Cygwin fixes.
|
||||||
|
|
||||||
|
NOTE: includes provisional support for PNM type "8" (portable alphamap)
|
||||||
|
images, presumed to be a 32-bit interleaved RGBA format; no pro-
|
||||||
|
vision for possible interleaved grayscale+alpha (16-bit) format.
|
||||||
|
THIS IS UNLIKELY TO BECOME AN OFFICIAL NETPBM ALPHA FORMAT!
|
||||||
|
|
||||||
|
to do:
|
||||||
|
- delete output file if quit before calling any writepng routines
|
||||||
|
- process backspace with -text option under DOS/Win? (currently get ^H)
|
||||||
|
|
||||||
|
---------------------------------------------------------------------------
|
||||||
|
|
||||||
|
Changelog:
|
||||||
|
- 1.01: initial public release
|
||||||
|
- 1.02: modified to allow abbreviated options
|
||||||
|
- 1.03: removed extraneous character from usage screen; fixed bug in
|
||||||
|
command-line parsing
|
||||||
|
- 1.04: fixed DOS/OS2/Win32 detection, including partial Cygwin fix
|
||||||
|
(see http://home.att.net/~perlspinr/diffs/GregBook_cygwin.diff)
|
||||||
|
- 2.00: dual-licensed (added GNU GPL)
|
||||||
|
|
||||||
|
[REPORTED BUG (win32 only): "contrib/gregbook/wpng.c - cmd line
|
||||||
|
dose not work! In order to do something useful I needed to redirect
|
||||||
|
both input and output, with cygwin and with bcc32 as well. Under
|
||||||
|
Linux, the same wpng appears to work fine. I don't know what is
|
||||||
|
the problem."]
|
||||||
|
|
||||||
|
---------------------------------------------------------------------------
|
||||||
|
|
||||||
|
Copyright (c) 1998-2007 Greg Roelofs. All rights reserved.
|
||||||
|
|
||||||
|
This software is provided "as is," without warranty of any kind,
|
||||||
|
express or implied. In no event shall the author or contributors
|
||||||
|
be held liable for any damages arising in any way from the use of
|
||||||
|
this software.
|
||||||
|
|
||||||
|
The contents of this file are DUAL-LICENSED. You may modify and/or
|
||||||
|
redistribute this software according to the terms of one of the
|
||||||
|
following two licenses (at your option):
|
||||||
|
|
||||||
|
|
||||||
|
LICENSE 1 ("BSD-like with advertising clause"):
|
||||||
|
|
||||||
|
Permission is granted to anyone to use this software for any purpose,
|
||||||
|
including commercial applications, and to alter it and redistribute
|
||||||
|
it freely, subject to the following restrictions:
|
||||||
|
|
||||||
|
1. Redistributions of source code must retain the above copyright
|
||||||
|
notice, disclaimer, and this list of conditions.
|
||||||
|
2. Redistributions in binary form must reproduce the above copyright
|
||||||
|
notice, disclaimer, and this list of conditions in the documenta-
|
||||||
|
tion and/or other materials provided with the distribution.
|
||||||
|
3. All advertising materials mentioning features or use of this
|
||||||
|
software must display the following acknowledgment:
|
||||||
|
|
||||||
|
This product includes software developed by Greg Roelofs
|
||||||
|
and contributors for the book, "PNG: The Definitive Guide,"
|
||||||
|
published by O'Reilly and Associates.
|
||||||
|
|
||||||
|
|
||||||
|
LICENSE 2 (GNU GPL v2 or later):
|
||||||
|
|
||||||
|
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 2 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, write to the Free Software Foundation,
|
||||||
|
Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
|
|
||||||
|
---------------------------------------------------------------------------*/
|
||||||
|
|
||||||
|
#define PROGNAME "wpng"
|
||||||
|
#define VERSION "2.00 of 2 June 2007"
|
||||||
|
#define APPNAME "Simple PGM/PPM/PAM to PNG Converter"
|
||||||
|
|
||||||
|
#if defined(__MSDOS__) || defined(__OS2__)
|
||||||
|
# define DOS_OS2_W32
|
||||||
|
#elif defined(WIN32) || defined(_WIN32) || defined(__WIN32__)
|
||||||
|
# ifndef __GNUC__ /* treat Win32 native ports of gcc as Unix environments */
|
||||||
|
# define DOS_OS2_W32
|
||||||
|
# endif
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#include <stdio.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
#include <string.h>
|
||||||
|
#include <setjmp.h> /* for jmpbuf declaration in writepng.h */
|
||||||
|
#include <time.h>
|
||||||
|
|
||||||
|
#ifdef DOS_OS2_W32
|
||||||
|
# include <io.h> /* for isatty(), setmode() prototypes */
|
||||||
|
# include <fcntl.h> /* O_BINARY for fdopen() without text translation */
|
||||||
|
# ifdef __EMX__
|
||||||
|
# ifndef getch
|
||||||
|
# define getch() _read_kbd(0, 1, 0) /* need getche() */
|
||||||
|
# endif
|
||||||
|
# else /* !__EMX__ */
|
||||||
|
# ifdef __GO32__
|
||||||
|
# include <pc.h>
|
||||||
|
# define getch() getkey() /* GRR: need getche() */
|
||||||
|
# else
|
||||||
|
# include <conio.h> /* for getche() console input */
|
||||||
|
# endif
|
||||||
|
# endif /* ?__EMX__ */
|
||||||
|
# define FGETS(buf,len,stream) dos_kbd_gets(buf,len)
|
||||||
|
#else
|
||||||
|
# include <unistd.h> /* for isatty() prototype */
|
||||||
|
# define FGETS fgets
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* #define DEBUG : this enables the Trace() macros */
|
||||||
|
|
||||||
|
/* #define FORBID_LATIN1_CTRL : this requires the user to re-enter any
|
||||||
|
text that includes control characters discouraged by the PNG spec; text
|
||||||
|
that includes an escape character (27) must be re-entered regardless */
|
||||||
|
|
||||||
|
#include "writepng.h" /* typedefs, common macros, writepng prototypes */
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/* local prototypes */
|
||||||
|
|
||||||
|
static int wpng_isvalid_latin1(uch *p, int len);
|
||||||
|
static void wpng_cleanup(void);
|
||||||
|
|
||||||
|
#ifdef DOS_OS2_W32
|
||||||
|
static char *dos_kbd_gets(char *buf, int len);
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
static mainprog_info wpng_info; /* lone global */
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
int main(int argc, char **argv)
|
||||||
|
{
|
||||||
|
#ifndef DOS_OS2_W32
|
||||||
|
FILE *keybd;
|
||||||
|
#endif
|
||||||
|
#ifdef sgi
|
||||||
|
FILE *tmpfile; /* or we could just use keybd, since no overlap */
|
||||||
|
char tmpline[80];
|
||||||
|
#endif
|
||||||
|
char *inname = NULL, outname[256];
|
||||||
|
char *p, pnmchar, pnmline[256];
|
||||||
|
char *bgstr, *textbuf = NULL;
|
||||||
|
ulg rowbytes;
|
||||||
|
int rc, len = 0;
|
||||||
|
int error = 0;
|
||||||
|
int text = FALSE;
|
||||||
|
int maxval;
|
||||||
|
double LUT_exponent; /* just the lookup table */
|
||||||
|
double CRT_exponent = 2.2; /* just the monitor */
|
||||||
|
double default_display_exponent; /* whole display system */
|
||||||
|
double default_gamma = 0.0;
|
||||||
|
|
||||||
|
|
||||||
|
wpng_info.infile = NULL;
|
||||||
|
wpng_info.outfile = NULL;
|
||||||
|
wpng_info.image_data = NULL;
|
||||||
|
wpng_info.row_pointers = NULL;
|
||||||
|
wpng_info.filter = FALSE;
|
||||||
|
wpng_info.interlaced = FALSE;
|
||||||
|
wpng_info.have_bg = FALSE;
|
||||||
|
wpng_info.have_time = FALSE;
|
||||||
|
wpng_info.have_text = 0;
|
||||||
|
wpng_info.gamma = 0.0;
|
||||||
|
|
||||||
|
|
||||||
|
/* First get the default value for our display-system exponent, i.e.,
|
||||||
|
* the product of the CRT exponent and the exponent corresponding to
|
||||||
|
* the frame-buffer's lookup table (LUT), if any. If the PNM image
|
||||||
|
* looks correct on the user's display system, its file gamma is the
|
||||||
|
* inverse of this value. (Note that this is not an exhaustive list
|
||||||
|
* of LUT values--e.g., OpenStep has a lot of weird ones--but it should
|
||||||
|
* cover 99% of the current possibilities. This section must ensure
|
||||||
|
* that default_display_exponent is positive.) */
|
||||||
|
|
||||||
|
#if defined(NeXT)
|
||||||
|
/* third-party utilities can modify the default LUT exponent */
|
||||||
|
LUT_exponent = 1.0 / 2.2;
|
||||||
|
/*
|
||||||
|
if (some_next_function_that_returns_gamma(&next_gamma))
|
||||||
|
LUT_exponent = 1.0 / next_gamma;
|
||||||
|
*/
|
||||||
|
#elif defined(sgi)
|
||||||
|
LUT_exponent = 1.0 / 1.7;
|
||||||
|
/* there doesn't seem to be any documented function to
|
||||||
|
* get the "gamma" value, so we do it the hard way */
|
||||||
|
tmpfile = fopen("/etc/config/system.glGammaVal", "r");
|
||||||
|
if (tmpfile) {
|
||||||
|
double sgi_gamma;
|
||||||
|
|
||||||
|
fgets(tmpline, 80, tmpfile);
|
||||||
|
fclose(tmpfile);
|
||||||
|
sgi_gamma = atof(tmpline);
|
||||||
|
if (sgi_gamma > 0.0)
|
||||||
|
LUT_exponent = 1.0 / sgi_gamma;
|
||||||
|
}
|
||||||
|
#elif defined(Macintosh)
|
||||||
|
LUT_exponent = 1.8 / 2.61;
|
||||||
|
/*
|
||||||
|
if (some_mac_function_that_returns_gamma(&mac_gamma))
|
||||||
|
LUT_exponent = mac_gamma / 2.61;
|
||||||
|
*/
|
||||||
|
#else
|
||||||
|
LUT_exponent = 1.0; /* assume no LUT: most PCs */
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* the defaults above give 1.0, 1.3, 1.5 and 2.2, respectively: */
|
||||||
|
default_display_exponent = LUT_exponent * CRT_exponent;
|
||||||
|
|
||||||
|
|
||||||
|
/* If the user has set the SCREEN_GAMMA environment variable as suggested
|
||||||
|
* (somewhat imprecisely) in the libpng documentation, use that; otherwise
|
||||||
|
* use the default value we just calculated. Either way, the user may
|
||||||
|
* override this via a command-line option. */
|
||||||
|
|
||||||
|
if ((p = getenv("SCREEN_GAMMA")) != NULL) {
|
||||||
|
double exponent = atof(p);
|
||||||
|
|
||||||
|
if (exponent > 0.0)
|
||||||
|
default_gamma = 1.0 / exponent;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (default_gamma == 0.0)
|
||||||
|
default_gamma = 1.0 / default_display_exponent;
|
||||||
|
|
||||||
|
|
||||||
|
/* Now parse the command line for options and the PNM filename. */
|
||||||
|
|
||||||
|
while (*++argv && !error) {
|
||||||
|
if (!strncmp(*argv, "-i", 2)) {
|
||||||
|
wpng_info.interlaced = TRUE;
|
||||||
|
} else if (!strncmp(*argv, "-time", 3)) {
|
||||||
|
wpng_info.modtime = time(NULL);
|
||||||
|
wpng_info.have_time = TRUE;
|
||||||
|
} else if (!strncmp(*argv, "-text", 3)) {
|
||||||
|
text = TRUE;
|
||||||
|
} else if (!strncmp(*argv, "-gamma", 2)) {
|
||||||
|
if (!*++argv)
|
||||||
|
++error;
|
||||||
|
else {
|
||||||
|
wpng_info.gamma = atof(*argv);
|
||||||
|
if (wpng_info.gamma <= 0.0)
|
||||||
|
++error;
|
||||||
|
else if (wpng_info.gamma > 1.01)
|
||||||
|
fprintf(stderr, PROGNAME
|
||||||
|
" warning: file gammas are usually less than 1.0\n");
|
||||||
|
}
|
||||||
|
} else if (!strncmp(*argv, "-bgcolor", 4)) {
|
||||||
|
if (!*++argv)
|
||||||
|
++error;
|
||||||
|
else {
|
||||||
|
bgstr = *argv;
|
||||||
|
if (strlen(bgstr) != 7 || bgstr[0] != '#')
|
||||||
|
++error;
|
||||||
|
else {
|
||||||
|
unsigned r, g, b; /* this way quiets compiler warnings */
|
||||||
|
|
||||||
|
sscanf(bgstr+1, "%2x%2x%2x", &r, &g, &b);
|
||||||
|
wpng_info.bg_red = (uch)r;
|
||||||
|
wpng_info.bg_green = (uch)g;
|
||||||
|
wpng_info.bg_blue = (uch)b;
|
||||||
|
wpng_info.have_bg = TRUE;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
if (**argv != '-') {
|
||||||
|
inname = *argv;
|
||||||
|
if (argv[1]) /* shouldn't be any more args after filename */
|
||||||
|
++error;
|
||||||
|
} else
|
||||||
|
++error; /* not expecting any other options */
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* open the input and output files, or register an error and abort */
|
||||||
|
|
||||||
|
if (!inname) {
|
||||||
|
if (isatty(0)) {
|
||||||
|
fprintf(stderr, PROGNAME
|
||||||
|
": must give input filename or provide image data via stdin\n");
|
||||||
|
++error;
|
||||||
|
} else {
|
||||||
|
#ifdef DOS_OS2_W32
|
||||||
|
/* some buggy C libraries require BOTH setmode() and fdopen(bin) */
|
||||||
|
setmode(fileno(stdin), O_BINARY);
|
||||||
|
setmode(fileno(stdout), O_BINARY);
|
||||||
|
#endif
|
||||||
|
if ((wpng_info.infile = fdopen(fileno(stdin), "rb")) == NULL) {
|
||||||
|
fprintf(stderr, PROGNAME
|
||||||
|
": unable to reopen stdin in binary mode\n");
|
||||||
|
++error;
|
||||||
|
} else
|
||||||
|
if ((wpng_info.outfile = fdopen(fileno(stdout), "wb")) == NULL) {
|
||||||
|
fprintf(stderr, PROGNAME
|
||||||
|
": unable to reopen stdout in binary mode\n");
|
||||||
|
fclose(wpng_info.infile);
|
||||||
|
++error;
|
||||||
|
} else
|
||||||
|
wpng_info.filter = TRUE;
|
||||||
|
}
|
||||||
|
} else if ((len = strlen(inname)) > 250) {
|
||||||
|
fprintf(stderr, PROGNAME ": input filename is too long [%d chars]\n",
|
||||||
|
len);
|
||||||
|
++error;
|
||||||
|
} else if (!(wpng_info.infile = fopen(inname, "rb"))) {
|
||||||
|
fprintf(stderr, PROGNAME ": can't open input file [%s]\n", inname);
|
||||||
|
++error;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!error) {
|
||||||
|
fgets(pnmline, 256, wpng_info.infile);
|
||||||
|
if (pnmline[0] != 'P' || ((pnmchar = pnmline[1]) != '5' &&
|
||||||
|
pnmchar != '6' && pnmchar != '8'))
|
||||||
|
{
|
||||||
|
fprintf(stderr, PROGNAME
|
||||||
|
": input file [%s] is not a binary PGM, PPM or PAM file\n",
|
||||||
|
inname);
|
||||||
|
++error;
|
||||||
|
} else {
|
||||||
|
wpng_info.pnmtype = (int)(pnmchar - '0');
|
||||||
|
if (wpng_info.pnmtype != 8)
|
||||||
|
wpng_info.have_bg = FALSE; /* no need for bg if opaque */
|
||||||
|
do {
|
||||||
|
fgets(pnmline, 256, wpng_info.infile); /* lose any comments */
|
||||||
|
} while (pnmline[0] == '#');
|
||||||
|
sscanf(pnmline, "%ld %ld", &wpng_info.width, &wpng_info.height);
|
||||||
|
do {
|
||||||
|
fgets(pnmline, 256, wpng_info.infile); /* more comment lines */
|
||||||
|
} while (pnmline[0] == '#');
|
||||||
|
sscanf(pnmline, "%d", &maxval);
|
||||||
|
if (wpng_info.width <= 0L || wpng_info.height <= 0L ||
|
||||||
|
maxval != 255)
|
||||||
|
{
|
||||||
|
fprintf(stderr, PROGNAME
|
||||||
|
": only positive width/height, maxval == 255 allowed \n");
|
||||||
|
++error;
|
||||||
|
}
|
||||||
|
wpng_info.sample_depth = 8; /* <==> maxval 255 */
|
||||||
|
|
||||||
|
if (!wpng_info.filter) {
|
||||||
|
/* make outname from inname */
|
||||||
|
if ((p = strrchr(inname, '.')) == NULL ||
|
||||||
|
(p - inname) != (len - 4))
|
||||||
|
{
|
||||||
|
strcpy(outname, inname);
|
||||||
|
strcpy(outname+len, ".png");
|
||||||
|
} else {
|
||||||
|
len -= 4;
|
||||||
|
strncpy(outname, inname, len);
|
||||||
|
strcpy(outname+len, ".png");
|
||||||
|
}
|
||||||
|
/* check if outname already exists; if not, open */
|
||||||
|
if ((wpng_info.outfile = fopen(outname, "rb")) != NULL) {
|
||||||
|
fprintf(stderr, PROGNAME ": output file exists [%s]\n",
|
||||||
|
outname);
|
||||||
|
fclose(wpng_info.outfile);
|
||||||
|
++error;
|
||||||
|
} else if (!(wpng_info.outfile = fopen(outname, "wb"))) {
|
||||||
|
fprintf(stderr, PROGNAME ": can't open output file [%s]\n",
|
||||||
|
outname);
|
||||||
|
++error;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (error) {
|
||||||
|
fclose(wpng_info.infile);
|
||||||
|
wpng_info.infile = NULL;
|
||||||
|
if (wpng_info.filter) {
|
||||||
|
fclose(wpng_info.outfile);
|
||||||
|
wpng_info.outfile = NULL;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* if we had any errors, print usage and die horrible death...arrr! */
|
||||||
|
|
||||||
|
if (error) {
|
||||||
|
fprintf(stderr, "\n%s %s: %s\n", PROGNAME, VERSION, APPNAME);
|
||||||
|
writepng_version_info();
|
||||||
|
fprintf(stderr, "\n"
|
||||||
|
"Usage: %s [-gamma exp] [-bgcolor bg] [-text] [-time] [-interlace] pnmfile\n"
|
||||||
|
"or: ... | %s [-gamma exp] [-bgcolor bg] [-text] [-time] [-interlace] | ...\n"
|
||||||
|
" exp \ttransfer-function exponent (``gamma'') of the image in\n"
|
||||||
|
"\t\t floating-point format (e.g., ``%.5f''); if image looks\n"
|
||||||
|
"\t\t correct on given display system, image gamma is equal to\n"
|
||||||
|
"\t\t inverse of display-system exponent, i.e., 1 / (LUT * CRT)\n"
|
||||||
|
"\t\t (where LUT = lookup-table exponent and CRT = CRT exponent;\n"
|
||||||
|
"\t\t first varies, second is usually 2.2, all are positive)\n"
|
||||||
|
" bg \tdesired background color for alpha-channel images, in\n"
|
||||||
|
"\t\t 7-character hex RGB format (e.g., ``#ff7700'' for orange:\n"
|
||||||
|
"\t\t same as HTML colors)\n"
|
||||||
|
" -text\tprompt interactively for text info (tEXt chunks)\n"
|
||||||
|
" -time\tinclude a tIME chunk (last modification time)\n"
|
||||||
|
" -interlace\twrite interlaced PNG image\n"
|
||||||
|
"\n"
|
||||||
|
"pnmfile or stdin must be a binary PGM (`P5'), PPM (`P6') or (extremely\n"
|
||||||
|
"unofficial and unsupported!) PAM (`P8') file. Currently it is required\n"
|
||||||
|
"to have maxval == 255 (i.e., no scaling). If pnmfile is specified, it\n"
|
||||||
|
"is converted to the corresponding PNG file with the same base name but a\n"
|
||||||
|
"``.png'' extension; files read from stdin are converted and sent to stdout.\n"
|
||||||
|
"The conversion is progressive (low memory usage) unless interlacing is\n"
|
||||||
|
"requested; in that case the whole image will be buffered in memory and\n"
|
||||||
|
"written in one call.\n"
|
||||||
|
"\n", PROGNAME, PROGNAME, default_gamma);
|
||||||
|
exit(1);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* prepare the text buffers for libpng's use; note that even though
|
||||||
|
* PNG's png_text struct includes a length field, we don't have to fill
|
||||||
|
* it out */
|
||||||
|
|
||||||
|
if (text &&
|
||||||
|
#ifndef DOS_OS2_W32
|
||||||
|
(keybd = fdopen(fileno(stderr), "r")) != NULL &&
|
||||||
|
#endif
|
||||||
|
(textbuf = (char *)malloc((5 + 9)*75)) != NULL)
|
||||||
|
{
|
||||||
|
int i, valid, result;
|
||||||
|
|
||||||
|
fprintf(stderr,
|
||||||
|
"Enter text info (no more than 72 characters per line);\n");
|
||||||
|
fprintf(stderr, "to skip a field, hit the <Enter> key.\n");
|
||||||
|
/* note: just <Enter> leaves len == 1 */
|
||||||
|
|
||||||
|
do {
|
||||||
|
valid = TRUE;
|
||||||
|
p = textbuf + TEXT_TITLE_OFFSET;
|
||||||
|
fprintf(stderr, " Title: ");
|
||||||
|
fflush(stderr);
|
||||||
|
if (FGETS(p, 74, keybd) && (len = strlen(p)) > 1) {
|
||||||
|
if (p[len-1] == '\n')
|
||||||
|
p[--len] = '\0';
|
||||||
|
wpng_info.title = p;
|
||||||
|
wpng_info.have_text |= TEXT_TITLE;
|
||||||
|
if ((result = wpng_isvalid_latin1((uch *)p, len)) >= 0) {
|
||||||
|
fprintf(stderr, " " PROGNAME " warning: character code"
|
||||||
|
" %u is %sdiscouraged by the PNG\n specification "
|
||||||
|
"[first occurrence was at character position #%d]\n",
|
||||||
|
(unsigned)p[result], (p[result] == 27)? "strongly " : "",
|
||||||
|
result+1);
|
||||||
|
fflush(stderr);
|
||||||
|
#ifdef FORBID_LATIN1_CTRL
|
||||||
|
wpng_info.have_text &= ~TEXT_TITLE;
|
||||||
|
valid = FALSE;
|
||||||
|
#else
|
||||||
|
if (p[result] == 27) { /* escape character */
|
||||||
|
wpng_info.have_text &= ~TEXT_TITLE;
|
||||||
|
valid = FALSE;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} while (!valid);
|
||||||
|
|
||||||
|
do {
|
||||||
|
valid = TRUE;
|
||||||
|
p = textbuf + TEXT_AUTHOR_OFFSET;
|
||||||
|
fprintf(stderr, " Author: ");
|
||||||
|
fflush(stderr);
|
||||||
|
if (FGETS(p, 74, keybd) && (len = strlen(p)) > 1) {
|
||||||
|
if (p[len-1] == '\n')
|
||||||
|
p[--len] = '\0';
|
||||||
|
wpng_info.author = p;
|
||||||
|
wpng_info.have_text |= TEXT_AUTHOR;
|
||||||
|
if ((result = wpng_isvalid_latin1((uch *)p, len)) >= 0) {
|
||||||
|
fprintf(stderr, " " PROGNAME " warning: character code"
|
||||||
|
" %u is %sdiscouraged by the PNG\n specification "
|
||||||
|
"[first occurrence was at character position #%d]\n",
|
||||||
|
(unsigned)p[result], (p[result] == 27)? "strongly " : "",
|
||||||
|
result+1);
|
||||||
|
fflush(stderr);
|
||||||
|
#ifdef FORBID_LATIN1_CTRL
|
||||||
|
wpng_info.have_text &= ~TEXT_AUTHOR;
|
||||||
|
valid = FALSE;
|
||||||
|
#else
|
||||||
|
if (p[result] == 27) { /* escape character */
|
||||||
|
wpng_info.have_text &= ~TEXT_AUTHOR;
|
||||||
|
valid = FALSE;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} while (!valid);
|
||||||
|
|
||||||
|
do {
|
||||||
|
valid = TRUE;
|
||||||
|
p = textbuf + TEXT_DESC_OFFSET;
|
||||||
|
fprintf(stderr, " Description (up to 9 lines):\n");
|
||||||
|
for (i = 1; i < 10; ++i) {
|
||||||
|
fprintf(stderr, " [%d] ", i);
|
||||||
|
fflush(stderr);
|
||||||
|
if (FGETS(p, 74, keybd) && (len = strlen(p)) > 1)
|
||||||
|
p += len; /* now points at NULL; char before is newline */
|
||||||
|
else
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
if ((len = p - (textbuf + TEXT_DESC_OFFSET)) > 1) {
|
||||||
|
if (p[-1] == '\n') {
|
||||||
|
p[-1] = '\0';
|
||||||
|
--len;
|
||||||
|
}
|
||||||
|
wpng_info.desc = textbuf + TEXT_DESC_OFFSET;
|
||||||
|
wpng_info.have_text |= TEXT_DESC;
|
||||||
|
p = textbuf + TEXT_DESC_OFFSET;
|
||||||
|
if ((result = wpng_isvalid_latin1((uch *)p, len)) >= 0) {
|
||||||
|
fprintf(stderr, " " PROGNAME " warning: character code"
|
||||||
|
" %u is %sdiscouraged by the PNG\n specification "
|
||||||
|
"[first occurrence was at character position #%d]\n",
|
||||||
|
(unsigned)p[result], (p[result] == 27)? "strongly " : "",
|
||||||
|
result+1);
|
||||||
|
fflush(stderr);
|
||||||
|
#ifdef FORBID_LATIN1_CTRL
|
||||||
|
wpng_info.have_text &= ~TEXT_DESC;
|
||||||
|
valid = FALSE;
|
||||||
|
#else
|
||||||
|
if (p[result] == 27) { /* escape character */
|
||||||
|
wpng_info.have_text &= ~TEXT_DESC;
|
||||||
|
valid = FALSE;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} while (!valid);
|
||||||
|
|
||||||
|
do {
|
||||||
|
valid = TRUE;
|
||||||
|
p = textbuf + TEXT_COPY_OFFSET;
|
||||||
|
fprintf(stderr, " Copyright: ");
|
||||||
|
fflush(stderr);
|
||||||
|
if (FGETS(p, 74, keybd) && (len = strlen(p)) > 1) {
|
||||||
|
if (p[len-1] == '\n')
|
||||||
|
p[--len] = '\0';
|
||||||
|
wpng_info.copyright = p;
|
||||||
|
wpng_info.have_text |= TEXT_COPY;
|
||||||
|
if ((result = wpng_isvalid_latin1((uch *)p, len)) >= 0) {
|
||||||
|
fprintf(stderr, " " PROGNAME " warning: character code"
|
||||||
|
" %u is %sdiscouraged by the PNG\n specification "
|
||||||
|
"[first occurrence was at character position #%d]\n",
|
||||||
|
(unsigned)p[result], (p[result] == 27)? "strongly " : "",
|
||||||
|
result+1);
|
||||||
|
fflush(stderr);
|
||||||
|
#ifdef FORBID_LATIN1_CTRL
|
||||||
|
wpng_info.have_text &= ~TEXT_COPY;
|
||||||
|
valid = FALSE;
|
||||||
|
#else
|
||||||
|
if (p[result] == 27) { /* escape character */
|
||||||
|
wpng_info.have_text &= ~TEXT_COPY;
|
||||||
|
valid = FALSE;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} while (!valid);
|
||||||
|
|
||||||
|
do {
|
||||||
|
valid = TRUE;
|
||||||
|
p = textbuf + TEXT_EMAIL_OFFSET;
|
||||||
|
fprintf(stderr, " E-mail: ");
|
||||||
|
fflush(stderr);
|
||||||
|
if (FGETS(p, 74, keybd) && (len = strlen(p)) > 1) {
|
||||||
|
if (p[len-1] == '\n')
|
||||||
|
p[--len] = '\0';
|
||||||
|
wpng_info.email = p;
|
||||||
|
wpng_info.have_text |= TEXT_EMAIL;
|
||||||
|
if ((result = wpng_isvalid_latin1((uch *)p, len)) >= 0) {
|
||||||
|
fprintf(stderr, " " PROGNAME " warning: character code"
|
||||||
|
" %u is %sdiscouraged by the PNG\n specification "
|
||||||
|
"[first occurrence was at character position #%d]\n",
|
||||||
|
(unsigned)p[result], (p[result] == 27)? "strongly " : "",
|
||||||
|
result+1);
|
||||||
|
fflush(stderr);
|
||||||
|
#ifdef FORBID_LATIN1_CTRL
|
||||||
|
wpng_info.have_text &= ~TEXT_EMAIL;
|
||||||
|
valid = FALSE;
|
||||||
|
#else
|
||||||
|
if (p[result] == 27) { /* escape character */
|
||||||
|
wpng_info.have_text &= ~TEXT_EMAIL;
|
||||||
|
valid = FALSE;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} while (!valid);
|
||||||
|
|
||||||
|
do {
|
||||||
|
valid = TRUE;
|
||||||
|
p = textbuf + TEXT_URL_OFFSET;
|
||||||
|
fprintf(stderr, " URL: ");
|
||||||
|
fflush(stderr);
|
||||||
|
if (FGETS(p, 74, keybd) && (len = strlen(p)) > 1) {
|
||||||
|
if (p[len-1] == '\n')
|
||||||
|
p[--len] = '\0';
|
||||||
|
wpng_info.url = p;
|
||||||
|
wpng_info.have_text |= TEXT_URL;
|
||||||
|
if ((result = wpng_isvalid_latin1((uch *)p, len)) >= 0) {
|
||||||
|
fprintf(stderr, " " PROGNAME " warning: character code"
|
||||||
|
" %u is %sdiscouraged by the PNG\n specification "
|
||||||
|
"[first occurrence was at character position #%d]\n",
|
||||||
|
(unsigned)p[result], (p[result] == 27)? "strongly " : "",
|
||||||
|
result+1);
|
||||||
|
fflush(stderr);
|
||||||
|
#ifdef FORBID_LATIN1_CTRL
|
||||||
|
wpng_info.have_text &= ~TEXT_URL;
|
||||||
|
valid = FALSE;
|
||||||
|
#else
|
||||||
|
if (p[result] == 27) { /* escape character */
|
||||||
|
wpng_info.have_text &= ~TEXT_URL;
|
||||||
|
valid = FALSE;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} while (!valid);
|
||||||
|
|
||||||
|
#ifndef DOS_OS2_W32
|
||||||
|
fclose(keybd);
|
||||||
|
#endif
|
||||||
|
|
||||||
|
} else if (text) {
|
||||||
|
fprintf(stderr, PROGNAME ": unable to allocate memory for text\n");
|
||||||
|
text = FALSE;
|
||||||
|
wpng_info.have_text = 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* allocate libpng stuff, initialize transformations, write pre-IDAT data */
|
||||||
|
|
||||||
|
if ((rc = writepng_init(&wpng_info)) != 0) {
|
||||||
|
switch (rc) {
|
||||||
|
case 2:
|
||||||
|
fprintf(stderr, PROGNAME
|
||||||
|
": libpng initialization problem (longjmp)\n");
|
||||||
|
break;
|
||||||
|
case 4:
|
||||||
|
fprintf(stderr, PROGNAME ": insufficient memory\n");
|
||||||
|
break;
|
||||||
|
case 11:
|
||||||
|
fprintf(stderr, PROGNAME
|
||||||
|
": internal logic error (unexpected PNM type)\n");
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
fprintf(stderr, PROGNAME
|
||||||
|
": unknown writepng_init() error\n");
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
exit(rc);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* free textbuf, since it's a completely local variable and all text info
|
||||||
|
* has just been written to the PNG file */
|
||||||
|
|
||||||
|
if (text && textbuf) {
|
||||||
|
free(textbuf);
|
||||||
|
textbuf = NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* calculate rowbytes on basis of image type; note that this becomes much
|
||||||
|
* more complicated if we choose to support PBM type, ASCII PNM types, or
|
||||||
|
* 16-bit-per-sample binary data [currently not an official NetPBM type] */
|
||||||
|
|
||||||
|
if (wpng_info.pnmtype == 5)
|
||||||
|
rowbytes = wpng_info.width;
|
||||||
|
else if (wpng_info.pnmtype == 6)
|
||||||
|
rowbytes = wpng_info.width * 3;
|
||||||
|
else /* if (wpng_info.pnmtype == 8) */
|
||||||
|
rowbytes = wpng_info.width * 4;
|
||||||
|
|
||||||
|
|
||||||
|
/* read and write the image, either in its entirety (if writing interlaced
|
||||||
|
* PNG) or row by row (if non-interlaced) */
|
||||||
|
|
||||||
|
fprintf(stderr, "Encoding image data...\n");
|
||||||
|
fflush(stderr);
|
||||||
|
|
||||||
|
if (wpng_info.interlaced) {
|
||||||
|
long i;
|
||||||
|
ulg bytes;
|
||||||
|
ulg image_bytes = rowbytes * wpng_info.height; /* overflow? */
|
||||||
|
|
||||||
|
wpng_info.image_data = (uch *)malloc(image_bytes);
|
||||||
|
wpng_info.row_pointers = (uch **)malloc(wpng_info.height*sizeof(uch *));
|
||||||
|
if (wpng_info.image_data == NULL || wpng_info.row_pointers == NULL) {
|
||||||
|
fprintf(stderr, PROGNAME ": insufficient memory for image data\n");
|
||||||
|
writepng_cleanup(&wpng_info);
|
||||||
|
wpng_cleanup();
|
||||||
|
exit(5);
|
||||||
|
}
|
||||||
|
for (i = 0; i < wpng_info.height; ++i)
|
||||||
|
wpng_info.row_pointers[i] = wpng_info.image_data + i*rowbytes;
|
||||||
|
bytes = fread(wpng_info.image_data, 1, image_bytes, wpng_info.infile);
|
||||||
|
if (bytes != image_bytes) {
|
||||||
|
fprintf(stderr, PROGNAME ": expected %lu bytes, got %lu bytes\n",
|
||||||
|
image_bytes, bytes);
|
||||||
|
fprintf(stderr, " (continuing anyway)\n");
|
||||||
|
}
|
||||||
|
if (writepng_encode_image(&wpng_info) != 0) {
|
||||||
|
fprintf(stderr, PROGNAME
|
||||||
|
": libpng problem (longjmp) while writing image data\n");
|
||||||
|
writepng_cleanup(&wpng_info);
|
||||||
|
wpng_cleanup();
|
||||||
|
exit(2);
|
||||||
|
}
|
||||||
|
|
||||||
|
} else /* not interlaced: write progressively (row by row) */ {
|
||||||
|
long j;
|
||||||
|
ulg bytes;
|
||||||
|
|
||||||
|
wpng_info.image_data = (uch *)malloc(rowbytes);
|
||||||
|
if (wpng_info.image_data == NULL) {
|
||||||
|
fprintf(stderr, PROGNAME ": insufficient memory for row data\n");
|
||||||
|
writepng_cleanup(&wpng_info);
|
||||||
|
wpng_cleanup();
|
||||||
|
exit(5);
|
||||||
|
}
|
||||||
|
error = 0;
|
||||||
|
for (j = wpng_info.height; j > 0L; --j) {
|
||||||
|
bytes = fread(wpng_info.image_data, 1, rowbytes, wpng_info.infile);
|
||||||
|
if (bytes != rowbytes) {
|
||||||
|
fprintf(stderr, PROGNAME
|
||||||
|
": expected %lu bytes, got %lu bytes (row %ld)\n", rowbytes,
|
||||||
|
bytes, wpng_info.height-j);
|
||||||
|
++error;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
if (writepng_encode_row(&wpng_info) != 0) {
|
||||||
|
fprintf(stderr, PROGNAME
|
||||||
|
": libpng problem (longjmp) while writing row %ld\n",
|
||||||
|
wpng_info.height-j);
|
||||||
|
++error;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (error) {
|
||||||
|
writepng_cleanup(&wpng_info);
|
||||||
|
wpng_cleanup();
|
||||||
|
exit(2);
|
||||||
|
}
|
||||||
|
if (writepng_encode_finish(&wpng_info) != 0) {
|
||||||
|
fprintf(stderr, PROGNAME ": error on final libpng call\n");
|
||||||
|
writepng_cleanup(&wpng_info);
|
||||||
|
wpng_cleanup();
|
||||||
|
exit(2);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* OK, we're done (successfully): clean up all resources and quit */
|
||||||
|
|
||||||
|
fprintf(stderr, "Done.\n");
|
||||||
|
fflush(stderr);
|
||||||
|
|
||||||
|
writepng_cleanup(&wpng_info);
|
||||||
|
wpng_cleanup();
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
static int wpng_isvalid_latin1(uch *p, int len)
|
||||||
|
{
|
||||||
|
int i, result = -1;
|
||||||
|
|
||||||
|
for (i = 0; i < len; ++i) {
|
||||||
|
if (p[i] == 10 || (p[i] > 31 && p[i] < 127) || p[i] > 160)
|
||||||
|
continue; /* character is completely OK */
|
||||||
|
if (result < 0 || (p[result] != 27 && p[i] == 27))
|
||||||
|
result = i; /* mark location of first questionable one */
|
||||||
|
} /* or of first escape character (bad) */
|
||||||
|
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
static void wpng_cleanup(void)
|
||||||
|
{
|
||||||
|
if (wpng_info.outfile) {
|
||||||
|
fclose(wpng_info.outfile);
|
||||||
|
wpng_info.outfile = NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (wpng_info.infile) {
|
||||||
|
fclose(wpng_info.infile);
|
||||||
|
wpng_info.infile = NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (wpng_info.image_data) {
|
||||||
|
free(wpng_info.image_data);
|
||||||
|
wpng_info.image_data = NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (wpng_info.row_pointers) {
|
||||||
|
free(wpng_info.row_pointers);
|
||||||
|
wpng_info.row_pointers = NULL;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
#ifdef DOS_OS2_W32
|
||||||
|
|
||||||
|
static char *dos_kbd_gets(char *buf, int len)
|
||||||
|
{
|
||||||
|
int ch, count=0;
|
||||||
|
|
||||||
|
do {
|
||||||
|
buf[count++] = ch = getche();
|
||||||
|
} while (ch != '\r' && count < len-1);
|
||||||
|
|
||||||
|
buf[count--] = '\0'; /* terminate string */
|
||||||
|
if (buf[count] == '\r') /* Enter key makes CR, so change to newline */
|
||||||
|
buf[count] = '\n';
|
||||||
|
|
||||||
|
fprintf(stderr, "\n"); /* Enter key does *not* cause a newline */
|
||||||
|
fflush(stderr);
|
||||||
|
|
||||||
|
return buf;
|
||||||
|
}
|
||||||
|
|
||||||
|
#endif /* DOS_OS2_W32 */
|
392
dependencies/libpng/src/contrib/gregbook/writepng.c
vendored
Normal file
@ -0,0 +1,392 @@
|
|||||||
|
/*---------------------------------------------------------------------------
|
||||||
|
|
||||||
|
wpng - simple PNG-writing program writepng.c
|
||||||
|
|
||||||
|
---------------------------------------------------------------------------
|
||||||
|
|
||||||
|
Copyright (c) 1998-2007 Greg Roelofs. All rights reserved.
|
||||||
|
|
||||||
|
This software is provided "as is," without warranty of any kind,
|
||||||
|
express or implied. In no event shall the author or contributors
|
||||||
|
be held liable for any damages arising in any way from the use of
|
||||||
|
this software.
|
||||||
|
|
||||||
|
The contents of this file are DUAL-LICENSED. You may modify and/or
|
||||||
|
redistribute this software according to the terms of one of the
|
||||||
|
following two licenses (at your option):
|
||||||
|
|
||||||
|
|
||||||
|
LICENSE 1 ("BSD-like with advertising clause"):
|
||||||
|
|
||||||
|
Permission is granted to anyone to use this software for any purpose,
|
||||||
|
including commercial applications, and to alter it and redistribute
|
||||||
|
it freely, subject to the following restrictions:
|
||||||
|
|
||||||
|
1. Redistributions of source code must retain the above copyright
|
||||||
|
notice, disclaimer, and this list of conditions.
|
||||||
|
2. Redistributions in binary form must reproduce the above copyright
|
||||||
|
notice, disclaimer, and this list of conditions in the documenta-
|
||||||
|
tion and/or other materials provided with the distribution.
|
||||||
|
3. All advertising materials mentioning features or use of this
|
||||||
|
software must display the following acknowledgment:
|
||||||
|
|
||||||
|
This product includes software developed by Greg Roelofs
|
||||||
|
and contributors for the book, "PNG: The Definitive Guide,"
|
||||||
|
published by O'Reilly and Associates.
|
||||||
|
|
||||||
|
|
||||||
|
LICENSE 2 (GNU GPL v2 or later):
|
||||||
|
|
||||||
|
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 2 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, write to the Free Software Foundation,
|
||||||
|
Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
|
|
||||||
|
---------------------------------------------------------------------------*/
|
||||||
|
|
||||||
|
|
||||||
|
#include <stdlib.h> /* for exit() prototype */
|
||||||
|
|
||||||
|
#include "png.h" /* libpng header; includes zlib.h and setjmp.h */
|
||||||
|
#include "writepng.h" /* typedefs, common macros, public prototypes */
|
||||||
|
|
||||||
|
|
||||||
|
/* local prototype */
|
||||||
|
|
||||||
|
static void writepng_error_handler(png_structp png_ptr, png_const_charp msg);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
void writepng_version_info(void)
|
||||||
|
{
|
||||||
|
fprintf(stderr, " Compiled with libpng %s; using libpng %s.\n",
|
||||||
|
PNG_LIBPNG_VER_STRING, png_libpng_ver);
|
||||||
|
fprintf(stderr, " Compiled with zlib %s; using zlib %s.\n",
|
||||||
|
ZLIB_VERSION, zlib_version);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/* returns 0 for success, 2 for libpng problem, 4 for out of memory, 11 for
|
||||||
|
* unexpected pnmtype; note that outfile might be stdout */
|
||||||
|
|
||||||
|
int writepng_init(mainprog_info *mainprog_ptr)
|
||||||
|
{
|
||||||
|
png_structp png_ptr; /* note: temporary variables! */
|
||||||
|
png_infop info_ptr;
|
||||||
|
int color_type, interlace_type;
|
||||||
|
|
||||||
|
|
||||||
|
/* could also replace libpng warning-handler (final NULL), but no need: */
|
||||||
|
|
||||||
|
png_ptr = png_create_write_struct(PNG_LIBPNG_VER_STRING, mainprog_ptr,
|
||||||
|
writepng_error_handler, NULL);
|
||||||
|
if (!png_ptr)
|
||||||
|
return 4; /* out of memory */
|
||||||
|
|
||||||
|
info_ptr = png_create_info_struct(png_ptr);
|
||||||
|
if (!info_ptr) {
|
||||||
|
png_destroy_write_struct(&png_ptr, NULL);
|
||||||
|
return 4; /* out of memory */
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* setjmp() must be called in every function that calls a PNG-writing
|
||||||
|
* libpng function, unless an alternate error handler was installed--
|
||||||
|
* but compatible error handlers must either use longjmp() themselves
|
||||||
|
* (as in this program) or exit immediately, so here we go: */
|
||||||
|
|
||||||
|
if (setjmp(mainprog_ptr->jmpbuf)) {
|
||||||
|
png_destroy_write_struct(&png_ptr, &info_ptr);
|
||||||
|
return 2;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* make sure outfile is (re)opened in BINARY mode */
|
||||||
|
|
||||||
|
png_init_io(png_ptr, mainprog_ptr->outfile);
|
||||||
|
|
||||||
|
|
||||||
|
/* set the compression levels--in general, always want to leave filtering
|
||||||
|
* turned on (except for palette images) and allow all of the filters,
|
||||||
|
* which is the default; want 32K zlib window, unless entire image buffer
|
||||||
|
* is 16K or smaller (unknown here)--also the default; usually want max
|
||||||
|
* compression (NOT the default); and remaining compression flags should
|
||||||
|
* be left alone */
|
||||||
|
|
||||||
|
png_set_compression_level(png_ptr, Z_BEST_COMPRESSION);
|
||||||
|
/*
|
||||||
|
>> this is default for no filtering; Z_FILTERED is default otherwise:
|
||||||
|
png_set_compression_strategy(png_ptr, Z_DEFAULT_STRATEGY);
|
||||||
|
>> these are all defaults:
|
||||||
|
png_set_compression_mem_level(png_ptr, 8);
|
||||||
|
png_set_compression_window_bits(png_ptr, 15);
|
||||||
|
png_set_compression_method(png_ptr, 8);
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
/* set the image parameters appropriately */
|
||||||
|
|
||||||
|
if (mainprog_ptr->pnmtype == 5)
|
||||||
|
color_type = PNG_COLOR_TYPE_GRAY;
|
||||||
|
else if (mainprog_ptr->pnmtype == 6)
|
||||||
|
color_type = PNG_COLOR_TYPE_RGB;
|
||||||
|
else if (mainprog_ptr->pnmtype == 8)
|
||||||
|
color_type = PNG_COLOR_TYPE_RGB_ALPHA;
|
||||||
|
else {
|
||||||
|
png_destroy_write_struct(&png_ptr, &info_ptr);
|
||||||
|
return 11;
|
||||||
|
}
|
||||||
|
|
||||||
|
interlace_type = mainprog_ptr->interlaced? PNG_INTERLACE_ADAM7 :
|
||||||
|
PNG_INTERLACE_NONE;
|
||||||
|
|
||||||
|
png_set_IHDR(png_ptr, info_ptr, mainprog_ptr->width, mainprog_ptr->height,
|
||||||
|
mainprog_ptr->sample_depth, color_type, interlace_type,
|
||||||
|
PNG_COMPRESSION_TYPE_DEFAULT, PNG_FILTER_TYPE_DEFAULT);
|
||||||
|
|
||||||
|
if (mainprog_ptr->gamma > 0.0)
|
||||||
|
png_set_gAMA(png_ptr, info_ptr, mainprog_ptr->gamma);
|
||||||
|
|
||||||
|
if (mainprog_ptr->have_bg) { /* we know it's RGBA, not gray+alpha */
|
||||||
|
png_color_16 background;
|
||||||
|
|
||||||
|
background.red = mainprog_ptr->bg_red;
|
||||||
|
background.green = mainprog_ptr->bg_green;
|
||||||
|
background.blue = mainprog_ptr->bg_blue;
|
||||||
|
png_set_bKGD(png_ptr, info_ptr, &background);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (mainprog_ptr->have_time) {
|
||||||
|
png_time modtime;
|
||||||
|
|
||||||
|
png_convert_from_time_t(&modtime, mainprog_ptr->modtime);
|
||||||
|
png_set_tIME(png_ptr, info_ptr, &modtime);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (mainprog_ptr->have_text) {
|
||||||
|
png_text text[6];
|
||||||
|
int num_text = 0;
|
||||||
|
|
||||||
|
if (mainprog_ptr->have_text & TEXT_TITLE) {
|
||||||
|
text[num_text].compression = PNG_TEXT_COMPRESSION_NONE;
|
||||||
|
text[num_text].key = "Title";
|
||||||
|
text[num_text].text = mainprog_ptr->title;
|
||||||
|
++num_text;
|
||||||
|
}
|
||||||
|
if (mainprog_ptr->have_text & TEXT_AUTHOR) {
|
||||||
|
text[num_text].compression = PNG_TEXT_COMPRESSION_NONE;
|
||||||
|
text[num_text].key = "Author";
|
||||||
|
text[num_text].text = mainprog_ptr->author;
|
||||||
|
++num_text;
|
||||||
|
}
|
||||||
|
if (mainprog_ptr->have_text & TEXT_DESC) {
|
||||||
|
text[num_text].compression = PNG_TEXT_COMPRESSION_NONE;
|
||||||
|
text[num_text].key = "Description";
|
||||||
|
text[num_text].text = mainprog_ptr->desc;
|
||||||
|
++num_text;
|
||||||
|
}
|
||||||
|
if (mainprog_ptr->have_text & TEXT_COPY) {
|
||||||
|
text[num_text].compression = PNG_TEXT_COMPRESSION_NONE;
|
||||||
|
text[num_text].key = "Copyright";
|
||||||
|
text[num_text].text = mainprog_ptr->copyright;
|
||||||
|
++num_text;
|
||||||
|
}
|
||||||
|
if (mainprog_ptr->have_text & TEXT_EMAIL) {
|
||||||
|
text[num_text].compression = PNG_TEXT_COMPRESSION_NONE;
|
||||||
|
text[num_text].key = "E-mail";
|
||||||
|
text[num_text].text = mainprog_ptr->email;
|
||||||
|
++num_text;
|
||||||
|
}
|
||||||
|
if (mainprog_ptr->have_text & TEXT_URL) {
|
||||||
|
text[num_text].compression = PNG_TEXT_COMPRESSION_NONE;
|
||||||
|
text[num_text].key = "URL";
|
||||||
|
text[num_text].text = mainprog_ptr->url;
|
||||||
|
++num_text;
|
||||||
|
}
|
||||||
|
png_set_text(png_ptr, info_ptr, text, num_text);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* write all chunks up to (but not including) first IDAT */
|
||||||
|
|
||||||
|
png_write_info(png_ptr, info_ptr);
|
||||||
|
|
||||||
|
|
||||||
|
/* if we wanted to write any more text info *after* the image data, we
|
||||||
|
* would set up text struct(s) here and call png_set_text() again, with
|
||||||
|
* just the new data; png_set_tIME() could also go here, but it would
|
||||||
|
* have no effect since we already called it above (only one tIME chunk
|
||||||
|
* allowed) */
|
||||||
|
|
||||||
|
|
||||||
|
/* set up the transformations: for now, just pack low-bit-depth pixels
|
||||||
|
* into bytes (one, two or four pixels per byte) */
|
||||||
|
|
||||||
|
png_set_packing(png_ptr);
|
||||||
|
/* png_set_shift(png_ptr, &sig_bit); to scale low-bit-depth values */
|
||||||
|
|
||||||
|
|
||||||
|
/* make sure we save our pointers for use in writepng_encode_image() */
|
||||||
|
|
||||||
|
mainprog_ptr->png_ptr = png_ptr;
|
||||||
|
mainprog_ptr->info_ptr = info_ptr;
|
||||||
|
|
||||||
|
|
||||||
|
/* OK, that's all we need to do for now; return happy */
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/* returns 0 for success, 2 for libpng (longjmp) problem */
|
||||||
|
|
||||||
|
int writepng_encode_image(mainprog_info *mainprog_ptr)
|
||||||
|
{
|
||||||
|
png_structp png_ptr = (png_structp)mainprog_ptr->png_ptr;
|
||||||
|
png_infop info_ptr = (png_infop)mainprog_ptr->info_ptr;
|
||||||
|
|
||||||
|
|
||||||
|
/* as always, setjmp() must be called in every function that calls a
|
||||||
|
* PNG-writing libpng function */
|
||||||
|
|
||||||
|
if (setjmp(mainprog_ptr->jmpbuf)) {
|
||||||
|
png_destroy_write_struct(&png_ptr, &info_ptr);
|
||||||
|
mainprog_ptr->png_ptr = NULL;
|
||||||
|
mainprog_ptr->info_ptr = NULL;
|
||||||
|
return 2;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* and now we just write the whole image; libpng takes care of interlacing
|
||||||
|
* for us */
|
||||||
|
|
||||||
|
png_write_image(png_ptr, mainprog_ptr->row_pointers);
|
||||||
|
|
||||||
|
|
||||||
|
/* since that's it, we also close out the end of the PNG file now--if we
|
||||||
|
* had any text or time info to write after the IDATs, second argument
|
||||||
|
* would be info_ptr, but we optimize slightly by sending NULL pointer: */
|
||||||
|
|
||||||
|
png_write_end(png_ptr, NULL);
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/* returns 0 if succeeds, 2 if libpng problem */
|
||||||
|
|
||||||
|
int writepng_encode_row(mainprog_info *mainprog_ptr) /* NON-interlaced only! */
|
||||||
|
{
|
||||||
|
png_structp png_ptr = (png_structp)mainprog_ptr->png_ptr;
|
||||||
|
png_infop info_ptr = (png_infop)mainprog_ptr->info_ptr;
|
||||||
|
|
||||||
|
|
||||||
|
/* as always, setjmp() must be called in every function that calls a
|
||||||
|
* PNG-writing libpng function */
|
||||||
|
|
||||||
|
if (setjmp(mainprog_ptr->jmpbuf)) {
|
||||||
|
png_destroy_write_struct(&png_ptr, &info_ptr);
|
||||||
|
mainprog_ptr->png_ptr = NULL;
|
||||||
|
mainprog_ptr->info_ptr = NULL;
|
||||||
|
return 2;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* image_data points at our one row of image data */
|
||||||
|
|
||||||
|
png_write_row(png_ptr, mainprog_ptr->image_data);
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/* returns 0 if succeeds, 2 if libpng problem */
|
||||||
|
|
||||||
|
int writepng_encode_finish(mainprog_info *mainprog_ptr) /* NON-interlaced! */
|
||||||
|
{
|
||||||
|
png_structp png_ptr = (png_structp)mainprog_ptr->png_ptr;
|
||||||
|
png_infop info_ptr = (png_infop)mainprog_ptr->info_ptr;
|
||||||
|
|
||||||
|
|
||||||
|
/* as always, setjmp() must be called in every function that calls a
|
||||||
|
* PNG-writing libpng function */
|
||||||
|
|
||||||
|
if (setjmp(mainprog_ptr->jmpbuf)) {
|
||||||
|
png_destroy_write_struct(&png_ptr, &info_ptr);
|
||||||
|
mainprog_ptr->png_ptr = NULL;
|
||||||
|
mainprog_ptr->info_ptr = NULL;
|
||||||
|
return 2;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* close out PNG file; if we had any text or time info to write after
|
||||||
|
* the IDATs, second argument would be info_ptr: */
|
||||||
|
|
||||||
|
png_write_end(png_ptr, NULL);
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
void writepng_cleanup(mainprog_info *mainprog_ptr)
|
||||||
|
{
|
||||||
|
png_structp png_ptr = (png_structp)mainprog_ptr->png_ptr;
|
||||||
|
png_infop info_ptr = (png_infop)mainprog_ptr->info_ptr;
|
||||||
|
|
||||||
|
if (png_ptr && info_ptr)
|
||||||
|
png_destroy_write_struct(&png_ptr, &info_ptr);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
static void writepng_error_handler(png_structp png_ptr, png_const_charp msg)
|
||||||
|
{
|
||||||
|
mainprog_info *mainprog_ptr;
|
||||||
|
|
||||||
|
/* This function, aside from the extra step of retrieving the "error
|
||||||
|
* pointer" (below) and the fact that it exists within the application
|
||||||
|
* rather than within libpng, is essentially identical to libpng's
|
||||||
|
* default error handler. The second point is critical: since both
|
||||||
|
* setjmp() and longjmp() are called from the same code, they are
|
||||||
|
* guaranteed to have compatible notions of how big a jmp_buf is,
|
||||||
|
* regardless of whether _BSD_SOURCE or anything else has (or has not)
|
||||||
|
* been defined. */
|
||||||
|
|
||||||
|
fprintf(stderr, "writepng libpng error: %s\n", msg);
|
||||||
|
fflush(stderr);
|
||||||
|
|
||||||
|
mainprog_ptr = png_get_error_ptr(png_ptr);
|
||||||
|
if (mainprog_ptr == NULL) { /* we are completely hosed now */
|
||||||
|
fprintf(stderr,
|
||||||
|
"writepng severe error: jmpbuf not recoverable; terminating.\n");
|
||||||
|
fflush(stderr);
|
||||||
|
exit(99);
|
||||||
|
}
|
||||||
|
|
||||||
|
longjmp(mainprog_ptr->jmpbuf, 1);
|
||||||
|
}
|
133
dependencies/libpng/src/contrib/gregbook/writepng.h
vendored
Normal file
@ -0,0 +1,133 @@
|
|||||||
|
/*---------------------------------------------------------------------------
|
||||||
|
|
||||||
|
wpng - simple PNG-writing program writepng.h
|
||||||
|
|
||||||
|
---------------------------------------------------------------------------
|
||||||
|
|
||||||
|
Copyright (c) 1998-2007 Greg Roelofs. All rights reserved.
|
||||||
|
|
||||||
|
This software is provided "as is," without warranty of any kind,
|
||||||
|
express or implied. In no event shall the author or contributors
|
||||||
|
be held liable for any damages arising in any way from the use of
|
||||||
|
this software.
|
||||||
|
|
||||||
|
The contents of this file are DUAL-LICENSED. You may modify and/or
|
||||||
|
redistribute this software according to the terms of one of the
|
||||||
|
following two licenses (at your option):
|
||||||
|
|
||||||
|
|
||||||
|
LICENSE 1 ("BSD-like with advertising clause"):
|
||||||
|
|
||||||
|
Permission is granted to anyone to use this software for any purpose,
|
||||||
|
including commercial applications, and to alter it and redistribute
|
||||||
|
it freely, subject to the following restrictions:
|
||||||
|
|
||||||
|
1. Redistributions of source code must retain the above copyright
|
||||||
|
notice, disclaimer, and this list of conditions.
|
||||||
|
2. Redistributions in binary form must reproduce the above copyright
|
||||||
|
notice, disclaimer, and this list of conditions in the documenta-
|
||||||
|
tion and/or other materials provided with the distribution.
|
||||||
|
3. All advertising materials mentioning features or use of this
|
||||||
|
software must display the following acknowledgment:
|
||||||
|
|
||||||
|
This product includes software developed by Greg Roelofs
|
||||||
|
and contributors for the book, "PNG: The Definitive Guide,"
|
||||||
|
published by O'Reilly and Associates.
|
||||||
|
|
||||||
|
|
||||||
|
LICENSE 2 (GNU GPL v2 or later):
|
||||||
|
|
||||||
|
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 2 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, write to the Free Software Foundation,
|
||||||
|
Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
|
|
||||||
|
---------------------------------------------------------------------------*/
|
||||||
|
|
||||||
|
#ifndef TRUE
|
||||||
|
# define TRUE 1
|
||||||
|
# define FALSE 0
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifndef MAX
|
||||||
|
# define MAX(a,b) ((a) > (b)? (a) : (b))
|
||||||
|
# define MIN(a,b) ((a) < (b)? (a) : (b))
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifdef DEBUG
|
||||||
|
# define Trace(x) {fprintf x ; fflush(stderr); fflush(stdout);}
|
||||||
|
#else
|
||||||
|
# define Trace(x) ;
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#define TEXT_TITLE 0x01
|
||||||
|
#define TEXT_AUTHOR 0x02
|
||||||
|
#define TEXT_DESC 0x04
|
||||||
|
#define TEXT_COPY 0x08
|
||||||
|
#define TEXT_EMAIL 0x10
|
||||||
|
#define TEXT_URL 0x20
|
||||||
|
|
||||||
|
#define TEXT_TITLE_OFFSET 0
|
||||||
|
#define TEXT_AUTHOR_OFFSET 72
|
||||||
|
#define TEXT_COPY_OFFSET (2*72)
|
||||||
|
#define TEXT_EMAIL_OFFSET (3*72)
|
||||||
|
#define TEXT_URL_OFFSET (4*72)
|
||||||
|
#define TEXT_DESC_OFFSET (5*72)
|
||||||
|
|
||||||
|
typedef unsigned char uch;
|
||||||
|
typedef unsigned short ush;
|
||||||
|
typedef unsigned long ulg;
|
||||||
|
|
||||||
|
typedef struct _mainprog_info {
|
||||||
|
double gamma;
|
||||||
|
long width;
|
||||||
|
long height;
|
||||||
|
time_t modtime;
|
||||||
|
FILE *infile;
|
||||||
|
FILE *outfile;
|
||||||
|
void *png_ptr;
|
||||||
|
void *info_ptr;
|
||||||
|
uch *image_data;
|
||||||
|
uch **row_pointers;
|
||||||
|
char *title;
|
||||||
|
char *author;
|
||||||
|
char *desc;
|
||||||
|
char *copyright;
|
||||||
|
char *email;
|
||||||
|
char *url;
|
||||||
|
int filter; /* command-line-filter flag, not PNG row filter! */
|
||||||
|
int pnmtype;
|
||||||
|
int sample_depth;
|
||||||
|
int interlaced;
|
||||||
|
int have_bg;
|
||||||
|
int have_time;
|
||||||
|
int have_text;
|
||||||
|
jmp_buf jmpbuf;
|
||||||
|
uch bg_red;
|
||||||
|
uch bg_green;
|
||||||
|
uch bg_blue;
|
||||||
|
} mainprog_info;
|
||||||
|
|
||||||
|
|
||||||
|
/* prototypes for public functions in writepng.c */
|
||||||
|
|
||||||
|
void writepng_version_info(void);
|
||||||
|
|
||||||
|
int writepng_init(mainprog_info *mainprog_ptr);
|
||||||
|
|
||||||
|
int writepng_encode_image(mainprog_info *mainprog_ptr);
|
||||||
|
|
||||||
|
int writepng_encode_row(mainprog_info *mainprog_ptr);
|
||||||
|
|
||||||
|
int writepng_encode_finish(mainprog_info *mainprog_ptr);
|
||||||
|
|
||||||
|
void writepng_cleanup(mainprog_info *mainprog_ptr);
|
9
dependencies/libpng/src/contrib/pngminim/decoder/README
vendored
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
This demonstrates the use of PNG_USER_CONFIG and pngusr.h
|
||||||
|
|
||||||
|
To build a minimal read-only decoder with embedded libpng and zlib, run
|
||||||
|
|
||||||
|
gather.sh # to collect needed files from pngminus, libpng, and zlib
|
||||||
|
make
|
||||||
|
|
||||||
|
If you prefer to use the shared libraries, go to contrib/pngminus
|
||||||
|
and build the png2pnm application there.
|
8
dependencies/libpng/src/contrib/pngminim/decoder/gather.sh
vendored
Executable file
@ -0,0 +1,8 @@
|
|||||||
|
cp ../../pngminus/png2pnm.c pngm2pnm.c
|
||||||
|
cp ../../../*.h .
|
||||||
|
cp ../../../*.c .
|
||||||
|
rm -f example.c pngtest.c pngpread.c pngw*.c pnggccrd.c pngvcrd.c
|
||||||
|
# change the following 2 lines if zlib is somewhere else
|
||||||
|
cp ../../../../zlib/*.h .
|
||||||
|
cp ../../../../zlib/*.c .
|
||||||
|
rm minigzip.c example.c compress.c deflate.c gz*
|
44
dependencies/libpng/src/contrib/pngminim/decoder/makefile
vendored
Normal file
@ -0,0 +1,44 @@
|
|||||||
|
# Makefile for PngMinus (pngm2pnm)
|
||||||
|
# Linux / Unix
|
||||||
|
|
||||||
|
#CC=cc
|
||||||
|
CC=gcc
|
||||||
|
LD=$(CC)
|
||||||
|
|
||||||
|
RM=rm -f
|
||||||
|
|
||||||
|
CFLAGS=-DPNG_USER_CONFIG -DNO_GZCOMPRESS -DNO_GZIP -DZ_SOLO \
|
||||||
|
-DdeflateParams\(a,b,c\)=Z_OK -I. -O1
|
||||||
|
|
||||||
|
C=.c
|
||||||
|
O=.o
|
||||||
|
L=.a
|
||||||
|
E=
|
||||||
|
|
||||||
|
ZOBJS = adler32$(O) crc32$(O) \
|
||||||
|
infback$(O) inffast$(O) inflate$(O) inftrees$(O) \
|
||||||
|
trees$(O) uncompr$(O) zutil$(O)
|
||||||
|
|
||||||
|
OBJS = pngm2pnm$(O) png$(O) pngerror$(O) pngget$(O) pngmem$(O) \
|
||||||
|
pngread$(O) pngrio$(O) pngrtran$(O) pngrutil$(O) \
|
||||||
|
pngset$(O) pngtrans$(O) $(ZOBJS)
|
||||||
|
|
||||||
|
# implicit make rules -------------------------------------------------------
|
||||||
|
|
||||||
|
.c$(O): png.h pngconf.h pngusr.h zlib.h
|
||||||
|
$(CC) -c $(CFLAGS) $<
|
||||||
|
|
||||||
|
# dependencies
|
||||||
|
|
||||||
|
all: pngm2pnm$(E)
|
||||||
|
|
||||||
|
pngm2pnm$(E): $(OBJS)
|
||||||
|
$(LD) -o pngm2pnm$(E) $(OBJS)
|
||||||
|
strip pngm2pnm$(E)
|
||||||
|
|
||||||
|
clean:
|
||||||
|
$(RM) pngm2pnm$(O)
|
||||||
|
$(RM) pngm2pnm$(E)
|
||||||
|
$(RM) $(OBJS)
|
||||||
|
|
||||||
|
# End of makefile for pngm2pnm
|
78
dependencies/libpng/src/contrib/pngminim/decoder/pngusr.h
vendored
Normal file
@ -0,0 +1,78 @@
|
|||||||
|
/* minrdpngconf.h: headers to make a minimal png-read-only library
|
||||||
|
*
|
||||||
|
* Copyright (c) 2007, 2009 Glenn Randers-Pehrson
|
||||||
|
*
|
||||||
|
* This code is released under the libpng license.
|
||||||
|
* For conditions of distribution and use, see the disclaimer
|
||||||
|
* and license in png.h
|
||||||
|
*
|
||||||
|
* Derived from pngcrush.h, Copyright 1998-2007, Glenn Randers-Pehrson
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef MINRDPNGCONF_H
|
||||||
|
#define MINRDPNGCONF_H
|
||||||
|
|
||||||
|
#ifdef NJET
|
||||||
|
/* No 16-bit support beyond reading with strip_16 */
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#define PNG_NO_GLOBAL_ARRAYS
|
||||||
|
|
||||||
|
#define PNG_NO_WARNINGS
|
||||||
|
#define png_warning(s1,s2) ""
|
||||||
|
#define png_chunk_warning(s1,s2) ""
|
||||||
|
#define PNG_NO_ERROR_TEXT
|
||||||
|
#define png_error(s1,s2) png_err(s1)
|
||||||
|
#define png_chunk_error(s1,s2) png_err(s1)
|
||||||
|
|
||||||
|
#define PNG_NO_ASSEMBLER_CODE
|
||||||
|
#define PNG_NO_OPTIMIZED_CODE
|
||||||
|
#define PNG_NO_READ_GAMMA
|
||||||
|
#define PNG_NO_READ_BACKGROUND
|
||||||
|
#define PNG_NO_READ_DITHER
|
||||||
|
#define PNG_NO_READ_INVERT
|
||||||
|
#define PNG_NO_READ_SHIFT
|
||||||
|
#define PNG_NO_READ_PACK
|
||||||
|
#define PNG_NO_READ_PACKSWAP
|
||||||
|
#define PNG_NO_READ_FILLER
|
||||||
|
#define PNG_NO_READ_SWAP
|
||||||
|
#define PNG_NO_READ_SWAP_ALPHA
|
||||||
|
#define PNG_NO_READ_INVERT_ALPHA
|
||||||
|
#define PNG_NO_READ_RGB_TO_GRAY
|
||||||
|
#define PNG_NO_READ_USER_TRANSFORM
|
||||||
|
#define PNG_NO_READ_bKGD
|
||||||
|
#define PNG_NO_READ_cHRM
|
||||||
|
#define PNG_NO_READ_gAMA
|
||||||
|
#define PNG_NO_READ_hIST
|
||||||
|
#define PNG_NO_READ_iCCP
|
||||||
|
#define PNG_NO_READ_pCAL
|
||||||
|
#define PNG_NO_READ_pHYs
|
||||||
|
#define PNG_NO_READ_sBIT
|
||||||
|
#define PNG_NO_READ_sCAL
|
||||||
|
#define PNG_NO_READ_sPLT
|
||||||
|
#define PNG_NO_READ_sRGB
|
||||||
|
#define PNG_NO_READ_TEXT
|
||||||
|
#define PNG_NO_READ_tIME
|
||||||
|
#define PNG_NO_READ_UNKNOWN_CHUNKS
|
||||||
|
#define PNG_NO_READ_USER_CHUNKS
|
||||||
|
#define PNG_NO_READ_EMPTY_PLTE
|
||||||
|
#define PNG_NO_READ_OPT_PLTE
|
||||||
|
#define PNG_NO_READ_STRIP_ALPHA
|
||||||
|
#define PNG_NO_READ_oFFs
|
||||||
|
#define PNG_NO_WARN_UNINITIALIZED_ROW
|
||||||
|
|
||||||
|
#define PNG_NO_WRITE_SUPPORTED
|
||||||
|
|
||||||
|
#define PNG_NO_INFO_IMAGE
|
||||||
|
#define PNG_NO_USER_MEM
|
||||||
|
#define PNG_NO_FIXED_POINT_SUPPORTED
|
||||||
|
#define PNG_NO_MNG_FEATURES
|
||||||
|
#define PNG_NO_USER_TRANSFORM_PTR
|
||||||
|
#define PNG_NO_HANDLE_AS_UNKNOWN
|
||||||
|
#define PNG_NO_CONSOLE_IO
|
||||||
|
#define PNG_NO_ZALLOC_ZERO
|
||||||
|
#define PNG_NO_ERROR_NUMBERS
|
||||||
|
#define PNG_NO_EASY_ACCESS
|
||||||
|
#define PNG_NO_PROGRESSIVE_READ
|
||||||
|
|
||||||
|
#endif /* MINRDPNGCONF_H */
|
9
dependencies/libpng/src/contrib/pngminim/encoder/README
vendored
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
This demonstrates the use of PNG_USER_CONFIG and pngusr.h
|
||||||
|
|
||||||
|
To build a minimal write-only encoder with embedded libpng and zlib, run
|
||||||
|
|
||||||
|
gather.sh # to collect needed files from pngminus, libpng, and zlib
|
||||||
|
make
|
||||||
|
|
||||||
|
If you prefer to use the shared libraries, go to contrib/pngminus
|
||||||
|
and build the pnm2png application there.
|
27
dependencies/libpng/src/contrib/pngminim/encoder/dummy_inflate.c
vendored
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
#include "zlib.h"
|
||||||
|
|
||||||
|
int ZEXPORT inflate(strm, flush)
|
||||||
|
z_streamp strm;
|
||||||
|
int flush;
|
||||||
|
{ return Z_OK ; }
|
||||||
|
|
||||||
|
int ZEXPORT inflateReset(strm)
|
||||||
|
z_streamp strm;
|
||||||
|
{ return Z_OK ; }
|
||||||
|
|
||||||
|
int ZEXPORT inflateEnd(strm)
|
||||||
|
z_streamp strm;
|
||||||
|
{ return Z_STREAM_ERROR ; }
|
||||||
|
|
||||||
|
int ZEXPORT inflateInit_(strm, version, stream_size)
|
||||||
|
z_streamp strm;
|
||||||
|
const char *version;
|
||||||
|
int stream_size;
|
||||||
|
{ return Z_OK ; }
|
||||||
|
|
||||||
|
int ZEXPORT inflateInit2_(strm, windowBits, version, stream_size)
|
||||||
|
z_streamp strm;
|
||||||
|
int windowBits;
|
||||||
|
const char *version;
|
||||||
|
int stream_size;
|
||||||
|
{ return Z_STREAM_ERROR ; }
|
9
dependencies/libpng/src/contrib/pngminim/encoder/gather.sh
vendored
Executable file
@ -0,0 +1,9 @@
|
|||||||
|
cp ../../pngminus/pnm2png.c pnm2pngm.c
|
||||||
|
cp ../../../*.h .
|
||||||
|
cp ../../../*.c .
|
||||||
|
rm -f example.c pngtest.c pngpread.c pngr*.c pnggccrd.c pngvcrd.c
|
||||||
|
# Change the next 2 lines if zlib is somewhere else.
|
||||||
|
cp ../../../../zlib/*.h .
|
||||||
|
cp ../../../../zlib/*.c .
|
||||||
|
rm inf*.[ch]
|
||||||
|
rm minigzip.c example.c gz*
|
43
dependencies/libpng/src/contrib/pngminim/encoder/makefile
vendored
Normal file
@ -0,0 +1,43 @@
|
|||||||
|
# Makefile for PngMinus (pnm2pngm)
|
||||||
|
# Linux / Unix
|
||||||
|
|
||||||
|
#CC=cc
|
||||||
|
CC=gcc
|
||||||
|
LD=$(CC)
|
||||||
|
|
||||||
|
RM=rm -f
|
||||||
|
|
||||||
|
CFLAGS=-DPNG_USER_CONFIG -DNO_GZIP -DZ_SOLO -I. -O1
|
||||||
|
|
||||||
|
C=.c
|
||||||
|
O=.o
|
||||||
|
L=.a
|
||||||
|
E=
|
||||||
|
|
||||||
|
ZOBJS = adler32$(O) compress$(O) crc32$(O) deflate$(O) \
|
||||||
|
dummy_inflate$(O) \
|
||||||
|
trees$(O) uncompr$(O) zutil$(O)
|
||||||
|
|
||||||
|
OBJS = pnm2pngm$(O) png$(O) pngerror$(O) pngget$(O) pngmem$(O) \
|
||||||
|
pngset$(O) pngtrans$(O) pngwio$(O) pngwrite$(O) \
|
||||||
|
pngwtran$(O) pngwutil$(O) $(ZOBJS)
|
||||||
|
|
||||||
|
# implicit make rules -------------------------------------------------------
|
||||||
|
|
||||||
|
.c$(O): png.h pngconf.h pngusr.h zlib.h
|
||||||
|
$(CC) -c $(CFLAGS) $<
|
||||||
|
|
||||||
|
# dependencies
|
||||||
|
|
||||||
|
all: pnm2pngm$(E)
|
||||||
|
|
||||||
|
pnm2pngm$(E): $(OBJS)
|
||||||
|
$(LD) -o pnm2pngm$(E) $(OBJS)
|
||||||
|
strip pnm2pngm$(E)
|
||||||
|
|
||||||
|
clean:
|
||||||
|
$(RM) pnm2pngm$(O)
|
||||||
|
$(RM) pnm2pngm$(E)
|
||||||
|
$(RM) $(OBJS)
|
||||||
|
|
||||||
|
# End of makefile for pnm2pngm
|
73
dependencies/libpng/src/contrib/pngminim/encoder/pngusr.h
vendored
Normal file
@ -0,0 +1,73 @@
|
|||||||
|
/* minwrpngconf.h: headers to make a minimal png-write-only library
|
||||||
|
*
|
||||||
|
* Copyright (c) 2007, 2009 Glenn Randers-Pehrson
|
||||||
|
*
|
||||||
|
* This code is released under the libpng license.
|
||||||
|
* For conditions of distribution and use, see the disclaimer
|
||||||
|
* and license in png.h
|
||||||
|
*
|
||||||
|
* Derived from pngcrush.h, Copyright 1998-2007, Glenn Randers-Pehrson
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef MINWRPNGCONF_H
|
||||||
|
#define MINWRPNGCONF_H
|
||||||
|
|
||||||
|
#define PNG_NO_GLOBAL_ARRAYS
|
||||||
|
|
||||||
|
#define PNG_NO_READ_SUPPORTED
|
||||||
|
|
||||||
|
#define PNG_NO_WARNINGS
|
||||||
|
#define png_warning(s1,s2) ""
|
||||||
|
#define png_chunk_warning(s1,s2) ""
|
||||||
|
#define PNG_NO_ERROR_TEXT
|
||||||
|
#define png_error(s1,s2) png_err(s1)
|
||||||
|
#define png_chunk_error(s1,s2) png_err(s1)
|
||||||
|
|
||||||
|
#define PNG_NO_WRITE_BACKGROUND
|
||||||
|
#define PNG_NO_WRITE_GAMMA
|
||||||
|
#define PNG_NO_WRITE_DITHER
|
||||||
|
#define PNG_NO_WRITE_INVERT
|
||||||
|
#define PNG_NO_WRITE_SHIFT
|
||||||
|
#define PNG_NO_WRITE_PACK
|
||||||
|
#define PNG_NO_WRITE_PACKSWAP
|
||||||
|
#define PNG_NO_WRITE_FILLER
|
||||||
|
#define PNG_NO_WRITE_SWAP
|
||||||
|
#define PNG_NO_WRITE_SWAP_ALPHA
|
||||||
|
#define PNG_NO_WRITE_INVERT_ALPHA
|
||||||
|
#define PNG_NO_WRITE_RGB_TO_GRAY
|
||||||
|
#define PNG_NO_WRITE_USER_TRANSFORM
|
||||||
|
#define PNG_NO_WRITE_bKGD
|
||||||
|
#define PNG_NO_WRITE_cHRM
|
||||||
|
#define PNG_NO_WRITE_gAMA
|
||||||
|
#define PNG_NO_WRITE_hIST
|
||||||
|
#define PNG_NO_WRITE_iCCP
|
||||||
|
#define PNG_NO_WRITE_oFFs
|
||||||
|
#define PNG_NO_WRITE_pCAL
|
||||||
|
#define PNG_NO_WRITE_pHYs
|
||||||
|
#define PNG_NO_WRITE_sBIT
|
||||||
|
#define PNG_NO_WRITE_sCAL
|
||||||
|
#define PNG_NO_WRITE_sPLT
|
||||||
|
#define PNG_NO_WRITE_sRGB
|
||||||
|
#define PNG_NO_WRITE_TEXT
|
||||||
|
#define PNG_NO_WRITE_tIME
|
||||||
|
#define PNG_NO_WRITE_UNKNOWN_CHUNKS
|
||||||
|
#define PNG_NO_WRITE_USER_CHUNKS
|
||||||
|
#define PNG_NO_WRITE_EMPTY_PLTE
|
||||||
|
#define PNG_NO_WRITE_OPT_PLTE
|
||||||
|
#define PNG_NO_WRITE_FILTER
|
||||||
|
#define PNG_NO_WRITE_WEIGHTED_FILTER
|
||||||
|
#define PNG_NO_WRITE_INTERLACING_SUPPORTED
|
||||||
|
#define PNG_NO_WRITE_FLUSH
|
||||||
|
|
||||||
|
#define PNG_NO_INFO_IMAGE
|
||||||
|
#define PNG_NO_USER_MEM
|
||||||
|
#define PNG_NO_FIXED_POINT_SUPPORTED
|
||||||
|
#define PNG_NO_MNG_FEATURES
|
||||||
|
#define PNG_NO_USER_TRANSFORM_PTR
|
||||||
|
#define PNG_NO_HANDLE_AS_UNKNOWN
|
||||||
|
#define PNG_NO_CONSOLE_IO
|
||||||
|
#define PNG_NO_ZALLOC_ZERO
|
||||||
|
#define PNG_NO_ERROR_NUMBERS
|
||||||
|
#define PNG_NO_EASY_ACCESS
|
||||||
|
|
||||||
|
#endif /* MINWRPNGCONF_H */
|
14
dependencies/libpng/src/contrib/pngminim/preader/README
vendored
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
This demonstrates the use of PNG_USER_CONFIG and pngusr.h
|
||||||
|
|
||||||
|
To build a minimal read-only progressive decoder embedded libpng and
|
||||||
|
zlib and with your system's X library, run
|
||||||
|
|
||||||
|
gather.sh # to collect needed files from gregbook, libpng, and zlib
|
||||||
|
|
||||||
|
Edit makefile if required, to find your X library and include files,
|
||||||
|
then
|
||||||
|
|
||||||
|
make
|
||||||
|
|
||||||
|
If you prefer to use the shared libraries, go to contrib/gregbook
|
||||||
|
and build the rpng2-x application there.
|
9
dependencies/libpng/src/contrib/pngminim/preader/gather.sh
vendored
Executable file
@ -0,0 +1,9 @@
|
|||||||
|
cp ../../gregbook/rpng2-x.c ../../gregbook/readpng2.[ch] .
|
||||||
|
cp ../../gregbook/COPYING ../../gregbook/LICENSE .
|
||||||
|
cp ../../../*.h .
|
||||||
|
cp ../../../*.c .
|
||||||
|
rm -f example.c pngtest.c pngw*.c pnggccrd.c pngvcrd.c
|
||||||
|
# change the following 2 lines if zlib is somewhere else
|
||||||
|
cp ../../../../zlib/*.h .
|
||||||
|
cp ../../../../zlib/*.c .
|
||||||
|
rm minigzip.c example.c compress.c deflate.c gz*
|
60
dependencies/libpng/src/contrib/pngminim/preader/makefile
vendored
Normal file
@ -0,0 +1,60 @@
|
|||||||
|
# Makefile for PngMinus (rpng2)
|
||||||
|
# Linux / Unix
|
||||||
|
|
||||||
|
#CC=cc
|
||||||
|
CC=gcc
|
||||||
|
LD=$(CC)
|
||||||
|
|
||||||
|
RM=rm -f
|
||||||
|
|
||||||
|
#XINC = -I/usr/include # old-style, stock X distributions
|
||||||
|
#XLIB = -L/usr/lib/X11 -lX11 # (including SGI IRIX)
|
||||||
|
|
||||||
|
#XINC = -I/usr/openwin/include # Sun workstations (OpenWindows)
|
||||||
|
#XLIB = -L/usr/openwin/lib -lX11
|
||||||
|
|
||||||
|
XINC = -I/usr/X11R6/include # new X distributions (X.org, etc.)
|
||||||
|
XLIB = -L/usr/X11R6/lib -lX11
|
||||||
|
#XLIB = -L/usr/X11R6/lib64 -lX11 # e.g., Red Hat on AMD64
|
||||||
|
|
||||||
|
#XINC = -I/usr/local/include # FreeBSD
|
||||||
|
#XLIB = -L/usr/local/lib -lX11
|
||||||
|
|
||||||
|
#LIBS = $(XLIB)
|
||||||
|
LIBS = $(XLIB) -lm #platforms that need libm
|
||||||
|
|
||||||
|
CFLAGS=-DPNG_USER_CONFIG -DNO_GZCOMPRESS -DNO_GZIP -DZ_SOLO \
|
||||||
|
-DdeflateParams\(a,b,c\)=Z_OK -I. $(XINC) -O1
|
||||||
|
|
||||||
|
C=.c
|
||||||
|
O=.o
|
||||||
|
L=.a
|
||||||
|
E=
|
||||||
|
|
||||||
|
ZOBJS = adler32$(O) crc32$(O) \
|
||||||
|
infback$(O) inffast$(O) inflate$(O) inftrees$(O) \
|
||||||
|
trees$(O) uncompr$(O) zutil$(O)
|
||||||
|
|
||||||
|
OBJS = rpng2-x$(O) readpng2$(O) png$(O) pngerror$(O) pngget$(O) pngmem$(O) \
|
||||||
|
pngpread$(O) pngread$(O) pngrio$(O) pngrtran$(O) pngrutil$(O) \
|
||||||
|
pngset$(O) pngtrans$(O) $(ZOBJS)
|
||||||
|
|
||||||
|
# implicit make rules -------------------------------------------------------
|
||||||
|
|
||||||
|
.c$(O): png.h pngconf.h readpng2.h pngusr.h zlib.h
|
||||||
|
$(CC) -c $(CFLAGS) $<
|
||||||
|
|
||||||
|
# dependencies
|
||||||
|
|
||||||
|
all: rpng2-x$(E)
|
||||||
|
|
||||||
|
rpng2-x$(E): $(OBJS)
|
||||||
|
$(LD) -o rpng2-x$(E) $(OBJS) $(LIBS)
|
||||||
|
strip rpng2-x$(E)
|
||||||
|
|
||||||
|
clean:
|
||||||
|
$(RM) rpng2-x$(O)
|
||||||
|
$(RM) rpng2-x$(E)
|
||||||
|
$(RM) $(OBJS)
|
||||||
|
|
||||||
|
# End of makefile for rpng2-x
|
68
dependencies/libpng/src/contrib/pngminim/preader/pngusr.h
vendored
Normal file
@ -0,0 +1,68 @@
|
|||||||
|
/* minrdpngconf.h: headers to make a minimal png-read-only library
|
||||||
|
*
|
||||||
|
* Copyright (c) 2009 Glenn Randers-Pehrson
|
||||||
|
*
|
||||||
|
* This code is released under the libpng license.
|
||||||
|
* For conditions of distribution and use, see the disclaimer
|
||||||
|
* and license in png.h
|
||||||
|
*
|
||||||
|
* Derived from pngcrush.h, Copyright 1998-2007, Glenn Randers-Pehrson
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef MINPRDPNGCONF_H
|
||||||
|
#define MINPRDPNGCONF_H
|
||||||
|
|
||||||
|
#define PNG_NO_GLOBAL_ARRAYS
|
||||||
|
|
||||||
|
#define PNG_NO_WARNINGS
|
||||||
|
#define png_warning(s1,s2) ""
|
||||||
|
#define png_chunk_warning(s1,s2) ""
|
||||||
|
#define PNG_NO_ERROR_TEXT
|
||||||
|
#define png_error(s1,s2) png_err(s1)
|
||||||
|
#define png_chunk_error(s1,s2) png_err(s1)
|
||||||
|
|
||||||
|
#define PNG_NO_ASSEMBLER_CODE
|
||||||
|
#define PNG_NO_OPTIMIZED_CODE
|
||||||
|
#define PNG_NO_READ_DITHER
|
||||||
|
#define PNG_NO_READ_INVERT
|
||||||
|
#define PNG_NO_READ_SHIFT
|
||||||
|
#define PNG_NO_READ_PACK
|
||||||
|
#define PNG_NO_READ_PACKSWAP
|
||||||
|
#define PNG_NO_READ_FILLER
|
||||||
|
#define PNG_NO_READ_SWAP
|
||||||
|
#define PNG_NO_READ_SWAP_ALPHA
|
||||||
|
#define PNG_NO_READ_INVERT_ALPHA
|
||||||
|
#define PNG_NO_READ_RGB_TO_GRAY
|
||||||
|
#define PNG_NO_READ_USER_TRANSFORM
|
||||||
|
#define PNG_NO_READ_cHRM
|
||||||
|
#define PNG_NO_READ_hIST
|
||||||
|
#define PNG_NO_READ_iCCP
|
||||||
|
#define PNG_NO_READ_pCAL
|
||||||
|
#define PNG_NO_READ_pHYs
|
||||||
|
#define PNG_NO_READ_sBIT
|
||||||
|
#define PNG_NO_READ_sCAL
|
||||||
|
#define PNG_NO_READ_sPLT
|
||||||
|
#define PNG_NO_READ_TEXT
|
||||||
|
#define PNG_NO_READ_tIME
|
||||||
|
#define PNG_NO_READ_UNKNOWN_CHUNKS
|
||||||
|
#define PNG_NO_READ_USER_CHUNKS
|
||||||
|
#define PNG_NO_READ_EMPTY_PLTE
|
||||||
|
#define PNG_NO_READ_OPT_PLTE
|
||||||
|
#define PNG_NO_READ_STRIP_ALPHA
|
||||||
|
#define PNG_NO_READ_oFFs
|
||||||
|
#define PNG_NO_WARN_UNINITIALIZED_ROW
|
||||||
|
|
||||||
|
#define PNG_NO_WRITE_SUPPORTED
|
||||||
|
|
||||||
|
#define PNG_NO_INFO_IMAGE
|
||||||
|
#define PNG_NO_USER_MEM
|
||||||
|
#define PNG_NO_FIXED_POINT_SUPPORTED
|
||||||
|
#define PNG_NO_MNG_FEATURES
|
||||||
|
#define PNG_NO_USER_TRANSFORM_PTR
|
||||||
|
#define PNG_NO_HANDLE_AS_UNKNOWN
|
||||||
|
#define PNG_NO_CONSOLE_IO
|
||||||
|
#define PNG_NO_ZALLOC_ZERO
|
||||||
|
#define PNG_NO_ERROR_NUMBERS
|
||||||
|
#define PNG_NO_EASY_ACCESS
|
||||||
|
|
||||||
|
#endif /* MINPRDPNGCONF_H */
|
153
dependencies/libpng/src/contrib/pngminus/README
vendored
Normal file
@ -0,0 +1,153 @@
|
|||||||
|
PngMinus
|
||||||
|
--------
|
||||||
|
(copyright Willem van Schaik, 1999)
|
||||||
|
|
||||||
|
|
||||||
|
License
|
||||||
|
-------
|
||||||
|
|
||||||
|
Permission to use, copy, modify, and distribute this software and
|
||||||
|
its documentation for any purpose and without fee is hereby granted,
|
||||||
|
provided that the above copyright notice appear in all copies and
|
||||||
|
that both that copyright notice and this permission notice appear in
|
||||||
|
supporting documentation. This software is provided "as is" without
|
||||||
|
express or implied warranty.
|
||||||
|
|
||||||
|
|
||||||
|
Some history
|
||||||
|
------------
|
||||||
|
Soon after the creation of PNG in 1995, the need was felt for a set of
|
||||||
|
pnmtopng / pngtopnm utilities. Independantly Alexander Lehmann and I
|
||||||
|
(Willem van Schaik) started such a project. Luckily we discovered this
|
||||||
|
and merged the two together into pnmtopng.tar.gz, which is available
|
||||||
|
from a/o ftp://ftp.simplesystems.org/pub/libpng/png/.
|
||||||
|
|
||||||
|
These two utilities have many, many options and make use of most of the
|
||||||
|
features of PNG, like gamma, alpha, sbit, text-chunks, etc. This makes
|
||||||
|
the utilities quite complex and by now not anymore very maintainable.
|
||||||
|
When we wrote these programs, libpng was still in an early stage.
|
||||||
|
Therefore, lots of the functionality that we put in our software can now
|
||||||
|
be done using transform-functions in libpng.
|
||||||
|
|
||||||
|
Finally, to compile these programs, you need to have installed and
|
||||||
|
compiled three libraries: libpng, zlib and netpbm. Especially the latter
|
||||||
|
makes the whole setup a bit bulky. But that's unavoidable given the many
|
||||||
|
features of pnmtopng.
|
||||||
|
|
||||||
|
|
||||||
|
What now
|
||||||
|
--------
|
||||||
|
At this moment libpng is in a very stable state and can do much of the
|
||||||
|
work done in pnmtopng. Also, pnmtopng needs to be upgraded to the new
|
||||||
|
interface of libpng. Hence, it is time for a rewrite from the ground up
|
||||||
|
of pnmtopng and pngtopnm. This will happen in the near future (stay
|
||||||
|
tuned). The new package will get a different name to distinguish it from
|
||||||
|
the old one: PngPlus.
|
||||||
|
|
||||||
|
To experiment a bit with the new interface of libpng, I started off with
|
||||||
|
a small prototype that contains only the basic functionality. It doesn't
|
||||||
|
have any of the options to read or write special chunks and it will do
|
||||||
|
no gamma correction. But this makes it also a simple program that is
|
||||||
|
quite easy to understand and can serve well as a template for other
|
||||||
|
software developments. (By now there are of course a couple of programs,
|
||||||
|
like Greg Roelofs' rpng/wpng, that can be used just as good.)
|
||||||
|
|
||||||
|
|
||||||
|
Can and can not
|
||||||
|
---------------
|
||||||
|
As this is the small brother of the future PngPlus, I called this fellow
|
||||||
|
PngMinus. Because I started this development in good-old Turbo-C, I
|
||||||
|
avoided the use the netpbm library, which requires DOS extenders. Again,
|
||||||
|
another reason to call it PngMinus (minus netpbm :-). So, part of the
|
||||||
|
program are some elementary routines to read / write pgm- and ppm-files.
|
||||||
|
It does not read b&w pbm-files.
|
||||||
|
|
||||||
|
The downside of this approach is that you can not use them on images
|
||||||
|
that require blocks of memory bigger than 64k (the DOS version). For
|
||||||
|
larger images you will get an out-of-memory error.
|
||||||
|
|
||||||
|
As said before, PngMinus doesn't correct for gamma. When reading
|
||||||
|
png-files you can do this just as well by piping the output of png2pnm
|
||||||
|
to pnmgamma, one of the standard PbmPlus tools. This same scenario will
|
||||||
|
most probably also be followed in the full-blown future PngPlus, with
|
||||||
|
the addition of course of the possibility to create gamma-chunks when
|
||||||
|
writing png-files.
|
||||||
|
|
||||||
|
On the other hand it supports alpha-channels. When reading a png-image
|
||||||
|
you can write the alpha-channel into a pgm-file. And when creating an
|
||||||
|
RGB+A png-image, you just combine a ppm-file with a corresponding
|
||||||
|
pgm-file containing the alpha-channel. When reading, transparency chunks
|
||||||
|
are converted into an alpha-channel and from there on treated the same
|
||||||
|
way.
|
||||||
|
|
||||||
|
Finally you can opt for writing ascii or binary pgm- and ppm-files. When
|
||||||
|
the bit-depth is 16, the format will always be ascii.
|
||||||
|
|
||||||
|
|
||||||
|
Using it
|
||||||
|
--------
|
||||||
|
To distinguish them from pnmtopng and PngPlus, the utilities are named
|
||||||
|
png2pnm and pnm2png (2 instead of to). The input- and output-files can
|
||||||
|
be given as parameters or through redirection. Therefore the programs
|
||||||
|
can be part of a pipe.
|
||||||
|
|
||||||
|
To list the options type "png2pnm -h" or "pnm2png -h".
|
||||||
|
|
||||||
|
|
||||||
|
Just like Scandinavian furniture
|
||||||
|
--------------------------------
|
||||||
|
You have to put it together yourself. I did test the software under
|
||||||
|
MS-DOS with Turbo-C 3.0 and under RedHat Linux 4.2 with gcc. In both
|
||||||
|
cases I used libpng-1.0.4 and zlib-1.1.3. Later versions should be OK,
|
||||||
|
however some older libpng versions have a bug in pngmem.c when using
|
||||||
|
Turbo-C 3.0 (see below).
|
||||||
|
|
||||||
|
You can build it using one of the two makefiles (make -f makefile.###)
|
||||||
|
or use the batch/script files pngminus.bat / pngminus.sh. This assumes
|
||||||
|
that you have built the libraries in ../libpng and ../zlib. Using Linux,
|
||||||
|
make sure that you have built libpng with makefile.std and not
|
||||||
|
makefile.linux (also called .lnx in earlier versions of libpng). The
|
||||||
|
latter creates a .so shared-library, while the PngMinus makefile assumes
|
||||||
|
a normal .a static library.
|
||||||
|
|
||||||
|
If you create a ../pngsuite directory and then store the basn####.png
|
||||||
|
files from PngSuite (http://www.schaik.com/pngsuite/) in there, you can
|
||||||
|
test in one go the proper functioning of PngMinus, see png2pnm.bat and
|
||||||
|
pnm2png.bat (or the .sh versions).
|
||||||
|
|
||||||
|
|
||||||
|
Warranty
|
||||||
|
-------
|
||||||
|
Please, remember that this was just a small experiment to learn a few
|
||||||
|
things. It will have many unforeseen features <vbg>. Who said bugs? Use
|
||||||
|
it when you are in need for something simple or when you want to start
|
||||||
|
developing your own stuff.
|
||||||
|
|
||||||
|
|
||||||
|
The Turbo bug
|
||||||
|
-------------
|
||||||
|
** pngmem.old
|
||||||
|
hptr = (png_byte huge *)((long)(hptr) & 0xfffffff0L);
|
||||||
|
hptr += 16L;
|
||||||
|
** pngmem.c
|
||||||
|
hptr = (png_byte huge *)((long)(hptr) & 0xfffffff0L);
|
||||||
|
hptr = hptr + 16L;
|
||||||
|
**
|
||||||
|
|
||||||
|
** pngmem.old
|
||||||
|
png_ptr->offset_table_ptr[i] = (png_bytep)hptr;
|
||||||
|
hptr += (png_uint_32)65536L;
|
||||||
|
** pngmem.c
|
||||||
|
png_ptr->offset_table_ptr[i] = (png_bytep)hptr;
|
||||||
|
hptr = hptr + 65536L;
|
||||||
|
**
|
||||||
|
|
||||||
|
|
||||||
|
The end
|
||||||
|
-------
|
||||||
|
Willem van Schaik
|
||||||
|
mailto:willem@schaik.com
|
||||||
|
http://www.schaik.com/png/
|
||||||
|
-------
|
||||||
|
Oct 1999
|
||||||
|
|
65
dependencies/libpng/src/contrib/pngminus/makefile.std
vendored
Normal file
@ -0,0 +1,65 @@
|
|||||||
|
# Makefile for PngMinus (png2pnm and pnm2png)
|
||||||
|
# Linux / Unix
|
||||||
|
|
||||||
|
#CC=cc
|
||||||
|
CC=gcc
|
||||||
|
LD=$(CC)
|
||||||
|
|
||||||
|
RM=rm -f
|
||||||
|
|
||||||
|
#PNGPATH = /usr/local
|
||||||
|
#PNGINC = -I$(PNGPATH)/include/libpng12
|
||||||
|
#PNGLIB = -L$(PNGPATH)/lib -lpng12
|
||||||
|
#PNGLIBS = $(PNGPATH)/lib/libpng12.a
|
||||||
|
PNGINC = -I../..
|
||||||
|
PNGLIB = -L../.. -lpng
|
||||||
|
PNGLIBS = ../../libpng.a
|
||||||
|
|
||||||
|
#ZPATH = /usr/local
|
||||||
|
#ZINC = -I$(ZPATH)/include
|
||||||
|
#ZLIB = -L$(ZPATH)/lib -lz
|
||||||
|
#ZLIBS = $(ZPATH)/lib/libz.a
|
||||||
|
ZINC = -I../../../zlib
|
||||||
|
ZLIB = -L../../../zlib -lz
|
||||||
|
ZLIBS = ../../../zlib/libz.a
|
||||||
|
|
||||||
|
CFLAGS=$(PNGINC) $(ZINC)
|
||||||
|
LDLIBS=$(PNGLIB) $(ZLIB)
|
||||||
|
LDLIBSS=$(PNGLIBS) $(ZLIBS)
|
||||||
|
C=.c
|
||||||
|
O=.o
|
||||||
|
L=.a
|
||||||
|
E=
|
||||||
|
|
||||||
|
# dependencies
|
||||||
|
|
||||||
|
#all: png2pnm$(E) pnm2png$(E)
|
||||||
|
all: png2pnm$(E) pnm2png$(E) png2pnm-static$(E) pnm2png-static$(E)
|
||||||
|
|
||||||
|
png2pnm$(O): png2pnm$(C)
|
||||||
|
$(CC) -c $(CFLAGS) png2pnm$(C)
|
||||||
|
|
||||||
|
png2pnm$(E): png2pnm$(O)
|
||||||
|
$(LD) $(LDFLAGS) -o png2pnm$(E) png2pnm$(O) $(LDLIBS) -lm
|
||||||
|
|
||||||
|
png2pnm-static$(E): png2pnm$(O)
|
||||||
|
$(LD) $(LDFLAGS) -o png2pnm-static$(E) png2pnm$(O) $(LDLIBSS) -lm
|
||||||
|
|
||||||
|
pnm2png$(O): pnm2png$(C)
|
||||||
|
$(CC) -c $(CFLAGS) pnm2png$(C)
|
||||||
|
|
||||||
|
pnm2png$(E): pnm2png$(O)
|
||||||
|
$(LD) $(LDFLAGS) -o pnm2png$(E) pnm2png$(O) $(LDLIBS) -lm
|
||||||
|
|
||||||
|
pnm2png-static$(E): pnm2png$(O)
|
||||||
|
$(LD) $(LDFLAGS) -o pnm2png-static$(E) pnm2png$(O) $(LDLIBSS) -lm
|
||||||
|
|
||||||
|
clean:
|
||||||
|
$(RM) png2pnm$(O)
|
||||||
|
$(RM) pnm2png$(O)
|
||||||
|
$(RM) png2pnm$(E)
|
||||||
|
$(RM) pnm2png$(E)
|
||||||
|
$(RM) png2pnm-static$(E)
|
||||||
|
$(RM) pnm2png-static$(E)
|
||||||
|
|
||||||
|
# End of makefile for png2pnm / pnm2png
|
38
dependencies/libpng/src/contrib/pngminus/makefile.tc3
vendored
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
# Makefile for PngMinus (png2pnm and pnm2png)
|
||||||
|
# TurboC++ 3.0
|
||||||
|
|
||||||
|
CC=tcc -Ic:\tc3\inc
|
||||||
|
LD=tcc -Lc:\tc3\lib
|
||||||
|
LB=tlib
|
||||||
|
RM=del
|
||||||
|
CP=copy
|
||||||
|
MODEL=l
|
||||||
|
CCFLAGS=-O -m$(MODEL) -I..\libpng -I..\zlib
|
||||||
|
LDFLAGS=-m$(MODEL) -L..\libpng -L..\zlib
|
||||||
|
C=.c
|
||||||
|
O=.obj
|
||||||
|
L=.lib
|
||||||
|
E=.exe
|
||||||
|
|
||||||
|
# dependencies
|
||||||
|
|
||||||
|
all: png2pnm$(E) pnm2png$(E)
|
||||||
|
|
||||||
|
png2pnm$(O): png2pnm$(C)
|
||||||
|
$(CC) -c $(CCFLAGS) png2pnm$(C)
|
||||||
|
|
||||||
|
png2pnm$(E): png2pnm$(O)
|
||||||
|
$(LD) $(LDFLAGS) png2pnm$(O) libpng$(L) zlib$(L)
|
||||||
|
|
||||||
|
pnm2png$(O): pnm2png$(C)
|
||||||
|
$(CC) -c $(CCFLAGS) pnm2png$(C)
|
||||||
|
|
||||||
|
pnm2png$(E): pnm2png$(O)
|
||||||
|
$(LD) $(LDFLAGS) pnm2png$(O) libpng$(L) zlib$(L)
|
||||||
|
|
||||||
|
clean:
|
||||||
|
$(RM) *$(O)
|
||||||
|
$(RM) *$(E)
|
||||||
|
|
||||||
|
# End of makefile for png2pnm / pnm2png
|
||||||
|
|
92
dependencies/libpng/src/contrib/pngminus/makevms.com
vendored
Normal file
@ -0,0 +1,92 @@
|
|||||||
|
$!------------------------------------------------------------------------------
|
||||||
|
$! make Contrib programs of libpng under OpenVMS
|
||||||
|
$!
|
||||||
|
$!
|
||||||
|
$! Look for the compiler used
|
||||||
|
$!
|
||||||
|
$ zlibsrc = "[---.zlib]"
|
||||||
|
$ ccopt="/include=(''zlibsrc',[--])"
|
||||||
|
$ if f$getsyi("HW_MODEL").ge.1024
|
||||||
|
$ then
|
||||||
|
$ ccopt = "/prefix=all"+ccopt
|
||||||
|
$ comp = "__decc__=1"
|
||||||
|
$ if f$trnlnm("SYS").eqs."" then define sys sys$library:
|
||||||
|
$ else
|
||||||
|
$ if f$search("SYS$SYSTEM:DECC$COMPILER.EXE").eqs.""
|
||||||
|
$ then
|
||||||
|
$ if f$trnlnm("SYS").eqs."" then define sys sys$library:
|
||||||
|
$ if f$search("SYS$SYSTEM:VAXC.EXE").eqs.""
|
||||||
|
$ then
|
||||||
|
$ comp = "__gcc__=1"
|
||||||
|
$ CC :== GCC
|
||||||
|
$ else
|
||||||
|
$ comp = "__vaxc__=1"
|
||||||
|
$ endif
|
||||||
|
$ else
|
||||||
|
$ if f$trnlnm("SYS").eqs."" then define sys decc$library_include:
|
||||||
|
$ ccopt = "/decc/prefix=all"+ccopt
|
||||||
|
$ comp = "__decc__=1"
|
||||||
|
$ endif
|
||||||
|
$ endif
|
||||||
|
$ open/write lopt lib.opt
|
||||||
|
$ write lopt "[--]libpng.olb/lib"
|
||||||
|
$ write lopt "''zlibsrc'libz.olb/lib"
|
||||||
|
$ close lopt
|
||||||
|
$ open/write xopt x11.opt
|
||||||
|
$ write xopt "sys$library:decw$xlibshr.exe/share"
|
||||||
|
$ close xopt
|
||||||
|
$ write sys$output "Compiling PNG contrib programs ..."
|
||||||
|
$ write sys$output "Building pnm2png..."
|
||||||
|
$ CALL MAKE pnm2png.OBJ "cc ''CCOPT' pnm2png" -
|
||||||
|
pnm2png.c
|
||||||
|
$ call make pnm2png.exe -
|
||||||
|
"LINK pnm2png,lib.opt/opt" -
|
||||||
|
pnm2png.obj
|
||||||
|
$ write sys$output "Building png2pnm..."
|
||||||
|
$ CALL MAKE png2pnm.OBJ "cc ''CCOPT' png2pnm" -
|
||||||
|
png2pnm.c
|
||||||
|
$ call make png2pnm.exe -
|
||||||
|
"LINK png2pnm,lib.opt/opt" -
|
||||||
|
png2pnm.obj
|
||||||
|
$ exit
|
||||||
|
$!
|
||||||
|
$!
|
||||||
|
$MAKE: SUBROUTINE !SUBROUTINE TO CHECK DEPENDENCIES
|
||||||
|
$ V = 'F$Verify(0)
|
||||||
|
$! P1 = What we are trying to make
|
||||||
|
$! P2 = Command to make it
|
||||||
|
$! P3 - P8 What it depends on
|
||||||
|
$
|
||||||
|
$ If F$Search(P1) .Eqs. "" Then Goto Makeit
|
||||||
|
$ Time = F$CvTime(F$File(P1,"RDT"))
|
||||||
|
$arg=3
|
||||||
|
$Loop:
|
||||||
|
$ Argument = P'arg
|
||||||
|
$ If Argument .Eqs. "" Then Goto Exit
|
||||||
|
$ El=0
|
||||||
|
$Loop2:
|
||||||
|
$ File = F$Element(El," ",Argument)
|
||||||
|
$ If File .Eqs. " " Then Goto Endl
|
||||||
|
$ AFile = ""
|
||||||
|
$Loop3:
|
||||||
|
$ OFile = AFile
|
||||||
|
$ AFile = F$Search(File)
|
||||||
|
$ If AFile .Eqs. "" .Or. AFile .Eqs. OFile Then Goto NextEl
|
||||||
|
$ If F$CvTime(F$File(AFile,"RDT")) .Ges. Time Then Goto Makeit
|
||||||
|
$ Goto Loop3
|
||||||
|
$NextEL:
|
||||||
|
$ El = El + 1
|
||||||
|
$ Goto Loop2
|
||||||
|
$EndL:
|
||||||
|
$ arg=arg+1
|
||||||
|
$ If arg .Le. 8 Then Goto Loop
|
||||||
|
$ Goto Exit
|
||||||
|
$
|
||||||
|
$Makeit:
|
||||||
|
$ VV=F$VERIFY(0)
|
||||||
|
$ write sys$output P2
|
||||||
|
$ 'P2
|
||||||
|
$ VV='F$Verify(VV)
|
||||||
|
$Exit:
|
||||||
|
$ If V Then Set Verify
|
||||||
|
$ENDSUBROUTINE
|
41
dependencies/libpng/src/contrib/pngminus/png2pnm.bat
vendored
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
REM -- grayscale
|
||||||
|
png2pnm.exe -noraw ..\pngsuite\basn0g01.png basn0g01.pgm
|
||||||
|
png2pnm.exe -noraw ..\pngsuite\basn0g02.png basn0g02.pgm
|
||||||
|
png2pnm.exe -noraw ..\pngsuite\basn0g04.png basn0g04.pgm
|
||||||
|
png2pnm.exe -noraw ..\pngsuite\basn0g08.png basn0g08.pgm
|
||||||
|
png2pnm.exe -noraw ..\pngsuite\basn0g16.png basn0g16.pgm
|
||||||
|
REM -- full-color
|
||||||
|
png2pnm.exe -noraw ..\pngsuite\basn2c08.png basn2c08.ppm
|
||||||
|
png2pnm.exe -noraw ..\pngsuite\basn2c16.png basn2c16.ppm
|
||||||
|
REM -- palletted
|
||||||
|
png2pnm.exe -noraw ..\pngsuite\basn3p01.png basn3p01.ppm
|
||||||
|
png2pnm.exe -noraw ..\pngsuite\basn3p02.png basn3p02.ppm
|
||||||
|
png2pnm.exe -noraw ..\pngsuite\basn3p04.png basn3p04.ppm
|
||||||
|
png2pnm.exe -noraw ..\pngsuite\basn3p08.png basn3p08.ppm
|
||||||
|
REM -- gray with alpha-channel
|
||||||
|
png2pnm.exe -noraw ..\pngsuite\basn4a08.png basn4a08.pgm
|
||||||
|
png2pnm.exe -noraw ..\pngsuite\basn4a16.png basn4a16.pgm
|
||||||
|
REM -- color with alpha-channel
|
||||||
|
png2pnm.exe -noraw -alpha basn6a08.pgm ..\pngsuite\basn6a08.png basn6a08.ppm
|
||||||
|
png2pnm.exe -noraw -alpha basn6a16.pgm ..\pngsuite\basn6a16.png basn6a16.ppm
|
||||||
|
REM -- grayscale
|
||||||
|
png2pnm.exe -raw ..\pngsuite\basn0g01.png rawn0g01.pgm
|
||||||
|
png2pnm.exe -raw ..\pngsuite\basn0g02.png rawn0g02.pgm
|
||||||
|
png2pnm.exe -raw ..\pngsuite\basn0g04.png rawn0g04.pgm
|
||||||
|
png2pnm.exe -raw ..\pngsuite\basn0g08.png rawn0g08.pgm
|
||||||
|
png2pnm.exe -raw ..\pngsuite\basn0g16.png rawn0g16.pgm
|
||||||
|
REM -- full-color
|
||||||
|
png2pnm.exe -raw ..\pngsuite\basn2c08.png rawn2c08.ppm
|
||||||
|
png2pnm.exe -raw ..\pngsuite\basn2c16.png rawn2c16.ppm
|
||||||
|
REM -- palletted
|
||||||
|
png2pnm.exe -raw ..\pngsuite\basn3p01.png rawn3p01.ppm
|
||||||
|
png2pnm.exe -raw ..\pngsuite\basn3p02.png rawn3p02.ppm
|
||||||
|
png2pnm.exe -raw ..\pngsuite\basn3p04.png rawn3p04.ppm
|
||||||
|
png2pnm.exe -raw ..\pngsuite\basn3p08.png rawn3p08.ppm
|
||||||
|
REM -- gray with alpha-channel
|
||||||
|
png2pnm.exe -raw ..\pngsuite\basn4a08.png rawn4a08.pgm
|
||||||
|
png2pnm.exe -raw ..\pngsuite\basn4a16.png rawn4a16.pgm
|
||||||
|
REM -- color with alpha-channel
|
||||||
|
png2pnm.exe -noraw -alpha rawn6a08.pgm ..\pngsuite\basn6a08.png rawn6a08.ppm
|
||||||
|
png2pnm.exe -noraw -alpha rawn6a16.pgm ..\pngsuite\basn6a16.png rawn6a16.ppm
|
||||||
|
|
460
dependencies/libpng/src/contrib/pngminus/png2pnm.c
vendored
Normal file
@ -0,0 +1,460 @@
|
|||||||
|
/*
|
||||||
|
* png2pnm.c --- conversion from PNG-file to PGM/PPM-file
|
||||||
|
* copyright (C) 1999,2017 by Willem van Schaik <willem at schaik.com>
|
||||||
|
*
|
||||||
|
* version 1.0 - 1999.10.15 - First version.
|
||||||
|
* 1.1 - 2017.04.22 - Add buffer-size check (Glenn Randers-Pehrson)
|
||||||
|
* 1.2 - 2017.08.24 - Fix potential overflow in buffer-size check
|
||||||
|
* (Glenn Randers-Pehrson)
|
||||||
|
* 1.3 - 2017.08.28 - Add PNGMINUS_UNUSED (Christian Hesse)
|
||||||
|
*
|
||||||
|
* Permission to use, copy, modify, and distribute this software and
|
||||||
|
* its documentation for any purpose and without fee is hereby granted,
|
||||||
|
* provided that the above copyright notice appear in all copies and
|
||||||
|
* that both that copyright notice and this permission notice appear in
|
||||||
|
* supporting documentation. This software is provided "as is" without
|
||||||
|
* express or implied warranty.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <stdio.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
#ifdef __TURBOC__
|
||||||
|
#include <mem.h>
|
||||||
|
#include <fcntl.h>
|
||||||
|
#endif
|
||||||
|
#include <zlib.h>
|
||||||
|
|
||||||
|
#ifndef BOOL
|
||||||
|
#define BOOL unsigned char
|
||||||
|
#endif
|
||||||
|
#ifndef TRUE
|
||||||
|
#define TRUE (BOOL) 1
|
||||||
|
#endif
|
||||||
|
#ifndef FALSE
|
||||||
|
#define FALSE (BOOL) 0
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifdef __TURBOC__
|
||||||
|
#define STDIN 0
|
||||||
|
#define STDOUT 1
|
||||||
|
#define STDERR 2
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* to make png2pnm verbose so we can find problems (needs to be before png.h) */
|
||||||
|
#ifndef PNG_DEBUG
|
||||||
|
#define PNG_DEBUG 0
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
#include "png.h"
|
||||||
|
|
||||||
|
/* Define png_jmpbuf() in case we are using a pre-1.0.6 version of libpng */
|
||||||
|
#ifndef png_jmpbuf
|
||||||
|
# define png_jmpbuf(png_ptr) ((png_ptr)->jmpbuf)
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifndef PNGMINUS_UNUSED
|
||||||
|
/* Unused formal parameter warnings are silenced using the following macro
|
||||||
|
* which is expected to have no bad effects on performance (optimizing
|
||||||
|
* compilers will probably remove it entirely).
|
||||||
|
*/
|
||||||
|
# define PNGMINUS_UNUSED(param) (void)param
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* function prototypes */
|
||||||
|
|
||||||
|
int main (int argc, char *argv[]);
|
||||||
|
void usage ();
|
||||||
|
BOOL png2pnm (FILE *png_file, FILE *pnm_file, FILE *alpha_file, BOOL raw,
|
||||||
|
BOOL alpha);
|
||||||
|
|
||||||
|
/*
|
||||||
|
* main
|
||||||
|
*/
|
||||||
|
|
||||||
|
int main(int argc, char *argv[])
|
||||||
|
{
|
||||||
|
FILE *fp_rd = stdin;
|
||||||
|
FILE *fp_wr = stdout;
|
||||||
|
FILE *fp_al = NULL;
|
||||||
|
BOOL raw = TRUE;
|
||||||
|
BOOL alpha = FALSE;
|
||||||
|
int argi;
|
||||||
|
|
||||||
|
for (argi = 1; argi < argc; argi++)
|
||||||
|
{
|
||||||
|
if (argv[argi][0] == '-')
|
||||||
|
{
|
||||||
|
switch (argv[argi][1])
|
||||||
|
{
|
||||||
|
case 'n':
|
||||||
|
raw = FALSE;
|
||||||
|
break;
|
||||||
|
case 'r':
|
||||||
|
raw = TRUE;
|
||||||
|
break;
|
||||||
|
case 'a':
|
||||||
|
alpha = TRUE;
|
||||||
|
argi++;
|
||||||
|
if ((fp_al = fopen (argv[argi], "wb")) == NULL)
|
||||||
|
{
|
||||||
|
fprintf (stderr, "PNM2PNG\n");
|
||||||
|
fprintf (stderr, "Error: can not create alpha-channel file %s\n",
|
||||||
|
argv[argi]);
|
||||||
|
exit (1);
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case 'h':
|
||||||
|
case '?':
|
||||||
|
usage();
|
||||||
|
exit(0);
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
fprintf (stderr, "PNG2PNM\n");
|
||||||
|
fprintf (stderr, "Error: unknown option %s\n", argv[argi]);
|
||||||
|
usage();
|
||||||
|
exit(1);
|
||||||
|
break;
|
||||||
|
} /* end switch */
|
||||||
|
}
|
||||||
|
else if (fp_rd == stdin)
|
||||||
|
{
|
||||||
|
if ((fp_rd = fopen (argv[argi], "rb")) == NULL)
|
||||||
|
{
|
||||||
|
fprintf (stderr, "PNG2PNM\n");
|
||||||
|
fprintf (stderr, "Error: file %s does not exist\n", argv[argi]);
|
||||||
|
exit (1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else if (fp_wr == stdout)
|
||||||
|
{
|
||||||
|
if ((fp_wr = fopen (argv[argi], "wb")) == NULL)
|
||||||
|
{
|
||||||
|
fprintf (stderr, "PNG2PNM\n");
|
||||||
|
fprintf (stderr, "Error: can not create file %s\n", argv[argi]);
|
||||||
|
exit (1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
fprintf (stderr, "PNG2PNM\n");
|
||||||
|
fprintf (stderr, "Error: too many parameters\n");
|
||||||
|
usage();
|
||||||
|
exit(1);
|
||||||
|
}
|
||||||
|
} /* end for */
|
||||||
|
|
||||||
|
#ifdef __TURBOC__
|
||||||
|
/* set stdin/stdout if required to binary */
|
||||||
|
if (fp_rd == stdin)
|
||||||
|
{
|
||||||
|
setmode (STDIN, O_BINARY);
|
||||||
|
}
|
||||||
|
if ((raw) && (fp_wr == stdout))
|
||||||
|
{
|
||||||
|
setmode (STDOUT, O_BINARY);
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* call the conversion program itself */
|
||||||
|
if (png2pnm (fp_rd, fp_wr, fp_al, raw, alpha) == FALSE)
|
||||||
|
{
|
||||||
|
fprintf (stderr, "PNG2PNM\n");
|
||||||
|
fprintf (stderr, "Error: unsuccessful conversion of PNG-image\n");
|
||||||
|
exit(1);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* close input file */
|
||||||
|
fclose (fp_rd);
|
||||||
|
/* close output file */
|
||||||
|
fclose (fp_wr);
|
||||||
|
/* close alpha file */
|
||||||
|
if (alpha)
|
||||||
|
fclose (fp_al);
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* usage
|
||||||
|
*/
|
||||||
|
|
||||||
|
void usage()
|
||||||
|
{
|
||||||
|
fprintf (stderr, "PNG2PNM\n");
|
||||||
|
fprintf (stderr, " by Willem van Schaik, 1999\n");
|
||||||
|
#ifdef __TURBOC__
|
||||||
|
fprintf (stderr, " for Turbo-C and Borland-C compilers\n");
|
||||||
|
#else
|
||||||
|
fprintf (stderr, " for Linux (and Unix) compilers\n");
|
||||||
|
#endif
|
||||||
|
fprintf (stderr, "Usage: png2pnm [options] <file>.png [<file>.pnm]\n");
|
||||||
|
fprintf (stderr, " or: ... | png2pnm [options]\n");
|
||||||
|
fprintf (stderr, "Options:\n");
|
||||||
|
fprintf (stderr,
|
||||||
|
" -r[aw] write pnm-file in binary format (P4/P5/P6) (default)\n");
|
||||||
|
fprintf (stderr, " -n[oraw] write pnm-file in ascii format (P1/P2/P3)\n");
|
||||||
|
fprintf (stderr,
|
||||||
|
" -a[lpha] <file>.pgm write PNG alpha channel as pgm-file\n");
|
||||||
|
fprintf (stderr, " -h | -? print this help-information\n");
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* png2pnm
|
||||||
|
*/
|
||||||
|
|
||||||
|
BOOL png2pnm (FILE *png_file, FILE *pnm_file, FILE *alpha_file,
|
||||||
|
volatile BOOL raw, BOOL alpha)
|
||||||
|
{
|
||||||
|
png_struct *png_ptr = NULL;
|
||||||
|
png_info *info_ptr = NULL;
|
||||||
|
png_byte buf[8];
|
||||||
|
png_byte *png_pixels = NULL;
|
||||||
|
png_byte **row_pointers = NULL;
|
||||||
|
png_byte *pix_ptr = NULL;
|
||||||
|
png_uint_32 row_bytes;
|
||||||
|
|
||||||
|
png_uint_32 width;
|
||||||
|
png_uint_32 height;
|
||||||
|
int bit_depth;
|
||||||
|
int channels;
|
||||||
|
int color_type;
|
||||||
|
int alpha_present;
|
||||||
|
int row, col;
|
||||||
|
int ret;
|
||||||
|
int i;
|
||||||
|
long dep_16;
|
||||||
|
|
||||||
|
/* read and check signature in PNG file */
|
||||||
|
ret = fread (buf, 1, 8, png_file);
|
||||||
|
if (ret != 8)
|
||||||
|
return FALSE;
|
||||||
|
|
||||||
|
ret = png_sig_cmp (buf, 0, 8);
|
||||||
|
if (ret)
|
||||||
|
return FALSE;
|
||||||
|
|
||||||
|
/* create png and info structures */
|
||||||
|
|
||||||
|
png_ptr = png_create_read_struct (png_get_libpng_ver(NULL),
|
||||||
|
NULL, NULL, NULL);
|
||||||
|
if (!png_ptr)
|
||||||
|
return FALSE; /* out of memory */
|
||||||
|
|
||||||
|
info_ptr = png_create_info_struct (png_ptr);
|
||||||
|
if (!info_ptr)
|
||||||
|
{
|
||||||
|
png_destroy_read_struct (&png_ptr, NULL, NULL);
|
||||||
|
return FALSE; /* out of memory */
|
||||||
|
}
|
||||||
|
|
||||||
|
if (setjmp (png_jmpbuf(png_ptr)))
|
||||||
|
{
|
||||||
|
png_destroy_read_struct (&png_ptr, &info_ptr, NULL);
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* set up the input control for C streams */
|
||||||
|
png_init_io (png_ptr, png_file);
|
||||||
|
png_set_sig_bytes (png_ptr, 8); /* we already read the 8 signature bytes */
|
||||||
|
|
||||||
|
/* read the file information */
|
||||||
|
png_read_info (png_ptr, info_ptr);
|
||||||
|
|
||||||
|
/* get size and bit-depth of the PNG-image */
|
||||||
|
png_get_IHDR (png_ptr, info_ptr,
|
||||||
|
&width, &height, &bit_depth, &color_type,
|
||||||
|
NULL, NULL, NULL);
|
||||||
|
|
||||||
|
/* set-up the transformations */
|
||||||
|
|
||||||
|
/* transform paletted images into full-color rgb */
|
||||||
|
if (color_type == PNG_COLOR_TYPE_PALETTE)
|
||||||
|
png_set_expand (png_ptr);
|
||||||
|
/* expand images to bit-depth 8 (only applicable for grayscale images) */
|
||||||
|
if (color_type == PNG_COLOR_TYPE_GRAY && bit_depth < 8)
|
||||||
|
png_set_expand (png_ptr);
|
||||||
|
/* transform transparency maps into full alpha-channel */
|
||||||
|
if (png_get_valid (png_ptr, info_ptr, PNG_INFO_tRNS))
|
||||||
|
png_set_expand (png_ptr);
|
||||||
|
|
||||||
|
#ifdef NJET
|
||||||
|
/* downgrade 16-bit images to 8-bit */
|
||||||
|
if (bit_depth == 16)
|
||||||
|
png_set_strip_16 (png_ptr);
|
||||||
|
/* transform grayscale images into full-color */
|
||||||
|
if (color_type == PNG_COLOR_TYPE_GRAY ||
|
||||||
|
color_type == PNG_COLOR_TYPE_GRAY_ALPHA)
|
||||||
|
png_set_gray_to_rgb (png_ptr);
|
||||||
|
/* only if file has a file gamma, we do a correction */
|
||||||
|
if (png_get_gAMA (png_ptr, info_ptr, &file_gamma))
|
||||||
|
png_set_gamma (png_ptr, (double) 2.2, file_gamma);
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* all transformations have been registered; now update info_ptr data,
|
||||||
|
* get rowbytes and channels, and allocate image memory */
|
||||||
|
|
||||||
|
png_read_update_info (png_ptr, info_ptr);
|
||||||
|
|
||||||
|
/* get the new color-type and bit-depth (after expansion/stripping) */
|
||||||
|
png_get_IHDR (png_ptr, info_ptr, &width, &height, &bit_depth, &color_type,
|
||||||
|
NULL, NULL, NULL);
|
||||||
|
|
||||||
|
/* check for 16-bit files */
|
||||||
|
if (bit_depth == 16)
|
||||||
|
{
|
||||||
|
raw = FALSE;
|
||||||
|
#ifdef __TURBOC__
|
||||||
|
pnm_file->flags &= ~((unsigned) _F_BIN);
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
/* calculate new number of channels and store alpha-presence */
|
||||||
|
if (color_type == PNG_COLOR_TYPE_GRAY)
|
||||||
|
channels = 1;
|
||||||
|
else if (color_type == PNG_COLOR_TYPE_GRAY_ALPHA)
|
||||||
|
channels = 2;
|
||||||
|
else if (color_type == PNG_COLOR_TYPE_RGB)
|
||||||
|
channels = 3;
|
||||||
|
else if (color_type == PNG_COLOR_TYPE_RGB_ALPHA)
|
||||||
|
channels = 4;
|
||||||
|
else
|
||||||
|
channels = 0; /* should never happen */
|
||||||
|
alpha_present = (channels - 1) % 2;
|
||||||
|
|
||||||
|
/* check if alpha is expected to be present in file */
|
||||||
|
if (alpha && !alpha_present)
|
||||||
|
{
|
||||||
|
fprintf (stderr, "PNG2PNM\n");
|
||||||
|
fprintf (stderr, "Error: PNG-file doesn't contain alpha channel\n");
|
||||||
|
exit (1);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* row_bytes is the width x number of channels x (bit-depth / 8) */
|
||||||
|
row_bytes = png_get_rowbytes (png_ptr, info_ptr);
|
||||||
|
|
||||||
|
if ((row_bytes == 0 || (size_t)height > ((size_t)(-1))/(size_t)row_bytes))
|
||||||
|
{
|
||||||
|
/* too big */
|
||||||
|
png_destroy_read_struct (&png_ptr, &info_ptr, NULL);
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
if ((png_pixels = (png_byte *)
|
||||||
|
malloc ((size_t)row_bytes * (size_t)height * sizeof (png_byte))) == NULL)
|
||||||
|
{
|
||||||
|
png_destroy_read_struct (&png_ptr, &info_ptr, NULL);
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
|
if ((row_pointers = (png_byte **)
|
||||||
|
malloc ((size_t)height * sizeof (png_bytep))) == NULL)
|
||||||
|
{
|
||||||
|
png_destroy_read_struct (&png_ptr, &info_ptr, NULL);
|
||||||
|
free (png_pixels);
|
||||||
|
png_pixels = NULL;
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* set the individual row_pointers to point at the correct offsets */
|
||||||
|
for (i = 0; i < ((int) height); i++)
|
||||||
|
row_pointers[i] = png_pixels + i * row_bytes;
|
||||||
|
|
||||||
|
/* now we can go ahead and just read the whole image */
|
||||||
|
png_read_image (png_ptr, row_pointers);
|
||||||
|
|
||||||
|
/* read rest of file, and get additional chunks in info_ptr - REQUIRED */
|
||||||
|
png_read_end (png_ptr, info_ptr);
|
||||||
|
|
||||||
|
/* clean up after the read, and free any memory allocated - REQUIRED */
|
||||||
|
png_destroy_read_struct (&png_ptr, &info_ptr, (png_infopp) NULL);
|
||||||
|
|
||||||
|
/* write header of PNM file */
|
||||||
|
|
||||||
|
if ((color_type == PNG_COLOR_TYPE_GRAY) ||
|
||||||
|
(color_type == PNG_COLOR_TYPE_GRAY_ALPHA))
|
||||||
|
{
|
||||||
|
fprintf (pnm_file, "%s\n", (raw) ? "P5" : "P2");
|
||||||
|
fprintf (pnm_file, "%d %d\n", (int) width, (int) height);
|
||||||
|
fprintf (pnm_file, "%ld\n", ((1L << (int) bit_depth) - 1L));
|
||||||
|
}
|
||||||
|
else if ((color_type == PNG_COLOR_TYPE_RGB) ||
|
||||||
|
(color_type == PNG_COLOR_TYPE_RGB_ALPHA))
|
||||||
|
{
|
||||||
|
fprintf (pnm_file, "%s\n", (raw) ? "P6" : "P3");
|
||||||
|
fprintf (pnm_file, "%d %d\n", (int) width, (int) height);
|
||||||
|
fprintf (pnm_file, "%ld\n", ((1L << (int) bit_depth) - 1L));
|
||||||
|
}
|
||||||
|
|
||||||
|
/* write header of PGM file with alpha channel */
|
||||||
|
|
||||||
|
if ((alpha) &&
|
||||||
|
((color_type == PNG_COLOR_TYPE_GRAY_ALPHA) ||
|
||||||
|
(color_type == PNG_COLOR_TYPE_RGB_ALPHA)))
|
||||||
|
{
|
||||||
|
fprintf (alpha_file, "%s\n", (raw) ? "P5" : "P2");
|
||||||
|
fprintf (alpha_file, "%d %d\n", (int) width, (int) height);
|
||||||
|
fprintf (alpha_file, "%ld\n", ((1L << (int) bit_depth) - 1L));
|
||||||
|
}
|
||||||
|
|
||||||
|
/* write data to PNM file */
|
||||||
|
pix_ptr = png_pixels;
|
||||||
|
|
||||||
|
for (row = 0; row < (int) height; row++)
|
||||||
|
{
|
||||||
|
for (col = 0; col < (int) width; col++)
|
||||||
|
{
|
||||||
|
for (i = 0; i < (channels - alpha_present); i++)
|
||||||
|
{
|
||||||
|
if (raw)
|
||||||
|
fputc ((int) *pix_ptr++ , pnm_file);
|
||||||
|
else
|
||||||
|
if (bit_depth == 16){
|
||||||
|
dep_16 = (long) *pix_ptr++;
|
||||||
|
fprintf (pnm_file, "%ld ", (dep_16 << 8) + ((long) *pix_ptr++));
|
||||||
|
}
|
||||||
|
else
|
||||||
|
fprintf (pnm_file, "%ld ", (long) *pix_ptr++);
|
||||||
|
}
|
||||||
|
if (alpha_present)
|
||||||
|
{
|
||||||
|
if (!alpha)
|
||||||
|
{
|
||||||
|
pix_ptr++; /* alpha */
|
||||||
|
if (bit_depth == 16)
|
||||||
|
pix_ptr++;
|
||||||
|
}
|
||||||
|
else /* output alpha-channel as pgm file */
|
||||||
|
{
|
||||||
|
if (raw)
|
||||||
|
fputc ((int) *pix_ptr++ , alpha_file);
|
||||||
|
else
|
||||||
|
if (bit_depth == 16)
|
||||||
|
{
|
||||||
|
dep_16 = (long) *pix_ptr++;
|
||||||
|
fprintf (alpha_file, "%ld ", (dep_16 << 8) + (long) *pix_ptr++);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
fprintf (alpha_file, "%ld ", (long) *pix_ptr++);
|
||||||
|
}
|
||||||
|
} /* if alpha_present */
|
||||||
|
|
||||||
|
if (!raw)
|
||||||
|
if (col % 4 == 3)
|
||||||
|
fprintf (pnm_file, "\n");
|
||||||
|
} /* end for col */
|
||||||
|
|
||||||
|
if (!raw)
|
||||||
|
if (col % 4 != 0)
|
||||||
|
fprintf (pnm_file, "\n");
|
||||||
|
} /* end for row */
|
||||||
|
|
||||||
|
if (row_pointers != (unsigned char**) NULL)
|
||||||
|
free (row_pointers);
|
||||||
|
if (png_pixels != (unsigned char*) NULL)
|
||||||
|
free (png_pixels);
|
||||||
|
|
||||||
|
PNGMINUS_UNUSED(raw); /* to quiet a Coverity defect */
|
||||||
|
return TRUE;
|
||||||
|
|
||||||
|
} /* end of source */
|
||||||
|
|
42
dependencies/libpng/src/contrib/pngminus/png2pnm.sh
vendored
Normal file
@ -0,0 +1,42 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
# -- grayscale
|
||||||
|
./png2pnm -noraw ../pngsuite/basn0g01.png basn0g01.pgm
|
||||||
|
./png2pnm -noraw ../pngsuite/basn0g02.png basn0g02.pgm
|
||||||
|
./png2pnm -noraw ../pngsuite/basn0g04.png basn0g04.pgm
|
||||||
|
./png2pnm -noraw ../pngsuite/basn0g08.png basn0g08.pgm
|
||||||
|
./png2pnm -noraw ../pngsuite/basn0g16.png basn0g16.pgm
|
||||||
|
# -- full-color
|
||||||
|
./png2pnm -noraw ../pngsuite/basn2c08.png basn2c08.ppm
|
||||||
|
./png2pnm -noraw ../pngsuite/basn2c16.png basn2c16.ppm
|
||||||
|
# -- palletted
|
||||||
|
./png2pnm -noraw ../pngsuite/basn3p01.png basn3p01.ppm
|
||||||
|
./png2pnm -noraw ../pngsuite/basn3p02.png basn3p02.ppm
|
||||||
|
./png2pnm -noraw ../pngsuite/basn3p04.png basn3p04.ppm
|
||||||
|
./png2pnm -noraw ../pngsuite/basn3p08.png basn3p08.ppm
|
||||||
|
# -- gray with alpha-channel
|
||||||
|
./png2pnm -noraw ../pngsuite/basn4a08.png basn4a08.pgm
|
||||||
|
./png2pnm -noraw ../pngsuite/basn4a16.png basn4a16.pgm
|
||||||
|
# -- color with alpha-channel
|
||||||
|
./png2pnm -noraw -alpha basn6a08.pgm ../pngsuite/basn6a08.png basn6a08.ppm
|
||||||
|
./png2pnm -noraw -alpha basn6a16.pgm ../pngsuite/basn6a16.png basn6a16.ppm
|
||||||
|
# -- grayscale
|
||||||
|
./png2pnm -raw ../pngsuite/basn0g01.png rawn0g01.pgm
|
||||||
|
./png2pnm -raw ../pngsuite/basn0g02.png rawn0g02.pgm
|
||||||
|
./png2pnm -raw ../pngsuite/basn0g04.png rawn0g04.pgm
|
||||||
|
./png2pnm -raw ../pngsuite/basn0g08.png rawn0g08.pgm
|
||||||
|
./png2pnm -raw ../pngsuite/basn0g16.png rawn0g16.pgm
|
||||||
|
# -- full-color
|
||||||
|
./png2pnm -raw ../pngsuite/basn2c08.png rawn2c08.ppm
|
||||||
|
./png2pnm -raw ../pngsuite/basn2c16.png rawn2c16.ppm
|
||||||
|
# -- palletted
|
||||||
|
./png2pnm -raw ../pngsuite/basn3p01.png rawn3p01.ppm
|
||||||
|
./png2pnm -raw ../pngsuite/basn3p02.png rawn3p02.ppm
|
||||||
|
./png2pnm -raw ../pngsuite/basn3p04.png rawn3p04.ppm
|
||||||
|
./png2pnm -raw ../pngsuite/basn3p08.png rawn3p08.ppm
|
||||||
|
# -- gray with alpha-channel
|
||||||
|
./png2pnm -raw ../pngsuite/basn4a08.png rawn4a08.pgm
|
||||||
|
./png2pnm -raw ../pngsuite/basn4a16.png rawn4a16.pgm
|
||||||
|
# -- color with alpha-channel
|
||||||
|
./png2pnm -noraw -alpha rawn6a08.pgm ../pngsuite/basn6a08.png rawn6a08.ppm
|
||||||
|
./png2pnm -noraw -alpha rawn6a16.pgm ../pngsuite/basn6a16.png rawn6a16.ppm
|
||||||
|
|
4
dependencies/libpng/src/contrib/pngminus/pngminus.bat
vendored
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
make -f makefile.tc3
|
||||||
|
call png2pnm.bat
|
||||||
|
call pnm2png.bat
|
||||||
|
|
5
dependencies/libpng/src/contrib/pngminus/pngminus.sh
vendored
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
make -f makefile.std
|
||||||
|
sh png2pnm.sh
|
||||||
|
sh pnm2png.sh
|
||||||
|
|
41
dependencies/libpng/src/contrib/pngminus/pnm2png.bat
vendored
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
REM -- grayscale
|
||||||
|
pnm2png.exe basn0g01.pgm basn0g01.png
|
||||||
|
pnm2png.exe basn0g02.pgm basn0g02.png
|
||||||
|
pnm2png.exe basn0g04.pgm basn0g04.png
|
||||||
|
pnm2png.exe basn0g08.pgm basn0g08.png
|
||||||
|
pnm2png.exe basn0g16.pgm basn0g16.png
|
||||||
|
REM -- full-color
|
||||||
|
pnm2png.exe basn2c08.ppm basn2c08.png
|
||||||
|
pnm2png.exe basn2c16.ppm basn2c16.png
|
||||||
|
REM -- palletted
|
||||||
|
pnm2png.exe basn3p01.ppm basn3p01.png
|
||||||
|
pnm2png.exe basn3p02.ppm basn3p02.png
|
||||||
|
pnm2png.exe basn3p04.ppm basn3p04.png
|
||||||
|
pnm2png.exe basn3p08.ppm basn3p08.png
|
||||||
|
REM -- gray with alpha-channel
|
||||||
|
pnm2png.exe -alpha basn6a08.pgm basn4a08.pgm basn4a08.png
|
||||||
|
pnm2png.exe -alpha basn6a16.pgm basn4a16.pgm basn4a16.png
|
||||||
|
REM -- color with alpha-channel
|
||||||
|
pnm2png.exe -alpha basn6a08.pgm basn6a08.ppm basn6a08.png
|
||||||
|
pnm2png.exe -alpha basn6a16.pgm basn6a16.ppm basn6a16.png
|
||||||
|
REM -- grayscale
|
||||||
|
pnm2png.exe rawn0g01.pgm rawn0g01.png
|
||||||
|
pnm2png.exe rawn0g02.pgm rawn0g02.png
|
||||||
|
pnm2png.exe rawn0g04.pgm rawn0g04.png
|
||||||
|
pnm2png.exe rawn0g08.pgm rawn0g08.png
|
||||||
|
pnm2png.exe rawn0g16.pgm rawn0g16.png
|
||||||
|
REM -- full-color
|
||||||
|
pnm2png.exe rawn2c08.ppm rawn2c08.png
|
||||||
|
pnm2png.exe rawn2c16.ppm rawn2c16.png
|
||||||
|
REM -- palletted
|
||||||
|
pnm2png.exe rawn3p01.ppm rawn3p01.png
|
||||||
|
pnm2png.exe rawn3p02.ppm rawn3p02.png
|
||||||
|
pnm2png.exe rawn3p04.ppm rawn3p04.png
|
||||||
|
pnm2png.exe rawn3p08.ppm rawn3p08.png
|
||||||
|
REM -- gray with alpha-channel
|
||||||
|
pnm2png.exe -alpha rawn6a08.pgm rawn4a08.pgm rawn4a08.png
|
||||||
|
pnm2png.exe -alpha rawn6a16.pgm rawn4a16.pgm rawn4a16.png
|
||||||
|
REM -- color with alpha-channel
|
||||||
|
pnm2png.exe -alpha rawn6a08.pgm rawn6a08.ppm rawn6a08.png
|
||||||
|
pnm2png.exe -alpha rawn6a16.pgm rawn6a16.ppm rawn6a16.png
|
||||||
|
|
638
dependencies/libpng/src/contrib/pngminus/pnm2png.c
vendored
Normal file
@ -0,0 +1,638 @@
|
|||||||
|
/*
|
||||||
|
* pnm2png.c --- conversion from PBM/PGM/PPM-file to PNG-file
|
||||||
|
* copyright (C) 1999,2015,2017 by Willem van Schaik <willem at schaik.com>
|
||||||
|
*
|
||||||
|
* version 1.0 - 1999.10.15 - First version.
|
||||||
|
* version 1.1 - 2015.07.29 - Fixed leaks (Glenn Randers-Pehrson)
|
||||||
|
* version 1.2 - 2017.04.22 - Add buffer-size check
|
||||||
|
* 1.3 - 2017.08.24 - Fix potential overflow in buffer-size check
|
||||||
|
* (Glenn Randers-Pehrson)
|
||||||
|
* 1.4 - 2017.08.28 - Add PNGMINUS_UNUSED (Christian Hesse)
|
||||||
|
*
|
||||||
|
* Permission to use, copy, modify, and distribute this software and
|
||||||
|
* its documentation for any purpose and without fee is hereby granted,
|
||||||
|
* provided that the above copyright notice appear in all copies and
|
||||||
|
* that both that copyright notice and this permission notice appear in
|
||||||
|
* supporting documentation. This software is provided "as is" without
|
||||||
|
* express or implied warranty.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <stdio.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
#ifdef __TURBOC__
|
||||||
|
#include <mem.h>
|
||||||
|
#include <fcntl.h>
|
||||||
|
#endif
|
||||||
|
#include <zlib.h>
|
||||||
|
|
||||||
|
#ifndef BOOL
|
||||||
|
#define BOOL unsigned char
|
||||||
|
#endif
|
||||||
|
#ifndef TRUE
|
||||||
|
#define TRUE (BOOL) 1
|
||||||
|
#endif
|
||||||
|
#ifndef FALSE
|
||||||
|
#define FALSE (BOOL) 0
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#define STDIN 0
|
||||||
|
#define STDOUT 1
|
||||||
|
#define STDERR 2
|
||||||
|
|
||||||
|
/* to make pnm2png verbose so we can find problems (needs to be before png.h) */
|
||||||
|
#ifndef PNG_DEBUG
|
||||||
|
#define PNG_DEBUG 0
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#include "png.h"
|
||||||
|
|
||||||
|
/* Define png_jmpbuf() in case we are using a pre-1.0.6 version of libpng */
|
||||||
|
#ifndef png_jmpbuf
|
||||||
|
# define png_jmpbuf(png_ptr) ((png_ptr)->jmpbuf)
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifndef PNGMINUS_UNUSED
|
||||||
|
/* Unused formal parameter warnings are silenced using the following macro
|
||||||
|
* which is expected to have no bad effects on performance (optimizing
|
||||||
|
* compilers will probably remove it entirely).
|
||||||
|
*/
|
||||||
|
# define PNGMINUS_UNUSED(param) (void)param
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
/* function prototypes */
|
||||||
|
|
||||||
|
int main (int argc, char *argv[]);
|
||||||
|
void usage ();
|
||||||
|
BOOL pnm2png (FILE *pnm_file, FILE *png_file, FILE *alpha_file, BOOL interlace,
|
||||||
|
BOOL alpha);
|
||||||
|
void get_token(FILE *pnm_file, char *token);
|
||||||
|
png_uint_32 get_data (FILE *pnm_file, int depth);
|
||||||
|
png_uint_32 get_value (FILE *pnm_file, int depth);
|
||||||
|
|
||||||
|
/*
|
||||||
|
* main
|
||||||
|
*/
|
||||||
|
|
||||||
|
int main(int argc, char *argv[])
|
||||||
|
{
|
||||||
|
FILE *fp_rd = stdin;
|
||||||
|
FILE *fp_al = NULL;
|
||||||
|
FILE *fp_wr = stdout;
|
||||||
|
BOOL interlace = FALSE;
|
||||||
|
BOOL alpha = FALSE;
|
||||||
|
int argi;
|
||||||
|
|
||||||
|
for (argi = 1; argi < argc; argi++)
|
||||||
|
{
|
||||||
|
if (argv[argi][0] == '-')
|
||||||
|
{
|
||||||
|
switch (argv[argi][1])
|
||||||
|
{
|
||||||
|
case 'i':
|
||||||
|
interlace = TRUE;
|
||||||
|
break;
|
||||||
|
case 'a':
|
||||||
|
alpha = TRUE;
|
||||||
|
argi++;
|
||||||
|
if ((fp_al = fopen (argv[argi], "rb")) == NULL)
|
||||||
|
{
|
||||||
|
fprintf (stderr, "PNM2PNG\n");
|
||||||
|
fprintf (stderr, "Error: alpha-channel file %s does not exist\n",
|
||||||
|
argv[argi]);
|
||||||
|
exit (1);
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case 'h':
|
||||||
|
case '?':
|
||||||
|
usage();
|
||||||
|
exit(0);
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
fprintf (stderr, "PNM2PNG\n");
|
||||||
|
fprintf (stderr, "Error: unknown option %s\n", argv[argi]);
|
||||||
|
usage();
|
||||||
|
exit(1);
|
||||||
|
break;
|
||||||
|
} /* end switch */
|
||||||
|
}
|
||||||
|
else if (fp_rd == stdin)
|
||||||
|
{
|
||||||
|
if ((fp_rd = fopen (argv[argi], "rb")) == NULL)
|
||||||
|
{
|
||||||
|
fprintf (stderr, "PNM2PNG\n");
|
||||||
|
fprintf (stderr, "Error: file %s does not exist\n", argv[argi]);
|
||||||
|
exit (1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else if (fp_wr == stdout)
|
||||||
|
{
|
||||||
|
if ((fp_wr = fopen (argv[argi], "wb")) == NULL)
|
||||||
|
{
|
||||||
|
fprintf (stderr, "PNM2PNG\n");
|
||||||
|
fprintf (stderr, "Error: can not create PNG-file %s\n", argv[argi]);
|
||||||
|
exit (1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
fprintf (stderr, "PNM2PNG\n");
|
||||||
|
fprintf (stderr, "Error: too many parameters\n");
|
||||||
|
usage();
|
||||||
|
exit (1);
|
||||||
|
}
|
||||||
|
} /* end for */
|
||||||
|
|
||||||
|
#ifdef __TURBOC__
|
||||||
|
/* set stdin/stdout to binary, we're reading the PNM always! in binary format */
|
||||||
|
if (fp_rd == stdin)
|
||||||
|
{
|
||||||
|
setmode (STDIN, O_BINARY);
|
||||||
|
}
|
||||||
|
if (fp_wr == stdout)
|
||||||
|
{
|
||||||
|
setmode (STDOUT, O_BINARY);
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* call the conversion program itself */
|
||||||
|
if (pnm2png (fp_rd, fp_wr, fp_al, interlace, alpha) == FALSE)
|
||||||
|
{
|
||||||
|
fprintf (stderr, "PNM2PNG\n");
|
||||||
|
fprintf (stderr, "Error: unsuccessful converting to PNG-image\n");
|
||||||
|
exit (1);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* close input file */
|
||||||
|
fclose (fp_rd);
|
||||||
|
/* close output file */
|
||||||
|
fclose (fp_wr);
|
||||||
|
/* close alpha file */
|
||||||
|
if (alpha)
|
||||||
|
fclose (fp_al);
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* usage
|
||||||
|
*/
|
||||||
|
|
||||||
|
void usage()
|
||||||
|
{
|
||||||
|
fprintf (stderr, "PNM2PNG\n");
|
||||||
|
fprintf (stderr, " by Willem van Schaik, 1999\n");
|
||||||
|
#ifdef __TURBOC__
|
||||||
|
fprintf (stderr, " for Turbo-C and Borland-C compilers\n");
|
||||||
|
#else
|
||||||
|
fprintf (stderr, " for Linux (and Unix) compilers\n");
|
||||||
|
#endif
|
||||||
|
fprintf (stderr, "Usage: pnm2png [options] <file>.<pnm> [<file>.png]\n");
|
||||||
|
fprintf (stderr, " or: ... | pnm2png [options]\n");
|
||||||
|
fprintf (stderr, "Options:\n");
|
||||||
|
fprintf (stderr, " -i[nterlace] write png-file with interlacing on\n");
|
||||||
|
fprintf (stderr,
|
||||||
|
" -a[lpha] <file>.pgm read PNG alpha channel as pgm-file\n");
|
||||||
|
fprintf (stderr, " -h | -? print this help-information\n");
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* pnm2png
|
||||||
|
*/
|
||||||
|
|
||||||
|
BOOL pnm2png (FILE *pnm_file, FILE *png_file, FILE *alpha_file, BOOL interlace,
|
||||||
|
BOOL alpha)
|
||||||
|
{
|
||||||
|
png_struct *png_ptr = NULL;
|
||||||
|
png_info *info_ptr = NULL;
|
||||||
|
png_byte *png_pixels = NULL;
|
||||||
|
png_byte **row_pointers = NULL;
|
||||||
|
png_byte *pix_ptr = NULL;
|
||||||
|
volatile png_uint_32 row_bytes;
|
||||||
|
|
||||||
|
char type_token[16];
|
||||||
|
char width_token[16];
|
||||||
|
char height_token[16];
|
||||||
|
char maxval_token[16];
|
||||||
|
volatile int color_type=1;
|
||||||
|
unsigned long ul_width=0, ul_alpha_width=0;
|
||||||
|
unsigned long ul_height=0, ul_alpha_height=0;
|
||||||
|
unsigned long ul_maxval=0;
|
||||||
|
volatile png_uint_32 width=0, height=0;
|
||||||
|
volatile png_uint_32 alpha_width=0, alpha_height=0;
|
||||||
|
png_uint_32 maxval;
|
||||||
|
volatile int bit_depth = 0;
|
||||||
|
int channels=0;
|
||||||
|
int alpha_depth = 0;
|
||||||
|
int alpha_present=0;
|
||||||
|
int row, col;
|
||||||
|
BOOL raw, alpha_raw = FALSE;
|
||||||
|
#if defined(PNG_WRITE_INVERT_SUPPORTED) || defined(PNG_WRITE_PACK_SUPPORTED)
|
||||||
|
BOOL packed_bitmap = FALSE;
|
||||||
|
#endif
|
||||||
|
png_uint_32 tmp16;
|
||||||
|
int i;
|
||||||
|
|
||||||
|
/* read header of PNM file */
|
||||||
|
|
||||||
|
get_token(pnm_file, type_token);
|
||||||
|
if (type_token[0] != 'P')
|
||||||
|
{
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
else if ((type_token[1] == '1') || (type_token[1] == '4'))
|
||||||
|
{
|
||||||
|
#if defined(PNG_WRITE_INVERT_SUPPORTED) || defined(PNG_WRITE_PACK_SUPPORTED)
|
||||||
|
raw = (type_token[1] == '4');
|
||||||
|
color_type = PNG_COLOR_TYPE_GRAY;
|
||||||
|
get_token(pnm_file, width_token);
|
||||||
|
sscanf (width_token, "%lu", &ul_width);
|
||||||
|
width = (png_uint_32) ul_width;
|
||||||
|
get_token(pnm_file, height_token);
|
||||||
|
sscanf (height_token, "%lu", &ul_height);
|
||||||
|
height = (png_uint_32) ul_height;
|
||||||
|
bit_depth = 1;
|
||||||
|
packed_bitmap = TRUE;
|
||||||
|
#else
|
||||||
|
fprintf (stderr, "PNM2PNG built without PNG_WRITE_INVERT_SUPPORTED and \n");
|
||||||
|
fprintf (stderr, "PNG_WRITE_PACK_SUPPORTED can't read PBM (P1,P4) files\n");
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
else if ((type_token[1] == '2') || (type_token[1] == '5'))
|
||||||
|
{
|
||||||
|
raw = (type_token[1] == '5');
|
||||||
|
color_type = PNG_COLOR_TYPE_GRAY;
|
||||||
|
get_token(pnm_file, width_token);
|
||||||
|
sscanf (width_token, "%lu", &ul_width);
|
||||||
|
width = (png_uint_32) ul_width;
|
||||||
|
get_token(pnm_file, height_token);
|
||||||
|
sscanf (height_token, "%lu", &ul_height);
|
||||||
|
height = (png_uint_32) ul_height;
|
||||||
|
get_token(pnm_file, maxval_token);
|
||||||
|
sscanf (maxval_token, "%lu", &ul_maxval);
|
||||||
|
maxval = (png_uint_32) ul_maxval;
|
||||||
|
|
||||||
|
if (maxval <= 1)
|
||||||
|
bit_depth = 1;
|
||||||
|
else if (maxval <= 3)
|
||||||
|
bit_depth = 2;
|
||||||
|
else if (maxval <= 15)
|
||||||
|
bit_depth = 4;
|
||||||
|
else if (maxval <= 255)
|
||||||
|
bit_depth = 8;
|
||||||
|
else /* if (maxval <= 65535) */
|
||||||
|
bit_depth = 16;
|
||||||
|
}
|
||||||
|
else if ((type_token[1] == '3') || (type_token[1] == '6'))
|
||||||
|
{
|
||||||
|
raw = (type_token[1] == '6');
|
||||||
|
color_type = PNG_COLOR_TYPE_RGB;
|
||||||
|
get_token(pnm_file, width_token);
|
||||||
|
sscanf (width_token, "%lu", &ul_width);
|
||||||
|
width = (png_uint_32) ul_width;
|
||||||
|
get_token(pnm_file, height_token);
|
||||||
|
sscanf (height_token, "%lu", &ul_height);
|
||||||
|
height = (png_uint_32) ul_height;
|
||||||
|
get_token(pnm_file, maxval_token);
|
||||||
|
sscanf (maxval_token, "%lu", &ul_maxval);
|
||||||
|
maxval = (png_uint_32) ul_maxval;
|
||||||
|
if (maxval <= 1)
|
||||||
|
bit_depth = 1;
|
||||||
|
else if (maxval <= 3)
|
||||||
|
bit_depth = 2;
|
||||||
|
else if (maxval <= 15)
|
||||||
|
bit_depth = 4;
|
||||||
|
else if (maxval <= 255)
|
||||||
|
bit_depth = 8;
|
||||||
|
else /* if (maxval <= 65535) */
|
||||||
|
bit_depth = 16;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* read header of PGM file with alpha channel */
|
||||||
|
|
||||||
|
if (alpha)
|
||||||
|
{
|
||||||
|
if (color_type == PNG_COLOR_TYPE_GRAY)
|
||||||
|
color_type = PNG_COLOR_TYPE_GRAY_ALPHA;
|
||||||
|
if (color_type == PNG_COLOR_TYPE_RGB)
|
||||||
|
color_type = PNG_COLOR_TYPE_RGB_ALPHA;
|
||||||
|
|
||||||
|
get_token(alpha_file, type_token);
|
||||||
|
if (type_token[0] != 'P')
|
||||||
|
{
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
else if ((type_token[1] == '2') || (type_token[1] == '5'))
|
||||||
|
{
|
||||||
|
alpha_raw = (type_token[1] == '5');
|
||||||
|
get_token(alpha_file, width_token);
|
||||||
|
sscanf (width_token, "%lu", &ul_alpha_width);
|
||||||
|
alpha_width=(png_uint_32) ul_alpha_width;
|
||||||
|
if (alpha_width != width)
|
||||||
|
return FALSE;
|
||||||
|
get_token(alpha_file, height_token);
|
||||||
|
sscanf (height_token, "%lu", &ul_alpha_height);
|
||||||
|
alpha_height = (png_uint_32) ul_alpha_height;
|
||||||
|
if (alpha_height != height)
|
||||||
|
return FALSE;
|
||||||
|
get_token(alpha_file, maxval_token);
|
||||||
|
sscanf (maxval_token, "%lu", &ul_maxval);
|
||||||
|
maxval = (png_uint_32) ul_maxval;
|
||||||
|
if (maxval <= 1)
|
||||||
|
alpha_depth = 1;
|
||||||
|
else if (maxval <= 3)
|
||||||
|
alpha_depth = 2;
|
||||||
|
else if (maxval <= 15)
|
||||||
|
alpha_depth = 4;
|
||||||
|
else if (maxval <= 255)
|
||||||
|
alpha_depth = 8;
|
||||||
|
else /* if (maxval <= 65535) */
|
||||||
|
alpha_depth = 16;
|
||||||
|
if (alpha_depth != bit_depth)
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
} /* end if alpha */
|
||||||
|
|
||||||
|
/* calculate the number of channels and store alpha-presence */
|
||||||
|
if (color_type == PNG_COLOR_TYPE_GRAY)
|
||||||
|
channels = 1;
|
||||||
|
else if (color_type == PNG_COLOR_TYPE_GRAY_ALPHA)
|
||||||
|
channels = 2;
|
||||||
|
else if (color_type == PNG_COLOR_TYPE_RGB)
|
||||||
|
channels = 3;
|
||||||
|
else if (color_type == PNG_COLOR_TYPE_RGB_ALPHA)
|
||||||
|
channels = 4;
|
||||||
|
#if 0
|
||||||
|
else
|
||||||
|
channels = 0; /* cannot happen */
|
||||||
|
#endif
|
||||||
|
|
||||||
|
alpha_present = (channels - 1) % 2;
|
||||||
|
|
||||||
|
#if defined(PNG_WRITE_INVERT_SUPPORTED) || defined(PNG_WRITE_PACK_SUPPORTED)
|
||||||
|
if (packed_bitmap)
|
||||||
|
/* row data is as many bytes as can fit width x channels x bit_depth */
|
||||||
|
row_bytes = (width * channels * bit_depth + 7) / 8;
|
||||||
|
else
|
||||||
|
#endif
|
||||||
|
/* row_bytes is the width x number of channels x (bit-depth / 8) */
|
||||||
|
row_bytes = width * channels * ((bit_depth <= 8) ? 1 : 2);
|
||||||
|
|
||||||
|
if ((row_bytes == 0 || (size_t)height > ((size_t)(-1))/(size_t)row_bytes))
|
||||||
|
{
|
||||||
|
/* too big */
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
if ((png_pixels = (png_byte *)
|
||||||
|
malloc ((size_t)row_bytes * (size_t)height * sizeof (png_byte))) == NULL)
|
||||||
|
return FALSE;
|
||||||
|
|
||||||
|
/* read data from PNM file */
|
||||||
|
pix_ptr = png_pixels;
|
||||||
|
|
||||||
|
for (row = 0; row < (int) height; row++)
|
||||||
|
{
|
||||||
|
#if defined(PNG_WRITE_INVERT_SUPPORTED) || defined(PNG_WRITE_PACK_SUPPORTED)
|
||||||
|
if (packed_bitmap)
|
||||||
|
{
|
||||||
|
for (i = 0; i < (int) row_bytes; i++)
|
||||||
|
/* png supports this format natively so no conversion is needed */
|
||||||
|
*pix_ptr++ = get_data (pnm_file, 8);
|
||||||
|
} else
|
||||||
|
#endif
|
||||||
|
{
|
||||||
|
for (col = 0; col < (int) width; col++)
|
||||||
|
{
|
||||||
|
for (i = 0; i < (channels - alpha_present); i++)
|
||||||
|
{
|
||||||
|
if (raw)
|
||||||
|
*pix_ptr++ = get_data (pnm_file, bit_depth);
|
||||||
|
else
|
||||||
|
if (bit_depth <= 8)
|
||||||
|
*pix_ptr++ = get_value (pnm_file, bit_depth);
|
||||||
|
else
|
||||||
|
{
|
||||||
|
tmp16 = get_value (pnm_file, bit_depth);
|
||||||
|
*pix_ptr = (png_byte) ((tmp16 >> 8) & 0xFF);
|
||||||
|
pix_ptr++;
|
||||||
|
*pix_ptr = (png_byte) (tmp16 & 0xFF);
|
||||||
|
pix_ptr++;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (alpha) /* read alpha-channel from pgm file */
|
||||||
|
{
|
||||||
|
if (alpha_raw)
|
||||||
|
*pix_ptr++ = get_data (alpha_file, alpha_depth);
|
||||||
|
else
|
||||||
|
if (alpha_depth <= 8)
|
||||||
|
*pix_ptr++ = get_value (alpha_file, bit_depth);
|
||||||
|
else
|
||||||
|
{
|
||||||
|
tmp16 = get_value (alpha_file, bit_depth);
|
||||||
|
*pix_ptr++ = (png_byte) ((tmp16 >> 8) & 0xFF);
|
||||||
|
*pix_ptr++ = (png_byte) (tmp16 & 0xFF);
|
||||||
|
}
|
||||||
|
} /* if alpha */
|
||||||
|
} /* if packed_bitmap */
|
||||||
|
} /* end for col */
|
||||||
|
} /* end for row */
|
||||||
|
|
||||||
|
/* prepare the standard PNG structures */
|
||||||
|
png_ptr = png_create_write_struct (png_get_libpng_ver(NULL), NULL, NULL,
|
||||||
|
NULL);
|
||||||
|
if (!png_ptr)
|
||||||
|
{
|
||||||
|
free (png_pixels);
|
||||||
|
png_pixels = NULL;
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
info_ptr = png_create_info_struct (png_ptr);
|
||||||
|
if (!info_ptr)
|
||||||
|
{
|
||||||
|
png_destroy_write_struct (&png_ptr, (png_infopp) NULL);
|
||||||
|
free (png_pixels);
|
||||||
|
png_pixels = NULL;
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
|
#if defined(PNG_WRITE_INVERT_SUPPORTED) || defined(PNG_WRITE_PACK_SUPPORTED)
|
||||||
|
if (packed_bitmap == TRUE)
|
||||||
|
{
|
||||||
|
png_set_packing (png_ptr);
|
||||||
|
png_set_invert_mono (png_ptr);
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* setjmp() must be called in every function that calls a PNG-reading libpng function */
|
||||||
|
if (setjmp (png_jmpbuf(png_ptr)))
|
||||||
|
{
|
||||||
|
png_destroy_write_struct (&png_ptr, &info_ptr);
|
||||||
|
free (png_pixels);
|
||||||
|
png_pixels = NULL;
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* initialize the png structure */
|
||||||
|
png_init_io (png_ptr, png_file);
|
||||||
|
|
||||||
|
/* we're going to write more or less the same PNG as the input file */
|
||||||
|
png_set_IHDR (png_ptr, info_ptr, width, height, bit_depth, color_type,
|
||||||
|
(!interlace) ? PNG_INTERLACE_NONE : PNG_INTERLACE_ADAM7,
|
||||||
|
PNG_COMPRESSION_TYPE_BASE, PNG_FILTER_TYPE_BASE);
|
||||||
|
|
||||||
|
/* write the file header information */
|
||||||
|
png_write_info (png_ptr, info_ptr);
|
||||||
|
|
||||||
|
/* if needed we will allocate memory for an new array of row-pointers */
|
||||||
|
if (row_pointers == (unsigned char**) NULL)
|
||||||
|
{
|
||||||
|
if ((row_pointers = (png_byte **)
|
||||||
|
malloc (height * sizeof (png_bytep))) == NULL)
|
||||||
|
{
|
||||||
|
png_destroy_write_struct (&png_ptr, &info_ptr);
|
||||||
|
free (png_pixels);
|
||||||
|
png_pixels = NULL;
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* set the individual row_pointers to point at the correct offsets */
|
||||||
|
for (i = 0; i < (int) height; i++)
|
||||||
|
row_pointers[i] = png_pixels + i * row_bytes;
|
||||||
|
|
||||||
|
/* write out the entire image data in one call */
|
||||||
|
png_write_image (png_ptr, row_pointers);
|
||||||
|
|
||||||
|
/* write the additional chunks to the PNG file (not really needed) */
|
||||||
|
png_write_end (png_ptr, info_ptr);
|
||||||
|
|
||||||
|
/* clean up after the write, and free any memory allocated */
|
||||||
|
png_destroy_write_struct (&png_ptr, &info_ptr);
|
||||||
|
|
||||||
|
if (row_pointers != (unsigned char**) NULL)
|
||||||
|
free (row_pointers);
|
||||||
|
if (png_pixels != (unsigned char*) NULL)
|
||||||
|
free (png_pixels);
|
||||||
|
|
||||||
|
PNGMINUS_UNUSED(raw); /* Quiet a Coverity defect */
|
||||||
|
|
||||||
|
return TRUE;
|
||||||
|
} /* end of pnm2png */
|
||||||
|
|
||||||
|
/*
|
||||||
|
* get_token() - gets the first string after whitespace
|
||||||
|
*/
|
||||||
|
|
||||||
|
void get_token(FILE *pnm_file, char *token)
|
||||||
|
{
|
||||||
|
int i = 0;
|
||||||
|
int ret;
|
||||||
|
|
||||||
|
/* remove white-space and comment lines */
|
||||||
|
do
|
||||||
|
{
|
||||||
|
ret = fgetc(pnm_file);
|
||||||
|
if (ret == '#')
|
||||||
|
{
|
||||||
|
/* the rest of this line is a comment */
|
||||||
|
do
|
||||||
|
{
|
||||||
|
ret = fgetc(pnm_file);
|
||||||
|
}
|
||||||
|
while ((ret != '\n') && (ret != '\r') && (ret != EOF));
|
||||||
|
}
|
||||||
|
if (ret == EOF) break;
|
||||||
|
token[i] = (unsigned char) ret;
|
||||||
|
}
|
||||||
|
while ((token[i] == '\n') || (token[i] == '\r') || (token[i] == ' '));
|
||||||
|
|
||||||
|
/* read string */
|
||||||
|
do
|
||||||
|
{
|
||||||
|
ret = fgetc(pnm_file);
|
||||||
|
if (ret == EOF) break;
|
||||||
|
i++;
|
||||||
|
token[i] = (unsigned char) ret;
|
||||||
|
}
|
||||||
|
while ((token[i] != '\n') && (token[i] != '\r') && (token[i] != ' '));
|
||||||
|
|
||||||
|
token[i] = '\0';
|
||||||
|
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* get_data() - takes first byte and converts into next pixel value,
|
||||||
|
* taking as much bits as defined by bit-depth and
|
||||||
|
* using the bit-depth to fill up a byte (0Ah -> AAh)
|
||||||
|
*/
|
||||||
|
|
||||||
|
png_uint_32 get_data (FILE *pnm_file, int depth)
|
||||||
|
{
|
||||||
|
static int bits_left = 0;
|
||||||
|
static int old_value = 0;
|
||||||
|
static int mask = 0;
|
||||||
|
int i;
|
||||||
|
png_uint_32 ret_value;
|
||||||
|
|
||||||
|
if (mask == 0)
|
||||||
|
for (i = 0; i < depth; i++)
|
||||||
|
mask = (mask >> 1) | 0x80;
|
||||||
|
|
||||||
|
if (bits_left <= 0)
|
||||||
|
{
|
||||||
|
old_value = fgetc (pnm_file);
|
||||||
|
bits_left = 8;
|
||||||
|
}
|
||||||
|
|
||||||
|
ret_value = old_value & mask;
|
||||||
|
for (i = 1; i < (8 / depth); i++)
|
||||||
|
ret_value = ret_value || (ret_value >> depth);
|
||||||
|
|
||||||
|
old_value = (old_value << depth) & 0xFF;
|
||||||
|
bits_left -= depth;
|
||||||
|
|
||||||
|
return ret_value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* get_value() - takes first (numeric) string and converts into number,
|
||||||
|
* using the bit-depth to fill up a byte (0Ah -> AAh)
|
||||||
|
*/
|
||||||
|
|
||||||
|
png_uint_32 get_value (FILE *pnm_file, int depth)
|
||||||
|
{
|
||||||
|
static png_uint_32 mask = 0;
|
||||||
|
png_byte token[16];
|
||||||
|
unsigned long ul_ret_value;
|
||||||
|
png_uint_32 ret_value;
|
||||||
|
int i = 0;
|
||||||
|
|
||||||
|
if (mask == 0)
|
||||||
|
for (i = 0; i < depth; i++)
|
||||||
|
mask = (mask << 1) | 0x01;
|
||||||
|
|
||||||
|
get_token (pnm_file, (char *) token);
|
||||||
|
sscanf ((const char *) token, "%lu", &ul_ret_value);
|
||||||
|
ret_value = (png_uint_32) ul_ret_value;
|
||||||
|
|
||||||
|
ret_value &= mask;
|
||||||
|
|
||||||
|
if (depth < 8)
|
||||||
|
for (i = 0; i < (8 / depth); i++)
|
||||||
|
ret_value = (ret_value << depth) || ret_value;
|
||||||
|
|
||||||
|
return ret_value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* end of source */
|
||||||
|
|
42
dependencies/libpng/src/contrib/pngminus/pnm2png.sh
vendored
Normal file
@ -0,0 +1,42 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
# -- grayscale
|
||||||
|
./pnm2png basn0g01.pgm basn0g01.png
|
||||||
|
./pnm2png basn0g02.pgm basn0g02.png
|
||||||
|
./pnm2png basn0g04.pgm basn0g04.png
|
||||||
|
./pnm2png basn0g08.pgm basn0g08.png
|
||||||
|
./pnm2png basn0g16.pgm basn0g16.png
|
||||||
|
# -- full-color
|
||||||
|
./pnm2png basn2c08.ppm basn2c08.png
|
||||||
|
./pnm2png basn2c16.ppm basn2c16.png
|
||||||
|
# -- palletted
|
||||||
|
./pnm2png basn3p01.ppm basn3p01.png
|
||||||
|
./pnm2png basn3p02.ppm basn3p02.png
|
||||||
|
./pnm2png basn3p04.ppm basn3p04.png
|
||||||
|
./pnm2png basn3p08.ppm basn3p08.png
|
||||||
|
# -- gray with alpha-channel
|
||||||
|
./pnm2png -alpha basn6a08.pgm basn4a08.pgm basn4a08.png
|
||||||
|
./pnm2png -alpha basn6a16.pgm basn4a16.pgm basn4a16.png
|
||||||
|
# -- color with alpha-channel
|
||||||
|
./pnm2png -alpha basn6a08.pgm basn6a08.ppm basn6a08.png
|
||||||
|
./pnm2png -alpha basn6a16.pgm basn6a16.ppm basn6a16.png
|
||||||
|
# -- grayscale
|
||||||
|
./pnm2png rawn0g01.pgm rawn0g01.png
|
||||||
|
./pnm2png rawn0g02.pgm rawn0g02.png
|
||||||
|
./pnm2png rawn0g04.pgm rawn0g04.png
|
||||||
|
./pnm2png rawn0g08.pgm rawn0g08.png
|
||||||
|
./pnm2png rawn0g16.pgm rawn0g16.png
|
||||||
|
# -- full-color
|
||||||
|
./pnm2png rawn2c08.ppm rawn2c08.png
|
||||||
|
./pnm2png rawn2c16.ppm rawn2c16.png
|
||||||
|
# -- palletted
|
||||||
|
./pnm2png rawn3p01.ppm rawn3p01.png
|
||||||
|
./pnm2png rawn3p02.ppm rawn3p02.png
|
||||||
|
./pnm2png rawn3p04.ppm rawn3p04.png
|
||||||
|
./pnm2png rawn3p08.ppm rawn3p08.png
|
||||||
|
# -- gray with alpha-channel
|
||||||
|
./pnm2png -alpha rawn6a08.pgm rawn4a08.pgm rawn4a08.png
|
||||||
|
./pnm2png -alpha rawn6a16.pgm rawn4a16.pgm rawn4a16.png
|
||||||
|
# -- color with alpha-channel
|
||||||
|
./pnm2png -alpha rawn6a08.pgm rawn6a08.ppm rawn6a08.png
|
||||||
|
./pnm2png -alpha rawn6a16.pgm rawn6a16.ppm rawn6a16.png
|
||||||
|
|
85
dependencies/libpng/src/contrib/pngsuite/README
vendored
Normal file
@ -0,0 +1,85 @@
|
|||||||
|
|
||||||
|
pngsuite
|
||||||
|
--------
|
||||||
|
(c) Willem van Schaik, 1999
|
||||||
|
|
||||||
|
Permission to use, copy, and distribute these images for any purpose and
|
||||||
|
without fee is hereby granted.
|
||||||
|
|
||||||
|
These 15 images are part of the much larger PngSuite test-set of
|
||||||
|
images, available for developers of PNG supporting software. The
|
||||||
|
complete set, available at http:/www.schaik.com/pngsuite/, contains
|
||||||
|
a variety of images to test interlacing, gamma settings, ancillary
|
||||||
|
chunks, etc.
|
||||||
|
|
||||||
|
The images in this directory represent the basic PNG color-types:
|
||||||
|
grayscale (1-16 bit deep), full color (8 or 16 bit), paletted
|
||||||
|
(1-8 bit) and grayscale or color images with alpha channel. You
|
||||||
|
can use them to test the proper functioning of PNG software.
|
||||||
|
|
||||||
|
filename depth type
|
||||||
|
------------ ------ --------------
|
||||||
|
basn0g01.png 1-bit grayscale
|
||||||
|
basn0g02.png 2-bit grayscale
|
||||||
|
basn0g04.png 4-bit grayscale
|
||||||
|
basn0g08.png 8-bit grayscale
|
||||||
|
basn0g16.png 16-bit grayscale
|
||||||
|
basn2c08.png 8-bit truecolor
|
||||||
|
basn2c16.png 16-bit truecolor
|
||||||
|
basn3p01.png 1-bit paletted
|
||||||
|
basn3p02.png 2-bit paletted
|
||||||
|
basn3p04.png 4-bit paletted
|
||||||
|
basn3p08.png 8-bit paletted
|
||||||
|
basn4a08.png 8-bit gray with alpha
|
||||||
|
basn4a16.png 16-bit gray with alpha
|
||||||
|
basn6a08.png 8-bit RGBA
|
||||||
|
basn6a16.png 16-bit RGBA
|
||||||
|
|
||||||
|
Here is the correct result of typing "pngtest -m *.png" in
|
||||||
|
this directory:
|
||||||
|
|
||||||
|
Testing basn0g01.png: PASS (524 zero samples)
|
||||||
|
Filter 0 was used 32 times
|
||||||
|
Testing basn0g02.png: PASS (448 zero samples)
|
||||||
|
Filter 0 was used 32 times
|
||||||
|
Testing basn0g04.png: PASS (520 zero samples)
|
||||||
|
Filter 0 was used 32 times
|
||||||
|
Testing basn0g08.png: PASS (3 zero samples)
|
||||||
|
Filter 1 was used 9 times
|
||||||
|
Filter 4 was used 23 times
|
||||||
|
Testing basn0g16.png: PASS (1 zero samples)
|
||||||
|
Filter 1 was used 1 times
|
||||||
|
Filter 2 was used 31 times
|
||||||
|
Testing basn2c08.png: PASS (6 zero samples)
|
||||||
|
Filter 1 was used 5 times
|
||||||
|
Filter 4 was used 27 times
|
||||||
|
Testing basn2c16.png: PASS (592 zero samples)
|
||||||
|
Filter 1 was used 1 times
|
||||||
|
Filter 4 was used 31 times
|
||||||
|
Testing basn3p01.png: PASS (512 zero samples)
|
||||||
|
Filter 0 was used 32 times
|
||||||
|
Testing basn3p02.png: PASS (448 zero samples)
|
||||||
|
Filter 0 was used 32 times
|
||||||
|
Testing basn3p04.png: PASS (544 zero samples)
|
||||||
|
Filter 0 was used 32 times
|
||||||
|
Testing basn3p08.png: PASS (4 zero samples)
|
||||||
|
Filter 0 was used 32 times
|
||||||
|
Testing basn4a08.png: PASS (32 zero samples)
|
||||||
|
Filter 1 was used 1 times
|
||||||
|
Filter 4 was used 31 times
|
||||||
|
Testing basn4a16.png: PASS (64 zero samples)
|
||||||
|
Filter 0 was used 1 times
|
||||||
|
Filter 1 was used 2 times
|
||||||
|
Filter 2 was used 1 times
|
||||||
|
Filter 4 was used 28 times
|
||||||
|
Testing basn6a08.png: PASS (160 zero samples)
|
||||||
|
Filter 1 was used 1 times
|
||||||
|
Filter 4 was used 31 times
|
||||||
|
Testing basn6a16.png: PASS (1072 zero samples)
|
||||||
|
Filter 1 was used 4 times
|
||||||
|
Filter 4 was used 28 times
|
||||||
|
libpng passes test
|
||||||
|
|
||||||
|
Willem van Schaik
|
||||||
|
<willem@schaik.com>
|
||||||
|
October 1999
|
BIN
dependencies/libpng/src/contrib/pngsuite/basn0g01.png
vendored
Normal file
After Width: | Height: | Size: 164 B |
BIN
dependencies/libpng/src/contrib/pngsuite/basn0g02.png
vendored
Normal file
After Width: | Height: | Size: 104 B |
BIN
dependencies/libpng/src/contrib/pngsuite/basn0g04.png
vendored
Normal file
After Width: | Height: | Size: 145 B |
BIN
dependencies/libpng/src/contrib/pngsuite/basn0g08.png
vendored
Normal file
After Width: | Height: | Size: 138 B |
BIN
dependencies/libpng/src/contrib/pngsuite/basn0g16.png
vendored
Normal file
After Width: | Height: | Size: 167 B |
BIN
dependencies/libpng/src/contrib/pngsuite/basn2c08.png
vendored
Normal file
After Width: | Height: | Size: 145 B |
BIN
dependencies/libpng/src/contrib/pngsuite/basn2c16.png
vendored
Normal file
After Width: | Height: | Size: 302 B |
BIN
dependencies/libpng/src/contrib/pngsuite/basn3p01.png
vendored
Normal file
After Width: | Height: | Size: 112 B |
BIN
dependencies/libpng/src/contrib/pngsuite/basn3p02.png
vendored
Normal file
After Width: | Height: | Size: 146 B |
BIN
dependencies/libpng/src/contrib/pngsuite/basn3p04.png
vendored
Normal file
After Width: | Height: | Size: 216 B |
BIN
dependencies/libpng/src/contrib/pngsuite/basn3p08.png
vendored
Normal file
After Width: | Height: | Size: 1.3 KiB |