Back to project page Aviary-Android-SDK.
The source code is released under:
AVIARY API TERMS OF USE Full Legal Agreement The following terms and conditions and the terms and conditions at http://www.aviary.com/terms (collectively, the ?Terms??) govern your use of any and ...
If you think the Android project Aviary-Android-SDK listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.aviary.android.feather.async_tasks; //from ww w. j av a2s . co m import it.sephiroth.android.library.media.ExifInterfaceExtended; import android.os.Bundle; import com.aviary.android.feather.common.threading.ThreadPool.Job; import com.aviary.android.feather.common.threading.ThreadPool.Worker; public class ExifTask implements Job<String, Bundle> { @Override public Bundle run( Worker<String, Bundle> context, String... params ) throws Exception { if ( params == null ) { return null; } Bundle result = new Bundle(); try { ExifInterfaceExtended exif = new ExifInterfaceExtended( params[0] ); exif.copyTo( result ); } catch ( Throwable t ) { t.printStackTrace(); } return result; } }