gradio / js /image /CHANGELOG.md
mindmime's picture
Upload folder using huggingface_hub
a03b3ba verified

A newer version of the Gradio SDK is available: 4.36.1

Upgrade

@gradio/image

0.7.1

Patch Changes

0.7.0

Fixes

  • #6933 9cefd2e - Refactor examples so they accept data in the same format as is returned by function, rename .as_example() to .process_example(). Thanks @abidlabs!

0.6.1

Fixes

0.6.0

Features

Fixes

0.5.4

Fixes

0.5.3

Fixes

0.5.2

Patch Changes

0.5.1

Patch Changes

0.5.0

Features

Fixes

0.4.2

Fixes

0.4.1

Patch Changes

0.4.0

Highlights

New ImageEditor component (#6169 9caddc17b)

A brand new component, completely separate from Image that provides simple editing capabilities.

  • Set background images from file uploads, webcam, or just paste!
  • Crop images with an improved cropping UI. App authors can event set specific crop size, or crop ratios (1:1, etc)
  • Paint on top of any image (or no image) and erase any mistakes!
  • The ImageEditor supports layers, confining draw and erase actions to that layer.
  • More flexible access to data. The image component returns a composite image representing the final state of the canvas as well as providing the background and all layers as individual images.
  • Fully customisable. All features can be enabled and disabled. Even the brush color swatches can be customised.


def fn(im):
    im["composite"] # the full canvas
    im["background"] # the background image
    im["layers"] # a list of individual layers


im = gr.ImageEditor(
    # decide which sources you'd like to accept
    sources=["upload", "webcam", "clipboard"],
    # set a cropsize constraint, can either be a ratio or a concrete [width, height]
    crop_size="1:1",
    # enable crop (or disable it)
    transforms=["crop"],
    # customise the brush
    brush=Brush(
      default_size="25", # or leave it as 'auto'
      color_mode="fixed", # 'fixed' hides the user swatches and colorpicker, 'defaults' shows it
      default_color="hotpink", # html names are supported
      colors=[
        "rgba(0, 150, 150, 1)", # rgb(a)
        "#fff", # hex rgb
        "hsl(360, 120, 120)" # in fact any valid colorstring
      ]
    ),
    brush=Eraser(default_size="25")
)

Thanks @pngwn!

0.3.6

Fixes

  • #6441 2f805a7dd - Small but important bugfixes for gr.Image: The upload event was not triggering at all. The paste-from-clipboard was not triggering an upload event. The clear button was not triggering a change event. The change event was triggering infinitely. Uploaded images were not preserving their original names. Uploading a new image should clear out the previous image. Thanks @freddyaboulton!

0.3.5

Patch Changes

0.3.4

Features

Fixes

0.3.3

Patch Changes

0.3.2

Fixes

0.3.1

Patch Changes

0.3.0

Features

0.3.0-beta.9

Features

Fixes

0.3.0-beta.8

Features

Fixes

0.3.0-beta.7

Patch Changes

0.3.0-beta.6

Features

0.4.0

Features

  • #5627 b67115e8e - Lite: Make the Examples component display media files using pseudo HTTP requests to the Wasm server. Thanks @whitphx!
  • #5934 8d909624f - Fix styling issues with Audio, Image and Video components. Thanks @aliabd!

0.3.2

Patch Changes

0.3.1

Patch Changes

0.3.0

Features

0.2.4

Fixes

0.2.3

Fixes

0.2.2

Patch Changes

0.2.1

Patch Changes

0.2.0

Highlights

Improve startup performance and markdown support (#5279 fe057300)

Improved markdown support

We now have better support for markdown in gr.Markdown and gr.Dataframe. Including syntax highlighting and Github Flavoured Markdown. We also have more consistent markdown behaviour and styling.

Various performance improvements

These improvements will be particularly beneficial to large applications.

  • Rather than attaching events manually, they are now delegated, leading to a significant performance improvement and addressing a performance regression introduced in a recent version of Gradio. App startup for large applications is now around twice as fast.
  • Optimised the mounting of individual components, leading to a modest performance improvement during startup (~30%).
  • Corrected an issue that was causing markdown to re-render infinitely.
  • Ensured that the gr.3DModel does re-render prematurely.

Thanks @pngwn!

Features

  • #5215 fbdad78a - Lazy load interactive or static variants of a component individually, rather than loading both variants regardless. This change will improve performance for many applications. Thanks @pngwn!
  • #5216 4b58ea6d - Update i18n tokens and locale files. Thanks @hannahblair!

0.1.1

Patch Changes

0.1.0

Features