GraphicsMagick Commits | 1 May 2012 13:16
Picon

GraphicsMagick: * coders/mat.c Animated movies inside 4D matrice...

changeset 8637ab013e8a in /hg/GraphicsMagick
details: http://hg.GraphicsMagick.org/hg/GraphicsMagick?cmd=changeset;node=8637ab013e8a
summary: * coders/mat.c Animated movies inside 4D matrices are loaded now.

diffstat:

 ChangeLog    |   4 ++++
 coders/mat.c |  46 ++++++++++++++++++++++++++++++++--------------
 2 files changed, 36 insertions(+), 14 deletions(-)

diffs (113 lines):

diff -r 2b07e73c5d0f -r 8637ab013e8a ChangeLog
--- a/ChangeLog	Sun Apr 29 20:27:39 2012 -0500
+++ b/ChangeLog	Tue May 01 13:00:15 2012 +0200
 <at>  <at>  -1,3 +1,7  <at>  <at> 
+2010-12-30 Fojtik Jaroslav  <JaFojtik <at> seznam.cz>
+
+	* coders/mat.c Animated movies inside 4D matrices are loaded now.
+
 2012-04-29  Bob Friesenhahn  <bfriesen <at> simple.dallas.tx.us>

 	* magick/pixel_iterator.c: Limit the number of threads to use in
diff -r 2b07e73c5d0f -r 8637ab013e8a coders/mat.c
--- a/coders/mat.c	Sun Apr 29 20:27:39 2012 -0500
+++ b/coders/mat.c	Tue May 01 13:00:15 2012 +0200
 <at>  <at>  -441,7 +441,8  <at>  <at> 
   long ldblk;
   unsigned char *BImgBuff = NULL;
   double MinVal, MaxVal;
(Continue reading)

GraphicsMagick Commits | 1 May 2012 16:00
Picon

GraphicsMagick: Update generated files

changeset c273bde7769c in /hg/GraphicsMagick
details: http://hg.GraphicsMagick.org/hg/GraphicsMagick?cmd=changeset;node=c273bde7769c
summary: Update generated files

diffstat:

 VisualMagick/installer/inc/version.isx |  4 ++--
 magick/version.h                       |  4 ++--
 www/Changelog.html                     |  6 ++++++
 3 files changed, 10 insertions(+), 4 deletions(-)

diffs (41 lines):

diff -r 8637ab013e8a -r c273bde7769c VisualMagick/installer/inc/version.isx
--- a/VisualMagick/installer/inc/version.isx	Tue May 01 13:00:15 2012 +0200
+++ b/VisualMagick/installer/inc/version.isx	Tue May 01 09:00:44 2012 -0500
 <at>  <at>  -10,5 +10,5  <at>  <at> 

 #define public MagickPackageName "GraphicsMagick"
 #define public MagickPackageVersion "1.4"
-#define public MagickPackageVersionAddendum ".020120429"
-#define public MagickPackageReleaseDate "snapshot-20120429"
+#define public MagickPackageVersionAddendum ".020101230"
+#define public MagickPackageReleaseDate "snapshot-20101230"
diff -r 8637ab013e8a -r c273bde7769c magick/version.h
--- a/magick/version.h	Tue May 01 13:00:15 2012 +0200
+++ b/magick/version.h	Tue May 01 09:00:44 2012 -0500
 <at>  <at>  -38,8 +38,8  <at>  <at> 
 #define MagickLibVersion  0x110800
 #define MagickLibVersionText  "1.4"
(Continue reading)

GraphicsMagick Commits | 5 May 2012 22:18
Picon

GraphicsMagick: Fix SFW reader.

changeset e5c06c564524 in /hg/GraphicsMagick
details: http://hg.GraphicsMagick.org/hg/GraphicsMagick?cmd=changeset;node=e5c06c564524
summary: Fix SFW reader.

diffstat:

 ChangeLog                              |   8 ++++++-
 VisualMagick/installer/inc/version.isx |   4 +-
 coders/sfw.c                           |  39 +++++++++++++++++++++++++--------
 magick/version.h                       |   4 +-
 www/Changelog.html                     |  10 +++++++-
 5 files changed, 49 insertions(+), 16 deletions(-)

diffs (140 lines):

diff -r c273bde7769c -r e5c06c564524 ChangeLog
--- a/ChangeLog	Tue May 01 09:00:44 2012 -0500
+++ b/ChangeLog	Sat May 05 15:18:21 2012 -0500
 <at>  <at>  -1,4 +1,10  <at>  <at> 
-2010-12-30 Fojtik Jaroslav  <JaFojtik <at> seznam.cz>
+2012-05-05  Bob Friesenhahn  <bfriesen <at> simple.dallas.tx.us>
+
+	* coders/sfw.c (ReadSFWImage): Fix variety of bugs related to
+	closing Image and blob at wrong points.  SFW reader is working
+	again.  Resolves SourceForge bug ID 523430 "sfw file open failed".
+
+2012-05-01 Fojtik Jaroslav  <JaFojtik <at> seznam.cz>

 	* coders/mat.c Animated movies inside 4D matrices are loaded now.

(Continue reading)

GraphicsMagick Commits | 5 May 2012 22:51
Picon

GraphicsMagick: GetImageBoundingBox(): Only apply opacity-based ...

changeset bcac6bd55ccb in /hg/GraphicsMagick
details: http://hg.GraphicsMagick.org/hg/GraphicsMagick?cmd=changeset;node=bcac6bd55ccb
summary: GetImageBoundingBox(): Only apply opacity-based bounding box detection if all three test
points are non-opaque and the same value.

diffstat:

 ChangeLog          |  5 +++++
 magick/analyze.c   |  8 ++++++--
 www/Changelog.html |  4 ++++
 3 files changed, 15 insertions(+), 2 deletions(-)

diffs (47 lines):

diff -r e5c06c564524 -r bcac6bd55ccb ChangeLog
--- a/ChangeLog	Sat May 05 15:18:21 2012 -0500
+++ b/ChangeLog	Sat May 05 15:51:39 2012 -0500
 <at>  <at>  -1,5 +1,10  <at>  <at> 
 2012-05-05  Bob Friesenhahn  <bfriesen <at> simple.dallas.tx.us>

+	* magick/analyze.c (GetImageBoundingBox): Only apply opacity-based
+	bounding box detection if all three test points are non-opaque and
+	the same value.  Resolves SourceForge bug ID 3522804 "convert
+	-trim fails on 8-bit PNG that ImageMagick can trim".
+
 	* coders/sfw.c (ReadSFWImage): Fix variety of bugs related to
 	closing Image and blob at wrong points.  SFW reader is working
 	again.  Resolves SourceForge bug ID 523430 "sfw file open failed".
diff -r e5c06c564524 -r bcac6bd55ccb magick/analyze.c
--- a/magick/analyze.c	Sat May 05 15:18:21 2012 -0500
(Continue reading)

GraphicsMagick Commits | 5 May 2012 23:37
Picon

GraphicsMagick: Added a PerlMagick test for Seattle FilmWorks fo...

changeset 1083d5a9b440 in /hg/GraphicsMagick
details: http://hg.GraphicsMagick.org/hg/GraphicsMagick?cmd=changeset;node=1083d5a9b440
summary: Added a PerlMagick test for Seattle FilmWorks format.

diffstat:

 ChangeLog                                 |    5 +++++
 PerlMagick/t/jpeg/input.sfw               |    0 
 PerlMagick/t/jpeg/read.t                  |   10 +++++++---
 PerlMagick/t/reference/jpeg/read_sfw.miff |    0 
 www/Changelog.html                        |    4 ++++
 www/formats.html                          |    2 +-
 www/formats.rst                           |    2 +-
 7 files changed, 18 insertions(+), 5 deletions(-)

diffs (86 lines):

diff -r bcac6bd55ccb -r 1083d5a9b440 ChangeLog
--- a/ChangeLog	Sat May 05 15:51:39 2012 -0500
+++ b/ChangeLog	Sat May 05 16:37:35 2012 -0500
 <at>  <at>  -1,5 +1,10  <at>  <at> 
 2012-05-05  Bob Friesenhahn  <bfriesen <at> simple.dallas.tx.us>

+	* PerlMagick/t/jpeg/read.t: Add a test for reading Seattle
+	FilmWorks format based on the sample image from
+	http://www.algonet.se/~cyren/sfw/.  Image was approved for
+	distribution in GraphicsMagick by Bengt Cyrén.
+
 	* magick/analyze.c (GetImageBoundingBox): Only apply opacity-based
 	bounding box detection if all three test points are non-opaque and
(Continue reading)

GraphicsMagick Commits | 6 May 2012 00:00
Picon

GraphicsMagick: SFW: restore original filename and format.

changeset a52d7c262c45 in /hg/GraphicsMagick
details: http://hg.GraphicsMagick.org/hg/GraphicsMagick?cmd=changeset;node=a52d7c262c45
summary: SFW: restore original filename and format.

diffstat:

 ChangeLog          |   3 +++
 coders/sfw.c       |  11 +++++++++++
 www/Changelog.html |   2 ++
 3 files changed, 16 insertions(+), 0 deletions(-)

diffs (59 lines):

diff -r 1083d5a9b440 -r a52d7c262c45 ChangeLog
--- a/ChangeLog	Sat May 05 16:37:35 2012 -0500
+++ b/ChangeLog	Sat May 05 17:00:14 2012 -0500
 <at>  <at>  -1,5 +1,8  <at>  <at> 
 2012-05-05  Bob Friesenhahn  <bfriesen <at> simple.dallas.tx.us>

+	* coders/sfw.c (ReadSFWImage): Restore original filename and
+	format.
+
 	* PerlMagick/t/jpeg/read.t: Add a test for reading Seattle
 	FilmWorks format based on the sample image from
 	http://www.algonet.se/~cyren/sfw/.  Image was approved for
diff -r 1083d5a9b440 -r a52d7c262c45 coders/sfw.c
--- a/coders/sfw.c	Sat May 05 16:37:35 2012 -0500
+++ b/coders/sfw.c	Sat May 05 17:00:14 2012 -0500
 <at>  <at>  -209,6 +209,10  <at>  <at> 
     *header,
(Continue reading)

GraphicsMagick Commits | 6 May 2012 03:13
Picon

GraphicsMagick: Add title to PDF files.

changeset f507bf186ecf in /hg/GraphicsMagick
details: http://hg.GraphicsMagick.org/hg/GraphicsMagick?cmd=changeset;node=f507bf186ecf
summary: Add title to PDF files.

diffstat:

 ChangeLog          |   4 ++++
 coders/pdf.c       |  10 ++++++++--
 www/Changelog.html |   3 +++
 3 files changed, 15 insertions(+), 2 deletions(-)

diffs (72 lines):

diff -r a52d7c262c45 -r f507bf186ecf ChangeLog
--- a/ChangeLog	Sat May 05 17:00:14 2012 -0500
+++ b/ChangeLog	Sat May 05 20:13:15 2012 -0500
 <at>  <at>  -1,5 +1,9  <at>  <at> 
 2012-05-05  Bob Friesenhahn  <bfriesen <at> simple.dallas.tx.us>

+	* coders/pdf.c (WritePDFImage): Add file basename as the PDF
+	document title.  Resolves SourceForge bug ID 2835140
+	"GraphicsMagick fails to add title attribute to PDF output".
+
 	* coders/sfw.c (ReadSFWImage): Restore original filename and
 	format.

diff -r a52d7c262c45 -r f507bf186ecf coders/pdf.c
--- a/coders/pdf.c	Sat May 05 17:00:14 2012 -0500
+++ b/coders/pdf.c	Sat May 05 20:13:15 2012 -0500
 <at>  <at>  -1,5 +1,5  <at>  <at> 
(Continue reading)

GraphicsMagick Commits | 7 May 2012 01:32
Picon

GraphicsMagick: Add link to StackOverflow site

changeset c1fed1ca9f2f in /hg/GraphicsMagick
details: http://hg.GraphicsMagick.org/hg/GraphicsMagick?cmd=changeset;node=c1fed1ca9f2f
summary: Add link to StackOverflow site

diffstat:

 www/links.html |  1 +
 www/links.rst  |  2 ++
 2 files changed, 3 insertions(+), 0 deletions(-)

diffs (23 lines):

diff -r f507bf186ecf -r c1fed1ca9f2f www/links.html
--- a/www/links.html	Sat May 05 20:13:15 2012 -0500
+++ b/www/links.html	Sun May 06 18:32:51 2012 -0500
 <at>  <at>  -70,6 +70,7  <at>  <at> 
 <p><a class="reference external" href="http://www.ohloh.net/p/GraphicsMagick">Ohloh</a>
GraphicsMagick Entry.</p>
 <p><a class="reference external"
href="http://sourceforge.net/projects/graphicsmagick/">SourceForge</a> GraphicsMagick Entry.</p>
 <p><a class="reference external"
href="http://ascendwiki.cheme.cmu.edu/Building_GraphicsMagick_on_MinGW">GraphicsMagick on MinGW</a>.</p>
+<p><a class="reference external"
href="http://stackoverflow.com/questions/tagged/graphicsmagick?">GraphicsMagick questions
on StackOverflow</a>.</p>
 </div>
 <div class="section" id="graphicsmagick-vulnerabilities">
 <h1><a class="toc-backref" href="#id7">GraphicsMagick Vulnerabilities</a></h1>
diff -r f507bf186ecf -r c1fed1ca9f2f www/links.rst
--- a/www/links.rst	Sat May 05 20:13:15 2012 -0500
(Continue reading)

GraphicsMagick Commits | 7 May 2012 16:07
Picon

GraphicsMagick: brief_options.imdoc was not being cleaned by GNU...

changeset 757dbbcff2ef in /hg/GraphicsMagick
details: http://hg.GraphicsMagick.org/hg/GraphicsMagick?cmd=changeset;node=757dbbcff2ef
summary: brief_options.imdoc was not being cleaned by GNUmakefile

diffstat:

 doc/GNUmakefile         |     1 +
 doc/brief_options.imdoc |   806 +++++
 utilities/gm.1          |  1917 ++++++++++++-
 www/animate.html        |   561 +++
 www/compare.html        |   253 +
 www/composite.html      |   671 ++++
 www/conjure.html        |    66 +
 www/convert.html        |  1650 +++++++++++
 www/display.html        |   870 +++++
 www/gm.html             |  7019 +++++++++++++++++++++++++++++++++++++++++++++++
 www/identify.html       |   165 +
 www/import.html         |   484 +++
 www/mogrify.html        |  1496 ++++++++++
 www/montage.html        |   803 +++++
 14 files changed, 16761 insertions(+), 1 deletions(-)

diffs (truncated from 17026 to 300 lines):

diff -r c1fed1ca9f2f -r 757dbbcff2ef doc/GNUmakefile
--- a/doc/GNUmakefile	Sun May 06 18:32:51 2012 -0500
+++ b/doc/GNUmakefile	Mon May 07 09:07:46 2012 -0500
 <at>  <at>  -121,6 +121,7  <at>  <at> 
 	do \
 	  $(MAKE) UTILITY=$$utility utility-clean; \
(Continue reading)

GraphicsMagick Commits | 7 May 2012 16:13
Picon

GraphicsMagick: brief_options.imdoc is a generated file and shou...

changeset bb8e8a936528 in /hg/GraphicsMagick
details: http://hg.GraphicsMagick.org/hg/GraphicsMagick?cmd=changeset;node=bb8e8a936528
summary: brief_options.imdoc is a generated file and should not be in repository.

diffstat:

 doc/brief_options.imdoc |  806 ------------------------------------------------
 1 files changed, 0 insertions(+), 806 deletions(-)

diffs (truncated from 810 to 300 lines):

diff -r 757dbbcff2ef -r bb8e8a936528 doc/brief_options.imdoc
--- a/doc/brief_options.imdoc	Mon May 07 09:07:46 2012 -0500
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
 <at>  <at>  -1,806 +0,0  <at>  <at> 
-<utils apps=all>
-</utils>
-<utils apps=animate,compare,composite,convert,display,identify,import,mogrify,montage>
-</utils>
-<utils apps=convert,montage>
-<lopt>-adjoin</opt>
-<abs>join images into a single multi-image file</abs>
-</utils>
-<utils apps=convert,mogrify,montage>
-<lopt>-affine <matrix></opt>
-<abs>drawing transform matrix</abs>
-</utils>
-<utils apps=convert,mogrify>
-<lopt>-antialias</opt>
-<abs>remove pixel aliasing</abs>
(Continue reading)


Gmane