From f0a3dbd60f72e7dc4fb7cefee011c93eec5f83799e3e5e9d093d42a817f9aaf9 Mon Sep 17 00:00:00 2001 From: Petr Gajdos Date: Fri, 15 Oct 2010 07:34:46 +0000 Subject: [PATCH 1/3] - updated to 6.6.5-0: * Added "filter:sigma" expert setting defining the 'sigma' for the Gaussian filter only. This is similar in action to 'blur' but only for Gaussians, and does not modify the filters support, allowing you to set a very small sigma, without the function 'missing' all pixels. * Patch for DrawableRotation() and DrawableTranslation() * The webp format requires the webpconv delegate program (experimental). * Replaced "Robidoux" with Cubic 'Keys' filter that is near equivelent to the previous sharped "Lanczos2D" filter. (C=0.31089212245300069) This also is very similer to a Mitchell filter but specifically designed for EWA use and is the new default filter for Distorting Images. * Added new filter 'Lanczos2D' a 2-lobe Lanczos as defined by Andreas Gustafsson in his thesis "Interactive Image Warping" (page 24) http://www.gson.org/thesis/warping-thesis.pdf * Added filter "Robidoux" which is a slightly sharpened version of the "Lanczos2D" filter (blur=0.958033808) specifically designed to be less 'blurry' for horizontal and vertical lines in no-op distortions. * Add support for "pattern:vertical2" and "pattern:horizontal2". * Add support for "pattern:vertical3" and "pattern:horizontal3". * Properly handle PSD layers with negative offsets. * Added sqrt(2) bluring default for Gaussian Filter if used as a Cylindrical EWA filter. This resulted removing the last aliasing issue that was present in tests for Gaussian EWA resampling. Of course it is still a very blury filter for default use in EWA. * Adjusted Variable Mapping Blur Composition so user arguments actual relate properly to the sigma of the blur for a maximum mapping value. * Fix horizon anti-alising for output-scaled perspective distortions. * 'Bessel' filter is now offically and more accuritally named 'Jinc' however 'Bessel' while not visible as a filter option can still be used OBS-URL: https://build.opensuse.org/package/show/graphics/ImageMagick?expand=0&rev=45 --- ImageMagick-6.6.4-8.tar.bz2 | 3 -- ImageMagick-6.6.5-0.tar.bz2 | 3 ++ ...doc.patch => ImageMagick-6.6.5.0-doc.patch | 0 ...atch => ImageMagick-6.6.5.0-examples.patch | 0 ImageMagick.changes | 38 +++++++++++++++++++ ImageMagick.spec | 6 +-- 6 files changed, 44 insertions(+), 6 deletions(-) delete mode 100644 ImageMagick-6.6.4-8.tar.bz2 create mode 100644 ImageMagick-6.6.5-0.tar.bz2 rename ImageMagick-6.6.4.8-doc.patch => ImageMagick-6.6.5.0-doc.patch (100%) rename ImageMagick-6.6.4.8-examples.patch => ImageMagick-6.6.5.0-examples.patch (100%) diff --git a/ImageMagick-6.6.4-8.tar.bz2 b/ImageMagick-6.6.4-8.tar.bz2 deleted file mode 100644 index 0cef33b..0000000 --- a/ImageMagick-6.6.4-8.tar.bz2 +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a470ee4a9ffb24b1036722d47dda95111ef768641de87ea090738ed75ab17beb -size 8684162 diff --git a/ImageMagick-6.6.5-0.tar.bz2 b/ImageMagick-6.6.5-0.tar.bz2 new file mode 100644 index 0000000..1bf15c2 --- /dev/null +++ b/ImageMagick-6.6.5-0.tar.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a65d15b355782d8cbd6e571b9e362c97baa9ec7914c1229b56e9138dc7055d2 +size 8696055 diff --git a/ImageMagick-6.6.4.8-doc.patch b/ImageMagick-6.6.5.0-doc.patch similarity index 100% rename from ImageMagick-6.6.4.8-doc.patch rename to ImageMagick-6.6.5.0-doc.patch diff --git a/ImageMagick-6.6.4.8-examples.patch b/ImageMagick-6.6.5.0-examples.patch similarity index 100% rename from ImageMagick-6.6.4.8-examples.patch rename to ImageMagick-6.6.5.0-examples.patch diff --git a/ImageMagick.changes b/ImageMagick.changes index bd3d010..6165800 100644 --- a/ImageMagick.changes +++ b/ImageMagick.changes @@ -1,3 +1,41 @@ +------------------------------------------------------------------- +Fri Oct 15 07:28:17 UTC 2010 - pgajdos@novell.com + +- updated to 6.6.5-0: + * Added "filter:sigma" expert setting defining the 'sigma' for the Gaussian + filter only. This is similar in action to 'blur' but only for Gaussians, + and does not modify the filters support, allowing you to set a very small + sigma, without the function 'missing' all pixels. + * Patch for DrawableRotation() and DrawableTranslation() + * The webp format requires the webpconv delegate program (experimental). + * Replaced "Robidoux" with Cubic 'Keys' filter that is near equivelent to + the previous sharped "Lanczos2D" filter. (C=0.31089212245300069) + This also is very similer to a Mitchell filter but specifically designed + for EWA use and is the new default filter for Distorting Images. + * Added new filter 'Lanczos2D' a 2-lobe Lanczos as defined by + Andreas Gustafsson in his thesis "Interactive Image Warping" (page 24) + http://www.gson.org/thesis/warping-thesis.pdf + * Added filter "Robidoux" which is a slightly sharpened version of the + "Lanczos2D" filter (blur=0.958033808) specifically designed to be less + 'blurry' for horizontal and vertical lines in no-op distortions. + * Add support for "pattern:vertical2" and "pattern:horizontal2". + * Add support for "pattern:vertical3" and "pattern:horizontal3". + * Properly handle PSD layers with negative offsets. + * Added sqrt(2) bluring default for Gaussian Filter if used as + a Cylindrical EWA filter. This resulted removing the last aliasing + issue that was present in tests for Gaussian EWA resampling. Of course + it is still a very blury filter for default use in EWA. + * Adjusted Variable Mapping Blur Composition so user arguments actual + relate properly to the sigma of the blur for a maximum mapping value. + * Fix horizon anti-alising for output-scaled perspective distortions. + * 'Bessel' filter is now offically and more accuritally named 'Jinc' + however 'Bessel' while not visible as a filter option can still be used + as an internal alias for 'Jinc'. + * Fix memory assertion with --enable-embeddable (reference + http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=17201). + * Don't permit access to pixels when pinging an image (reference + http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=17194). + ------------------------------------------------------------------- Tue Oct 5 07:30:14 UTC 2010 - pgajdos@novell.com diff --git a/ImageMagick.spec b/ImageMagick.spec index b075518..63aeb79 100644 --- a/ImageMagick.spec +++ b/ImageMagick.spec @@ -1,5 +1,5 @@ # -# spec file for package ImageMagick (Version 6.6.4.8) +# spec file for package ImageMagick (Version 6.6.4.0) # # Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany. # @@ -29,9 +29,9 @@ Provides: imagemag License: Public Domain, Freeware Group: Productivity/Graphics/Other AutoReqProv: on -Version: 6.6.4.8 +Version: 6.6.5.0 Release: 1 -%define source_version 6.6.4-8 +%define source_version 6.6.5-0 %define libver 4 Summary: Viewer and Converter for Images Url: http://www.imagemagick.org From eb761fa9bf7bbf03ea406bc32db86a8939824bf13e38bb6a589d963c9f4919dc Mon Sep 17 00:00:00 2001 From: OBS User autobuild Date: Fri, 15 Oct 2010 11:57:56 +0000 Subject: [PATCH 2/3] Accepting request 50612 from graphics checked in (request 50612) OBS-URL: https://build.opensuse.org/request/show/50612 OBS-URL: https://build.opensuse.org/package/show/graphics/ImageMagick?expand=0&rev=46 --- ImageMagick-6.6.4-8.tar.bz2 | 3 ++ ...doc.patch => ImageMagick-6.6.4.8-doc.patch | 0 ...atch => ImageMagick-6.6.4.8-examples.patch | 0 ImageMagick-6.6.5-0.tar.bz2 | 3 -- ImageMagick.changes | 38 ------------------- ImageMagick.spec | 6 +-- 6 files changed, 6 insertions(+), 44 deletions(-) create mode 100644 ImageMagick-6.6.4-8.tar.bz2 rename ImageMagick-6.6.5.0-doc.patch => ImageMagick-6.6.4.8-doc.patch (100%) rename ImageMagick-6.6.5.0-examples.patch => ImageMagick-6.6.4.8-examples.patch (100%) delete mode 100644 ImageMagick-6.6.5-0.tar.bz2 diff --git a/ImageMagick-6.6.4-8.tar.bz2 b/ImageMagick-6.6.4-8.tar.bz2 new file mode 100644 index 0000000..0cef33b --- /dev/null +++ b/ImageMagick-6.6.4-8.tar.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a470ee4a9ffb24b1036722d47dda95111ef768641de87ea090738ed75ab17beb +size 8684162 diff --git a/ImageMagick-6.6.5.0-doc.patch b/ImageMagick-6.6.4.8-doc.patch similarity index 100% rename from ImageMagick-6.6.5.0-doc.patch rename to ImageMagick-6.6.4.8-doc.patch diff --git a/ImageMagick-6.6.5.0-examples.patch b/ImageMagick-6.6.4.8-examples.patch similarity index 100% rename from ImageMagick-6.6.5.0-examples.patch rename to ImageMagick-6.6.4.8-examples.patch diff --git a/ImageMagick-6.6.5-0.tar.bz2 b/ImageMagick-6.6.5-0.tar.bz2 deleted file mode 100644 index 1bf15c2..0000000 --- a/ImageMagick-6.6.5-0.tar.bz2 +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:8a65d15b355782d8cbd6e571b9e362c97baa9ec7914c1229b56e9138dc7055d2 -size 8696055 diff --git a/ImageMagick.changes b/ImageMagick.changes index 6165800..bd3d010 100644 --- a/ImageMagick.changes +++ b/ImageMagick.changes @@ -1,41 +1,3 @@ -------------------------------------------------------------------- -Fri Oct 15 07:28:17 UTC 2010 - pgajdos@novell.com - -- updated to 6.6.5-0: - * Added "filter:sigma" expert setting defining the 'sigma' for the Gaussian - filter only. This is similar in action to 'blur' but only for Gaussians, - and does not modify the filters support, allowing you to set a very small - sigma, without the function 'missing' all pixels. - * Patch for DrawableRotation() and DrawableTranslation() - * The webp format requires the webpconv delegate program (experimental). - * Replaced "Robidoux" with Cubic 'Keys' filter that is near equivelent to - the previous sharped "Lanczos2D" filter. (C=0.31089212245300069) - This also is very similer to a Mitchell filter but specifically designed - for EWA use and is the new default filter for Distorting Images. - * Added new filter 'Lanczos2D' a 2-lobe Lanczos as defined by - Andreas Gustafsson in his thesis "Interactive Image Warping" (page 24) - http://www.gson.org/thesis/warping-thesis.pdf - * Added filter "Robidoux" which is a slightly sharpened version of the - "Lanczos2D" filter (blur=0.958033808) specifically designed to be less - 'blurry' for horizontal and vertical lines in no-op distortions. - * Add support for "pattern:vertical2" and "pattern:horizontal2". - * Add support for "pattern:vertical3" and "pattern:horizontal3". - * Properly handle PSD layers with negative offsets. - * Added sqrt(2) bluring default for Gaussian Filter if used as - a Cylindrical EWA filter. This resulted removing the last aliasing - issue that was present in tests for Gaussian EWA resampling. Of course - it is still a very blury filter for default use in EWA. - * Adjusted Variable Mapping Blur Composition so user arguments actual - relate properly to the sigma of the blur for a maximum mapping value. - * Fix horizon anti-alising for output-scaled perspective distortions. - * 'Bessel' filter is now offically and more accuritally named 'Jinc' - however 'Bessel' while not visible as a filter option can still be used - as an internal alias for 'Jinc'. - * Fix memory assertion with --enable-embeddable (reference - http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=17201). - * Don't permit access to pixels when pinging an image (reference - http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=17194). - ------------------------------------------------------------------- Tue Oct 5 07:30:14 UTC 2010 - pgajdos@novell.com diff --git a/ImageMagick.spec b/ImageMagick.spec index 63aeb79..b075518 100644 --- a/ImageMagick.spec +++ b/ImageMagick.spec @@ -1,5 +1,5 @@ # -# spec file for package ImageMagick (Version 6.6.4.0) +# spec file for package ImageMagick (Version 6.6.4.8) # # Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany. # @@ -29,9 +29,9 @@ Provides: imagemag License: Public Domain, Freeware Group: Productivity/Graphics/Other AutoReqProv: on -Version: 6.6.5.0 +Version: 6.6.4.8 Release: 1 -%define source_version 6.6.5-0 +%define source_version 6.6.4-8 %define libver 4 Summary: Viewer and Converter for Images Url: http://www.imagemagick.org From da9448c95f2176d797d0b4f921d578e01cdc49e1b9c29d32a9e15dd3aba3cccb Mon Sep 17 00:00:00 2001 From: OBS User buildservice-autocommit Date: Fri, 15 Oct 2010 11:57:57 +0000 Subject: [PATCH 3/3] Updating link to change in openSUSE:Factory/ImageMagick revision 44.0 OBS-URL: https://build.opensuse.org/package/show/graphics/ImageMagick?expand=0&rev=d4e2242c64c82890f661a4175e7b110f --- ImageMagick-6.6.4-8.tar.bz2 | 3 -- ImageMagick-6.6.5-0.tar.bz2 | 3 ++ ...doc.patch => ImageMagick-6.6.5.0-doc.patch | 0 ...atch => ImageMagick-6.6.5.0-examples.patch | 0 ImageMagick.changes | 38 +++++++++++++++++++ ImageMagick.spec | 6 +-- 6 files changed, 44 insertions(+), 6 deletions(-) delete mode 100644 ImageMagick-6.6.4-8.tar.bz2 create mode 100644 ImageMagick-6.6.5-0.tar.bz2 rename ImageMagick-6.6.4.8-doc.patch => ImageMagick-6.6.5.0-doc.patch (100%) rename ImageMagick-6.6.4.8-examples.patch => ImageMagick-6.6.5.0-examples.patch (100%) diff --git a/ImageMagick-6.6.4-8.tar.bz2 b/ImageMagick-6.6.4-8.tar.bz2 deleted file mode 100644 index 0cef33b..0000000 --- a/ImageMagick-6.6.4-8.tar.bz2 +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a470ee4a9ffb24b1036722d47dda95111ef768641de87ea090738ed75ab17beb -size 8684162 diff --git a/ImageMagick-6.6.5-0.tar.bz2 b/ImageMagick-6.6.5-0.tar.bz2 new file mode 100644 index 0000000..1bf15c2 --- /dev/null +++ b/ImageMagick-6.6.5-0.tar.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a65d15b355782d8cbd6e571b9e362c97baa9ec7914c1229b56e9138dc7055d2 +size 8696055 diff --git a/ImageMagick-6.6.4.8-doc.patch b/ImageMagick-6.6.5.0-doc.patch similarity index 100% rename from ImageMagick-6.6.4.8-doc.patch rename to ImageMagick-6.6.5.0-doc.patch diff --git a/ImageMagick-6.6.4.8-examples.patch b/ImageMagick-6.6.5.0-examples.patch similarity index 100% rename from ImageMagick-6.6.4.8-examples.patch rename to ImageMagick-6.6.5.0-examples.patch diff --git a/ImageMagick.changes b/ImageMagick.changes index bd3d010..6165800 100644 --- a/ImageMagick.changes +++ b/ImageMagick.changes @@ -1,3 +1,41 @@ +------------------------------------------------------------------- +Fri Oct 15 07:28:17 UTC 2010 - pgajdos@novell.com + +- updated to 6.6.5-0: + * Added "filter:sigma" expert setting defining the 'sigma' for the Gaussian + filter only. This is similar in action to 'blur' but only for Gaussians, + and does not modify the filters support, allowing you to set a very small + sigma, without the function 'missing' all pixels. + * Patch for DrawableRotation() and DrawableTranslation() + * The webp format requires the webpconv delegate program (experimental). + * Replaced "Robidoux" with Cubic 'Keys' filter that is near equivelent to + the previous sharped "Lanczos2D" filter. (C=0.31089212245300069) + This also is very similer to a Mitchell filter but specifically designed + for EWA use and is the new default filter for Distorting Images. + * Added new filter 'Lanczos2D' a 2-lobe Lanczos as defined by + Andreas Gustafsson in his thesis "Interactive Image Warping" (page 24) + http://www.gson.org/thesis/warping-thesis.pdf + * Added filter "Robidoux" which is a slightly sharpened version of the + "Lanczos2D" filter (blur=0.958033808) specifically designed to be less + 'blurry' for horizontal and vertical lines in no-op distortions. + * Add support for "pattern:vertical2" and "pattern:horizontal2". + * Add support for "pattern:vertical3" and "pattern:horizontal3". + * Properly handle PSD layers with negative offsets. + * Added sqrt(2) bluring default for Gaussian Filter if used as + a Cylindrical EWA filter. This resulted removing the last aliasing + issue that was present in tests for Gaussian EWA resampling. Of course + it is still a very blury filter for default use in EWA. + * Adjusted Variable Mapping Blur Composition so user arguments actual + relate properly to the sigma of the blur for a maximum mapping value. + * Fix horizon anti-alising for output-scaled perspective distortions. + * 'Bessel' filter is now offically and more accuritally named 'Jinc' + however 'Bessel' while not visible as a filter option can still be used + as an internal alias for 'Jinc'. + * Fix memory assertion with --enable-embeddable (reference + http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=17201). + * Don't permit access to pixels when pinging an image (reference + http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=17194). + ------------------------------------------------------------------- Tue Oct 5 07:30:14 UTC 2010 - pgajdos@novell.com diff --git a/ImageMagick.spec b/ImageMagick.spec index b075518..0834309 100644 --- a/ImageMagick.spec +++ b/ImageMagick.spec @@ -1,5 +1,5 @@ # -# spec file for package ImageMagick (Version 6.6.4.8) +# spec file for package ImageMagick (Version 6.6.5.0) # # Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany. # @@ -29,9 +29,9 @@ Provides: imagemag License: Public Domain, Freeware Group: Productivity/Graphics/Other AutoReqProv: on -Version: 6.6.4.8 +Version: 6.6.5.0 Release: 1 -%define source_version 6.6.4-8 +%define source_version 6.6.5-0 %define libver 4 Summary: Viewer and Converter for Images Url: http://www.imagemagick.org