這個外掛並未在最新的 3 個 WordPress 主要版本上進行測試。開發者可能不再對這個外掛進行維護或提供技術支援,並可能會與更新版本的 WordPress 產生使用上的相容性問題。

ImageFX

外掛說明

ImageFX allows you to add filters to your WordPress images uploaded through the normal media uploader.

For more information:
http://ottopress.com/2011/customizing-wordpress-images-with-a-plugin-imagefx/

Example:
http://demo.wpsmiththemes.com/minfolio/all-image-styles-example/

Default filters:

  • Greyscale with except Blue, Red, Green
  • Sepia tone with 6 alternatives
  • Colorize with red, yellow, green, blue, purple
  • Photonegative
  • Emboss & Emboss Edge
  • Brighten (50, 100)
  • Gaussian Blur & Selective Blur
  • Mean Removal
  • Smooth
  • Negative
  • Contrast Negative and Positive
  • Rounded Corners

ImageFX is expandable and retractable, so removing and adding other filters using your own customized image manipulation functions is easy.
Register new filters with:

  • Individually: imagefx_register_filter( ‘filter_name’, ‘cb_function’); //Note: cb_function defaults to imagefx_filter_{filter_name}
  • Bulk: imagefx_register_filters( array( ‘filter_name’, ‘filter_name’ ) );

Unregister existing filters with:

  • Individually: imagefx_unregister_filter( ‘filter_name’ );
  • Collectively: imagefx_unregister_filters( array( ‘filter_name’, ‘filter_name’) );
  • Specifically: imagefx_unregister_colorize_filters(); & imagefx_unregister_greyscale_filters(); & imagefx_unregister_sepia_filters(); imagefx_unregister_rounded_filters();

Want regular updates? Become a fan of my sites on Facebook!
http://www.facebook.com/ottopress
http://www.facebook.com/pages/Nothing-to-See-Here/241409175928000

Or follow us on Twitter!
http://twitter.com/otto42
http://twitter.com/ottodestruct
http://twitter.com/wp_smith

安裝方式

  1. Upload the files to the /wp-content/plugins/imagefx/ directory
  2. Activate the “ImageFX” plugin through the ‘Plugins’ menu in WordPress
  3. Visit the Media->ImageFX settings page to configure the plugin

常見問題集

Where’s the settings menu?

It’s under the Media menu. Look for Media->ImageFX.

使用者評論

這個外掛目前沒有任何使用者評論。

參與者及開發者

以下人員參與了開源軟體〈ImageFX〉的開發相關工作。

參與者

將〈ImageFX〉外掛本地化為台灣繁體中文版

對開發相關資訊感興趣?

任何人均可瀏覽程式碼、查看 SVN 存放庫,或透過 RSS 訂閱開發記錄

變更記錄

0.4

  • Added rounded corners (wpsmith)

0.3

  • Minor bugfixes (wpsmith)

0.2

  • Added imagefx_unregister_filter(), imagefx_unregister_filters(), imagefx_unregister_colorize_filters(), imagefx_unregister_greyscale_filters(), imagefx_unregister_sepia_filters() (wpsmith)
  • Fixed imagefx_filter_colorize_yellow typo, imagefx_filter_photonegative, imagefx_filter_emboss, imagefx_filter_brighten (wpsmith)
  • Added the following filters: emboss_edge, brighten_50, brighten_100, gaussian_blur, selective_blur, mean_removal, filter_smooth, filter_negative, contrast_negative, contrast_positive, sepia_100_50_0, sepia_100_70_50, sepia_90_60_30, sepia_90_90_0, sepia_60_60_0, & sepia_45_45_0 (wpsmith)
  • Added ability to handle PNGs, not just JPEGs (wpsmith)

0.1

  • First version.