I need to make an application where user is able to add custom stickers on image.
Rotate stickers
resize sticker
I read an article here:
add snapchat like sticker features in your app: medium
also i got the source code here:
github link
i am able to use it and is exactly what i need
but i am not able to set the background of the image of sticker
it is always white and even if i add any custom sticker
it is blurry
any one knows the solution kindly help
Related
Hi.
I am trying to implement a feature in the app that blurs some part of an image based on users (selection/touch) the selected area. I have implemented the code for whole image. But I am unable to find any example for the specified area of an image. So, please help me which type of example will use.
Just search before posting here :
Use this to blur your photo :
https://futurestud.io/blog/how-to-blur-images-efficiently-with-androids-renderscript
And use this to select the area you want
http://code.tutsplus.com/tutorials/capture-and-crop-an-image-with-the-device-camera--mobile-11458
Use this to blur image sample example:
http://javatechig.com/android/how-to-create-bitmap-blur-effect-in-android-using-renderscript
I found it by the below link:
http://trickyandroid.com/advanced-blurring-techniques/
Now i am going to develop this link to drag and drop the selected blur area. But i am not getting to drop this blur in other area. please help for this.
my requirement is to crop image with fixed size in android.. I am getting image from gallery or camera and now want to show fixed size of crop option on that image so that user just drag the rectangle box and set anywhere on the image and save.
Please google your question before asking them on StackOverflow...
There are plenty of libraries which are doing what you want. I use this one which is stable, clear and easy to use but you'll find plenty of others just by looking on Github with a search like this.
For the fixed size, there is maybe an option directly implemented in the API of the library I proposed you (never had this requirement), but if not, you just have to change the draw method of the transparent rectangle.
I want to create canvas/board in my android application. I want to add following functionality in canvas/board.
Add Multiple Pictures through camera (Rotate pictures, reduce picture sizes)
Add Text
Add Shapes (Circle, Rectangular etc)
Redo/Undo
Which control is used for creating such a canvas. Please guide me for developing such a canvas in android.
Following is the canvas/board example image - link
I have worked on similar kind of thing and have a working demo.
You can find it on Android Canvas Painting Demo
I hope it will help you.
I am trying to create an application which has a map image in it.
I want to add some areas (or buttons) to it so that when you click them the bubbles with information will appear.
I am new in android programming so asking to explain a bit how to implement it?
Also i need an image to be re-sizable just like a real map.
So should i attach the buttons to specific places on image and how to do so that the buttons will be connected to it when i re-size an image?
Which image type is better to use for this purpose? I heard that SVG would be better but i couldn't even add svg image to an application.
I appreciate any helpful advice.
For your problem you can use this:
http://catchthecows.com/?p=113
I need something similar, but the click on the image should change the content of that part as well.
When I find or implement the final solution I can post it here.
I need help to do the following task. My task is similar to Pose (an Android application). In this application they done a amazing concept. Once you capture the image, then tap any part of the image it shows number of options to add tagline. Once you add the tag means the particular tag is added over the image. once you upload the image to server, now you can view in your profile, once you touch on the image, the tag parts are visible, then you again touch the image means the tagged icons are disappeared. How they do this think, if they are using any third party tool?.Here for your reference i added the market link of Pose application also having a video and Sample images and i also added some images kindly notice it. Kindly share you valuable suggestion to completed this task.
You can use a FrameLayout and try to position the tags over the image that way, however I would probably make a custom View, override the onDraw method and do custom drawing for all of this.