GithubHelp home page GithubHelp logo

Comments (20)

gotamafandy avatar gotamafandy commented on May 14, 2024 2

hi @burhanrashid52 i've done some quick combination between your project and https://github.com/siwangqishiq/ImageEditor-Android so that i can save a big resolution image with stickers. Check it out at:
https://github.com/fandygotama-tokobagus/PhotoEditor, please note that this is not 100% done as the project still missing some feature like e.g.: undo/redo brush, typeface and other things :)

from photoeditor.

burhanrashid52 avatar burhanrashid52 commented on May 14, 2024

Thanks @siberianbearr for detail analysis. Can you suggest some idea/logic how to implement this by keeping ImageView in internal representation ?

from photoeditor.

gotamafandy avatar gotamafandy commented on May 14, 2024

hi @burhanrashid52 , you can check this repo https://github.com/siwangqishiq/ImageEditor-Android
this is not mine :), however they have pretty good job scaling sticker and text to real resolution image using matrix transformation.

While the project is in chinese, some part of the demo contain english translations.

from photoeditor.

sepehr1014 avatar sepehr1014 commented on May 14, 2024

This seems like a real deal-breaker. Any progress on this issue @burhanrashid52 ?

from photoeditor.

burhanrashid52 avatar burhanrashid52 commented on May 14, 2024

Nop @sepehr1014 I have labelled as help wanted. @fandygotama-tokobagus Did you resolve this issue?

from photoeditor.

nguyenngoclinhbkhn avatar nguyenngoclinhbkhn commented on May 14, 2024

@burhanrashid52 i think whether can we draw sticker on orignal bitmap ?

from photoeditor.

gotamafandy avatar gotamafandy commented on May 14, 2024

hi @burhanrashid52 , sorry i didn't get your mention since i changed my github username :(. I haven't gotten chance to finish the project, however the calculation already done on my repo and its working, you can save the real image with sticker on it. I will find some time to finish the project and do PR

from photoeditor.

burhanrashid52 avatar burhanrashid52 commented on May 14, 2024

@gotamafandy I was looking for someone to fix this. I am waiting for your PR.

from photoeditor.

mianaliasjad avatar mianaliasjad commented on May 14, 2024

Guys any update on this issue?
i checked your library and what i understand is that you take the view and convert it into bitmap and save it.
That's why actual image quality drops down.
i thought one solution for it:
What if we keep the original image bitmap as a backup and then perform all operations on image view container and when click save button. Then convert all the added stickers and text into bitmap and then draw those bitmaps on orignal bitmap. In this way, the quality will not decrease i already tried it. But the problem is how do we re-position those texts and emojis on the original bitmap? As original bitmap has different resolution and the one on which user entered emojis and text was of different size.

from photoeditor.

sinhpn92 avatar sinhpn92 commented on May 14, 2024

Hummm... This issue is very important for photo editor. But Maybe We need native to implements this feature. Have anyone help?

from photoeditor.

KimiChiu avatar KimiChiu commented on May 14, 2024

How about using a custom draw to scale down the imageView display size, so we are still painting on the full size.
I found a implementation here.
https://stackoverflow.com/questions/12169905/zoom-and-panning-imageview-android

from photoeditor.

burhanrashid52 avatar burhanrashid52 commented on May 14, 2024

How about using a custom draw to scale down the imageView display size, so we are still painting on the full size.
I found a implementation here.
https://stackoverflow.com/questions/12169905/zoom-and-panning-imageview-android

Where you able to make it work ? @KimiChiu

from photoeditor.

KimiChiu avatar KimiChiu commented on May 14, 2024

How about using a custom draw to scale down the imageView display size, so we are still painting on the full size.
I found a implementation here.
https://stackoverflow.com/questions/12169905/zoom-and-panning-imageview-android

Are you able to make it work ? @KimiChiu

It depends, I have 7 ongoing projects.
it's an easier way to start.
I tried a workaround which is to put a HorizontalScrollView as a parent but had no luck.

from photoeditor.

brittle123 avatar brittle123 commented on May 14, 2024

@burhanrashid52 Please sir add crop feature in your repository ASAP just like in https://github.com/siwangqishiq/ImageEditor-Android

from photoeditor.

EbelloImbox avatar EbelloImbox commented on May 14, 2024

Is this problem solved in new version 2.0.0?

from photoeditor.

burhanrashid52 avatar burhanrashid52 commented on May 14, 2024

No. Scaling the image is a hard problem to solve. The 2.0.0 version is just a Kotlin conversation.

from photoeditor.

Lolboer9999999 avatar Lolboer9999999 commented on May 14, 2024

this worked for me https://github.com/tauseefrehman2/pinch-to-zoom-linear-layout
(when using a big image it puts it half of screen for some reason though, and when zooming if you release the finger you touched the screen first with first it jumps cuz it mixes up your fingers or something so if anyone knows how to fix that that would be great)
edit: i changed a few things and now it works perfectly

from photoeditor.

iMJ007 avatar iMJ007 commented on May 14, 2024

Here is my suggestion for preventing downscaling of images (which I successfully got working):

  1. Wrap the photoeditorview inside a horizontal scroll view with height&width wrap content
  2. setScaleX and setScaleY on photoViewEditor view with scale factor according to your needs
  3. calculate and set the amount of scroll needed to center the view and disable touch interception on scrollview

Since this library is generating bitmaps from displayed views itself, then manipulating views seems the only solution (TO ME) without drastically changing the underlying library code. Since the library is migrated to kotlin, I could not try and implement changes in the library itself as I am yet to learn kotlin 😢

from photoeditor.

burhanrashid52 avatar burhanrashid52 commented on May 14, 2024

Here is my suggestion for preventing downscaling of images (which I successfully got working):

1. Wrap the photoeditorview inside a horizontal scroll view with height&width wrap content

2. setScaleX and setScaleY on photoViewEditor view with scale factor according to your needs

3. calculate and set the amount of scroll needed to center the view and disable touch interception on scrollview

Since this library is generating bitmaps from displayed views itself, then manipulating views seems the only solution (TO ME) without drastically changing the underlying library code. Since the library is migrated to kotlin, I could not try and implement changes in the library itself as I am yet to learn kotlin 😢

Jave is interop with Kotlin. So you can create a separate class in Java where this scaling logic resides and return back the scaled image to the Kotlin method by delegating it to the java method. Then we can convert the Java class to Kotlin if more logic is required in the future.

from photoeditor.

ishazahid avatar ishazahid commented on May 14, 2024

PhotoEditor.getEmojis(getActivity()); i dont get this method getEmojis()
plz help me how to resolve this

from photoeditor.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.