The branch "master" has been updated. The following is a summary of the commits.
from: 9dc91aa5c027707a1a67dadd7066da448c74a136 554ef5d... Horde 4-ify Horde_Image and associated changes to affected hatchery apps ----------------------------------------------------------------------- commit 554ef5d326dc5fd3d8aeb037a94e2ef0a4e15ea8 Author: Michael J. Rubinsky <[email protected]> Date: Tue May 26 13:42:52 2009 -0400 Horde 4-ify Horde_Image and associated changes to affected hatchery apps folks/lib/Driver.php | 7 +- framework/Image/Image/Effect.php | 80 + framework/Image/Image/Effect/border.php | 53 + framework/Image/Image/Effect/gd/drop_shadow.php | 133 ++ framework/Image/Image/Effect/gd/round_corners.php | 137 ++ framework/Image/Image/Effect/gd/text_watermark.php | 128 ++ framework/Image/Image/Effect/gd/unsharp_mask.php | 136 ++ framework/Image/Image/Effect/im/border.php | 49 + framework/Image/Image/Effect/im/composite.php | 88 + framework/Image/Image/Effect/im/drop_shadow.php | 83 + framework/Image/Image/Effect/im/photo_stack.php | 331 +++ framework/Image/Image/Effect/im/polaroid_image.php | 87 + framework/Image/Image/Effect/im/round_corners.php | 104 + framework/Image/Image/Effect/im/text_watermark.php | 74 + framework/Image/Image/gd.php | 1092 ++++++++++ framework/Image/Image/im.php | 784 +++++++ framework/Image/Image/imagick.php | 452 ++++ framework/Image/Image/png.php | 246 +++ framework/Image/Image/rgb.php | 446 ++++ framework/Image/Image/svg.php | 354 +++ framework/Image/Image/swf.php | 532 +++++ framework/Image/lib/Horde/Image.php | 664 ++++++ framework/Image/lib/Horde/Image/Effect.php | 91 + framework/Image/lib/Horde/Image/Effect/border.php | 53 + framework/Image/lib/Horde/Image/Effect/gd/drop_shadow.php | 124 ++ framework/Image/lib/Horde/Image/Effect/gd/round_corners.php | 135 ++ framework/Image/lib/Horde/Image/Effect/gd/text_watermark.php | 122 + framework/Image/lib/Horde/Image/Effect/gd/unsharp_mask.php | 134 ++ framework/Image/lib/Horde/Image/Effect/im/border.php | 48 + framework/Image/lib/Horde/Image/Effect/im/composite.php | 83 + framework/Image/lib/Horde/Image/Effect/im/drop_shadow.php | 84 + framework/Image/lib/Horde/Image/Effect/im/photo_stack.php | 328 +++ framework/Image/lib/Horde/Image/Effect/im/polaroid_image.php | 86 + framework/Image/lib/Horde/Image/Effect/im/round_corners.php | 105 + framework/Image/lib/Horde/Image/Effect/im/text_watermark.php | 73 + framework/Image/lib/Horde/Image/gd.php | 971 +++++++++ framework/Image/lib/Horde/Image/im.php | 768 +++++++ framework/Image/lib/Horde/Image/imagick.php | 446 ++++ framework/Image/lib/Horde/Image/png.php | 243 ++ framework/Image/lib/Horde/Image/rgb.php | 446 ++++ framework/Image/lib/Horde/Image/svg.php | 338 +++ framework/Image/lib/Horde/Image/swf.php | 532 +++++ framework/Image/package.xml | 146 ++ framework/Image/tests/.htaccess | 1 + framework/Image/tests/gd.php | 24 + framework/Image/tests/im.php | 337 +++ framework/Image/tests/img1.jpg | Bin 0 -> 33427 bytes framework/Image/tests/img2.jpg | Bin 0 -> 29123 bytes framework/Image/tests/img3.jpg | Bin 0 -> 29123 bytes framework/Image/tests/runtest.php | 44 + framework/Image/tests/svg.php | 24 + framework/Image/tests/swf.php | 24 + imp/lib/Mime/Viewer/Images.php | 9 +- imp/lib/Mime/Viewer/Pdf.php | 3 +- 54 files changed, 11875 insertions(+), 7 deletions(-) create mode 100644 framework/Image/Image/Effect.php create mode 100644 framework/Image/Image/Effect/border.php create mode 100644 framework/Image/Image/Effect/gd/drop_shadow.php create mode 100644 framework/Image/Image/Effect/gd/round_corners.php create mode 100644 framework/Image/Image/Effect/gd/text_watermark.php create mode 100644 framework/Image/Image/Effect/gd/unsharp_mask.php create mode 100755 framework/Image/Image/Effect/im/border.php create mode 100755 framework/Image/Image/Effect/im/composite.php create mode 100644 framework/Image/Image/Effect/im/drop_shadow.php create mode 100644 framework/Image/Image/Effect/im/photo_stack.php create mode 100755 framework/Image/Image/Effect/im/polaroid_image.php create mode 100644 framework/Image/Image/Effect/im/round_corners.php create mode 100644 framework/Image/Image/Effect/im/text_watermark.php create mode 100644 framework/Image/Image/gd.php create mode 100644 framework/Image/Image/im.php create mode 100644 framework/Image/Image/imagick.php create mode 100644 framework/Image/Image/png.php create mode 100644 framework/Image/Image/rgb.php create mode 100644 framework/Image/Image/svg.php create mode 100644 framework/Image/Image/swf.php create mode 100644 framework/Image/lib/Horde/Image.php create mode 100644 framework/Image/lib/Horde/Image/Effect.php create mode 100644 framework/Image/lib/Horde/Image/Effect/border.php create mode 100644 framework/Image/lib/Horde/Image/Effect/gd/drop_shadow.php create mode 100644 framework/Image/lib/Horde/Image/Effect/gd/round_corners.php create mode 100644 framework/Image/lib/Horde/Image/Effect/gd/text_watermark.php create mode 100644 framework/Image/lib/Horde/Image/Effect/gd/unsharp_mask.php create mode 100755 framework/Image/lib/Horde/Image/Effect/im/border.php create mode 100755 framework/Image/lib/Horde/Image/Effect/im/composite.php create mode 100644 framework/Image/lib/Horde/Image/Effect/im/drop_shadow.php create mode 100644 framework/Image/lib/Horde/Image/Effect/im/photo_stack.php create mode 100755 framework/Image/lib/Horde/Image/Effect/im/polaroid_image.php create mode 100644 framework/Image/lib/Horde/Image/Effect/im/round_corners.php create mode 100644 framework/Image/lib/Horde/Image/Effect/im/text_watermark.php create mode 100644 framework/Image/lib/Horde/Image/gd.php create mode 100644 framework/Image/lib/Horde/Image/im.php create mode 100644 framework/Image/lib/Horde/Image/imagick.php create mode 100644 framework/Image/lib/Horde/Image/png.php create mode 100644 framework/Image/lib/Horde/Image/rgb.php create mode 100644 framework/Image/lib/Horde/Image/svg.php create mode 100644 framework/Image/lib/Horde/Image/swf.php create mode 100644 framework/Image/package.xml create mode 100644 framework/Image/tests/.htaccess create mode 100644 framework/Image/tests/gd.php create mode 100644 framework/Image/tests/im.php create mode 100644 framework/Image/tests/img1.jpg create mode 100644 framework/Image/tests/img2.jpg create mode 100644 framework/Image/tests/img3.jpg create mode 100644 framework/Image/tests/runtest.php create mode 100644 framework/Image/tests/svg.php create mode 100644 framework/Image/tests/swf.php http://git.horde.org/diff.php/folks/lib/Driver.php?rt=horde-hatchery&r1=aeee358e9d91b2b58e08f905d9f694f79b94da28&r2=554ef5d326dc5fd3d8aeb037a94e2ef0a4e15ea8 http://git.horde.org/co.php/framework/Image/Image/Effect.php?rt=horde-hatchery&r=554ef5d326dc5fd3d8aeb037a94e2ef0a4e15ea8 http://git.horde.org/co.php/framework/Image/Image/Effect/border.php?rt=horde-hatchery&r=554ef5d326dc5fd3d8aeb037a94e2ef0a4e15ea8 http://git.horde.org/co.php/framework/Image/Image/Effect/gd/drop_shadow.php?rt=horde-hatchery&r=554ef5d326dc5fd3d8aeb037a94e2ef0a4e15ea8 http://git.horde.org/co.php/framework/Image/Image/Effect/gd/round_corners.php?rt=horde-hatchery&r=554ef5d326dc5fd3d8aeb037a94e2ef0a4e15ea8 http://git.horde.org/co.php/framework/Image/Image/Effect/gd/text_watermark.php?rt=horde-hatchery&r=554ef5d326dc5fd3d8aeb037a94e2ef0a4e15ea8 http://git.horde.org/co.php/framework/Image/Image/Effect/gd/unsharp_mask.php?rt=horde-hatchery&r=554ef5d326dc5fd3d8aeb037a94e2ef0a4e15ea8 http://git.horde.org/co.php/framework/Image/Image/Effect/im/border.php?rt=horde-hatchery&r=554ef5d326dc5fd3d8aeb037a94e2ef0a4e15ea8 http://git.horde.org/co.php/framework/Image/Image/Effect/im/composite.php?rt=horde-hatchery&r=554ef5d326dc5fd3d8aeb037a94e2ef0a4e15ea8 http://git.horde.org/co.php/framework/Image/Image/Effect/im/drop_shadow.php?rt=horde-hatchery&r=554ef5d326dc5fd3d8aeb037a94e2ef0a4e15ea8 http://git.horde.org/co.php/framework/Image/Image/Effect/im/photo_stack.php?rt=horde-hatchery&r=554ef5d326dc5fd3d8aeb037a94e2ef0a4e15ea8 http://git.horde.org/co.php/framework/Image/Image/Effect/im/polaroid_image.php?rt=horde-hatchery&r=554ef5d326dc5fd3d8aeb037a94e2ef0a4e15ea8 http://git.horde.org/co.php/framework/Image/Image/Effect/im/round_corners.php?rt=horde-hatchery&r=554ef5d326dc5fd3d8aeb037a94e2ef0a4e15ea8 http://git.horde.org/co.php/framework/Image/Image/Effect/im/text_watermark.php?rt=horde-hatchery&r=554ef5d326dc5fd3d8aeb037a94e2ef0a4e15ea8 http://git.horde.org/co.php/framework/Image/Image/gd.php?rt=horde-hatchery&r=554ef5d326dc5fd3d8aeb037a94e2ef0a4e15ea8 http://git.horde.org/co.php/framework/Image/Image/im.php?rt=horde-hatchery&r=554ef5d326dc5fd3d8aeb037a94e2ef0a4e15ea8 http://git.horde.org/co.php/framework/Image/Image/imagick.php?rt=horde-hatchery&r=554ef5d326dc5fd3d8aeb037a94e2ef0a4e15ea8 http://git.horde.org/co.php/framework/Image/Image/png.php?rt=horde-hatchery&r=554ef5d326dc5fd3d8aeb037a94e2ef0a4e15ea8 http://git.horde.org/co.php/framework/Image/Image/rgb.php?rt=horde-hatchery&r=554ef5d326dc5fd3d8aeb037a94e2ef0a4e15ea8 http://git.horde.org/co.php/framework/Image/Image/svg.php?rt=horde-hatchery&r=554ef5d326dc5fd3d8aeb037a94e2ef0a4e15ea8 http://git.horde.org/co.php/framework/Image/Image/swf.php?rt=horde-hatchery&r=554ef5d326dc5fd3d8aeb037a94e2ef0a4e15ea8 http://git.horde.org/co.php/framework/Image/lib/Horde/Image.php?rt=horde-hatchery&r=554ef5d326dc5fd3d8aeb037a94e2ef0a4e15ea8 http://git.horde.org/co.php/framework/Image/lib/Horde/Image/Effect.php?rt=horde-hatchery&r=554ef5d326dc5fd3d8aeb037a94e2ef0a4e15ea8 http://git.horde.org/co.php/framework/Image/lib/Horde/Image/Effect/border.php?rt=horde-hatchery&r=554ef5d326dc5fd3d8aeb037a94e2ef0a4e15ea8 http://git.horde.org/co.php/framework/Image/lib/Horde/Image/Effect/gd/drop_shadow.php?rt=horde-hatchery&r=554ef5d326dc5fd3d8aeb037a94e2ef0a4e15ea8 http://git.horde.org/co.php/framework/Image/lib/Horde/Image/Effect/gd/round_corners.php?rt=horde-hatchery&r=554ef5d326dc5fd3d8aeb037a94e2ef0a4e15ea8 http://git.horde.org/co.php/framework/Image/lib/Horde/Image/Effect/gd/text_watermark.php?rt=horde-hatchery&r=554ef5d326dc5fd3d8aeb037a94e2ef0a4e15ea8 http://git.horde.org/co.php/framework/Image/lib/Horde/Image/Effect/gd/unsharp_mask.php?rt=horde-hatchery&r=554ef5d326dc5fd3d8aeb037a94e2ef0a4e15ea8 http://git.horde.org/co.php/framework/Image/lib/Horde/Image/Effect/im/border.php?rt=horde-hatchery&r=554ef5d326dc5fd3d8aeb037a94e2ef0a4e15ea8 http://git.horde.org/co.php/framework/Image/lib/Horde/Image/Effect/im/composite.php?rt=horde-hatchery&r=554ef5d326dc5fd3d8aeb037a94e2ef0a4e15ea8 http://git.horde.org/co.php/framework/Image/lib/Horde/Image/Effect/im/drop_shadow.php?rt=horde-hatchery&r=554ef5d326dc5fd3d8aeb037a94e2ef0a4e15ea8 http://git.horde.org/co.php/framework/Image/lib/Horde/Image/Effect/im/photo_stack.php?rt=horde-hatchery&r=554ef5d326dc5fd3d8aeb037a94e2ef0a4e15ea8 http://git.horde.org/co.php/framework/Image/lib/Horde/Image/Effect/im/polaroid_image.php?rt=horde-hatchery&r=554ef5d326dc5fd3d8aeb037a94e2ef0a4e15ea8 http://git.horde.org/co.php/framework/Image/lib/Horde/Image/Effect/im/round_corners.php?rt=horde-hatchery&r=554ef5d326dc5fd3d8aeb037a94e2ef0a4e15ea8 http://git.horde.org/co.php/framework/Image/lib/Horde/Image/Effect/im/text_watermark.php?rt=horde-hatchery&r=554ef5d326dc5fd3d8aeb037a94e2ef0a4e15ea8 http://git.horde.org/co.php/framework/Image/lib/Horde/Image/gd.php?rt=horde-hatchery&r=554ef5d326dc5fd3d8aeb037a94e2ef0a4e15ea8 http://git.horde.org/co.php/framework/Image/lib/Horde/Image/im.php?rt=horde-hatchery&r=554ef5d326dc5fd3d8aeb037a94e2ef0a4e15ea8 http://git.horde.org/co.php/framework/Image/lib/Horde/Image/imagick.php?rt=horde-hatchery&r=554ef5d326dc5fd3d8aeb037a94e2ef0a4e15ea8 http://git.horde.org/co.php/framework/Image/lib/Horde/Image/png.php?rt=horde-hatchery&r=554ef5d326dc5fd3d8aeb037a94e2ef0a4e15ea8 http://git.horde.org/co.php/framework/Image/lib/Horde/Image/rgb.php?rt=horde-hatchery&r=554ef5d326dc5fd3d8aeb037a94e2ef0a4e15ea8 http://git.horde.org/co.php/framework/Image/lib/Horde/Image/svg.php?rt=horde-hatchery&r=554ef5d326dc5fd3d8aeb037a94e2ef0a4e15ea8 http://git.horde.org/co.php/framework/Image/lib/Horde/Image/swf.php?rt=horde-hatchery&r=554ef5d326dc5fd3d8aeb037a94e2ef0a4e15ea8 http://git.horde.org/co.php/framework/Image/package.xml?rt=horde-hatchery&r=554ef5d326dc5fd3d8aeb037a94e2ef0a4e15ea8 http://git.horde.org/co.php/framework/Image/tests/.htaccess?rt=horde-hatchery&r=554ef5d326dc5fd3d8aeb037a94e2ef0a4e15ea8 http://git.horde.org/co.php/framework/Image/tests/gd.php?rt=horde-hatchery&r=554ef5d326dc5fd3d8aeb037a94e2ef0a4e15ea8 http://git.horde.org/co.php/framework/Image/tests/im.php?rt=horde-hatchery&r=554ef5d326dc5fd3d8aeb037a94e2ef0a4e15ea8 http://git.horde.org/co.php/framework/Image/tests/img1.jpg?rt=horde-hatchery&r=554ef5d326dc5fd3d8aeb037a94e2ef0a4e15ea8 http://git.horde.org/co.php/framework/Image/tests/img2.jpg?rt=horde-hatchery&r=554ef5d326dc5fd3d8aeb037a94e2ef0a4e15ea8 http://git.horde.org/co.php/framework/Image/tests/img3.jpg?rt=horde-hatchery&r=554ef5d326dc5fd3d8aeb037a94e2ef0a4e15ea8 http://git.horde.org/co.php/framework/Image/tests/runtest.php?rt=horde-hatchery&r=554ef5d326dc5fd3d8aeb037a94e2ef0a4e15ea8 http://git.horde.org/co.php/framework/Image/tests/svg.php?rt=horde-hatchery&r=554ef5d326dc5fd3d8aeb037a94e2ef0a4e15ea8 http://git.horde.org/co.php/framework/Image/tests/swf.php?rt=horde-hatchery&r=554ef5d326dc5fd3d8aeb037a94e2ef0a4e15ea8 http://git.horde.org/diff.php/imp/lib/Mime/Viewer/Images.php?rt=horde-hatchery&r1=7dc3f0b944c0bebc4d64f09f749ebf6929f998fc&r2=554ef5d326dc5fd3d8aeb037a94e2ef0a4e15ea8 http://git.horde.org/diff.php/imp/lib/Mime/Viewer/Pdf.php?rt=horde-hatchery&r1=7dc3f0b944c0bebc4d64f09f749ebf6929f998fc&r2=554ef5d326dc5fd3d8aeb037a94e2ef0a4e15ea8 __ commits mailing list Frequently Asked Questions: http://horde.org/faq/ To unsubscribe, mail: [email protected]
