I'm developing an App where users can write and upload background image/color. So when they share it on social media I want to create an image on serverside with background color/image and text(custom fonts) on it.
I want to render image something similar to following screenshot of my app.
Any library or any other solution to render dynamic image on server side.
Related
I am making a demo app which functionality is that send image automatically without showing it in whatsapp image editor. How can I send the image directly my app to whatsapp?
Image
Video Demo
On button click i am sending image but open below screen which i don't want and share image directly to my contact.
Here is demo Video to send image directly application to whatsapp.
I do not think it is possible to bypass the video editor. You need to go through it.
How can a design a chat bubble that won't show preview of image only but also other types of media files like videos, pdf, word media files.
You can use 9-Patch Images for bubble background.
You can Draw 9-patch tool is a WYSIWYG editor included in Android Studio that allows you to create bitmap images that automatically resize to accommodate the contents of the view and the size of the screen. Selected parts of the image are scaled horizontally or vertically based on indicators drawn within the image.
Please follow this LINK
You can also use Android Asset Generator to generate 9-patch image HERE
I want to make an photo gallery app, so I want something like I upload pics to a webpage and it automatically gets displayed in that app.
I don't want to edit the coding for every single image and yess I don't want "WebView" all I want is a pure native android app, that gets data (images/audios/videos) from a webpage and display it in my native android app activity.
What you need to use is a grid view, you pass an array with the links to download the image and place them in each row.
Here is an [example] (http://www.tutorialspoint.com/android/android_grid_view.htm) of how to use it.
Hope it helps
I am working on a project in which I need to pick an image using image picker intent and then give option to user to crop it like facebook so that he can make it a profile picture. Image picker in done. But i wonder how can i give this crop option to user in android. What I need is , after selecting an image a rectangular box (like facebook) appears and user can crop , resize image and then save it. It their any help or library available for this?
I have successfully used Cropper for this purpose.
How do i read an image file and display that image in java onto the android platform. I understand i need to use intents and activities, but i'm not sure how to do it.
Basically i want to make an app on android that reads an image file and then write/display it. This can be done using intents and activities. When the user clicks on the read button, the image file gets read, and then when the user clicks on the write button the image gets displayed.
I'm not sure how to read an image file and then to display that image onto the android platform.