Skip to content

Releases: burhanrashid52/PhotoEditor

TextStyleBuilder and tests

13 Jun 01:26
238042b
Compare
Choose a tag to compare
  • New : Added compress quality and format in save settings
  • New : Added Text style builder for add and edit text
  • New : Bumped support version to 28
  • Removed : All Deprecated methods
  • Test : Added test cases for BrushDrawingView with 100% code coverage

Brush Bug Fixed

28 Aug 07:57
9b8275a
Compare
Choose a tag to compare
  • Fixed : Brush bug using PorterDuff.Mode.SRC_OVER #80 and PR #83

Bug Fixes

08 Aug 11:44
Compare
Choose a tag to compare
  • New: Disable clearAllViews onSave #54 #49 #42 and PR #71
  • Fixed: ViewType in onRemoveViewListener() #50
  • Fixed: Wrong ViewType on onStartViewChangeListener #74
  • Fixed: clearHelperBox() #37
  • Fixed: Brush color changes after saving image #52
  • Fixed: Glide null bitmap issue #59

Major bug fix

04 Jun 04:28
Compare
Choose a tag to compare

[Fixed] Image not saving #40

Added Image Filter Feature

29 May 12:16
Compare
Choose a tag to compare
  • New : Add filter using mPhotoEditor.setFilterEffect(PhotoFilter.BRIGHTNESS); #4
  • New : Add Custom filter using CustomEffect
CustomEffect customEffect = new CustomEffect.Builder(EffectFactory.EFFECT_BRIGHTNESS)
                .setParameter("brightness", 0.5f)
                .build();
mPhotoEditor.setFilterEffect(customEffect);
  • Change : saveImage(String, OnSaveListener) is deprecated use saveAsFile(String, OnSaveListener)
  • New : You can save image as bitmap by using saveAsBitmap(String, OnSaveListener) #9 #19
  • Fixed : save image without transparency #35

Duplicate Source Issue Fixed

25 May 11:54
53e4740
Compare
Choose a tag to compare

Changed app:src="@drawable/got_s" to app:photo_src="@drawable/got_s" in PhotoEditorView