Audio (91) Datatype (15) Demo (41) Development (238) Document (52) Driver (19) Emulation (59) Game (491) Graphics (200) Library (21) Network (53) Office (20) Utility (242) Video (17)
Total files: 1559
Full index file Recent index file
Part of aros exec |
[Show comments] [Show snapshots] [Show videos] [Show content] [Replace file] tiff.hwp
========
This plugin allows Hollywood to load and save images in the TIFF image format.
Usage is simple: Once this plugin has been installed, Hollywood will be able to
load *.tif images on the fly.
If you want to save images in the *.tif format, use one of the constants
#IMGFMT_TIFF,
#IMGFMT_TIFFJPEG, #IMGFMT_TIFFFLATE that this plugin makes available once
loaded. For
example:
SaveBrush(1, "test.tif", 0, #IMGFMT_TIFF)
Note that #IMGFMT_TIFF and #IMGFMT_TIFFFLATE both use lossless compression.
#IMGFMT_TIFFJPEG,
however, is lossy. You can use the "Quality" tag to set the compression level in
that case.
The TIFF format supports alpha channel graphics. If you want to load a TIFF with
alpha channel, simply set the "LoadAlpha" field to TRUE. If you want to save a
brush
that has an alpha channel using #IMGFMT_TIFF, the TIFF plugin will automatically
create a TIFF image with an alpha channel for you.
History
=======
Version 1.1: (01-Jul-15)
- New [Linux]: Added build for Linux ARM
- Fix [Linux/MacOS]: Plugin is now compiled as position-independent code (PIC)
- Fix [OS3]: FPU version will cleanly exit now in case there is no FPU
- New: Added support for adapter-specific file loading (requires Hollywood 6.0)
- Fix: IsPicture() didn't return correct width, height, and alpha channel
information
- New: Added support for writing JPEG and FLATE compressed images; use
#IMGFMT_TIFFJPEG and
#IMGFMT_TIFFFLATE to access these new savers; the #IMGFMT_TIFFJPEG saver
supports the
"Quality" tag and also alpha channel images (requires Hollywood 5.3)
- New: Added support for loading JPEG and FLATE compressed images (requires
Hollywood 5.3)
- New: Added file types information for Hollywood 5.3
Version 1.0: (14-Apr-13)
- First release
Copyright
=========
This plugin was written by Andreas Falkenhahn <andreas()airsoftsoftwair.de>
See the COPYING file in this package for conditions concerning distribution
of this plugin. Visit http://www.hollywood-mal.com/ for more information.
Copyright (c) 2013-2015 Andreas Falkenhahn
Copyright (c) 1988-1997 Sam Leffler
Copyright (c) 1991-1997 Silicon Graphics, Inc.
Permission to use, copy, modify, distribute, and sell this software and
its documentation for any purpose is hereby granted without fee, provided
that (i) the above copyright notices and this permission notice appear in
all copies of the software and related documentation, and (ii) the names of
Sam Leffler and Silicon Graphics may not be used in any advertising or
publicity relating to the software without the specific, prior written
permission of Sam Leffler and Silicon Graphics.
THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND,
EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY
WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
IN NO EVENT SHALL SAM LEFFLER OR SILICON GRAPHICS BE LIABLE FOR
ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND,
OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF
LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
OF THIS SOFTWARE.
|