Setting Up Project with your Templates
For this image crop algorithm to successfully work, you must provide templates with the background transparent and the lines clearly outlining your template. Make sure this template is saved as PNG, otherwise you won't have the transparent background that is required.
Once you have your templates in PNG files, you now need to place them into the correct project folders.
Looking at the screenshot above, I've placed my templates under res/drawable-nodpi. If you created your templates meant for any screen resolutions, then you can just place it under res/drawable-nodpi. Otherwise if you made different template sizes for different screen densities, then place them in their respective drawable folders.
Making the Proper Code Changes
The next process is to write code that will crop the images that you need.
Looking at the code snippet I have posted above. The only code that you will need to modify are the arguments for invoking the static method ImageProcess.cropImage(). In the last two arguments, you must provide it with the width and height of your template. Passing in the incorrect argument can produce an error within the application.
That is pretty much it for making the proper modifications to add your own templates. If you have any questions and/or facing issues, feel free to comment below or create a Github issue.
Cheers!!
Link to my Github project: android-cropping-example.
Link to previous blog post: Android Image Cropping Example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Setting values so that we can retrive the image from | |
// ImageView multiple times. | |
mImg.buildDrawingCache(true); | |
mImg.setDrawingCacheEnabled(true); | |
mTemplateImg.buildDrawingCache(true); | |
mTemplateImg.setDrawingCacheEnabled(true); | |
// Create new thread to crop. | |
new Thread(new Runnable() { | |
@Override | |
public void run() { | |
// Crop image using the correct template size. | |
Bitmap croppedImg = null; | |
if (mScreenWidth == 320 && mScreenHeight == 480) { | |
// getDrawingCache() method gets the bitmap. | |
croppedImg = ImageProcess.cropImage(mImg.getDrawingCache(true), mTemplateImg.getDrawingCache(true), 218, 300); | |
} else { | |
croppedImg = ImageProcess.cropImage(mImg.getDrawingCache(true), mTemplateImg.getDrawingCache(true), 320, 440); | |
} | |
// Set cache back to false to that we can retrieve bitmap again. | |
mImg.setDrawingCacheEnabled(false); | |
mTemplateImg.setDrawingCacheEnabled(false); | |
// Send a message to the Handler indicating the Thread has finished. | |
mCropHandler.obtainMessage(DISPLAY_IMAGE, -1, -1, croppedImg).sendToTarget(); | |
} | |
}).start(); |
That is pretty much it for making the proper modifications to add your own templates. If you have any questions and/or facing issues, feel free to comment below or create a Github issue.
Cheers!!
Link to my Github project: android-cropping-example.
Link to previous blog post: Android Image Cropping Example