B4A Question ExifData - ronell (first post)    Jul 30, 2017   (1 reaction) this? https://www.b4x.-library-gives-access-to-exif-data.11629/
and this? https://www.b4x.-library.11689/ B4A Library Android Support ExifInterface - mjcoon (first post)    Dec 26, 2022 Hi Don, I would love to use this library because it gives access to many more EXIF tags than JpegUtils's object ExifData. But for some reason ExifInterface Initialize() causes my test app to crash whereas ExifData does not.
But I see that the underlying Android public class ExifInterface is now dep B4A Question Need help with camera - Alexander Stolte (first post)    May 23, 2017 I had work on it few hours, but i have no idea how to run it.
exifdata1.Initialize need Dir and File, and without coming always error. B4A Question Image Orientation - Eme Fibonacci (first post)    Feb 24, 2018 Hi, you need use ExifData. https://www.b4x.-help-with-camera.79027/#post-500852 B4J Question How to get the EXIF information from an image? - Mark Read    Jul 02, 2018 #If JAVA
import com.drew.imaging.*;
import com.drew.metadata.*;
import com.drew.lang.*;
import java.io.*;
import java.util.*;
public static List GetImgMeta(String filename)
{
File file = new File(filename);
List lstMeta = new ArrayList<Object>();
try {
Metadata metadata = ImageMetadata B4A Question ImageView image orientation problem - Alexander Stolte (first post)    Dec 28, 2023   (1 reaction) Dim bmp As B4XBitmap = xui.LoadBitmap(File.DirAssets,"YourImage.jpg") Try Dim Exif As ExifData Exif.Initialize(Provider.SharedFolder, tempImageFile) Log("Orientation: " & Exif.getAttribute(Exif.TAG_ORIENTATION)) Select Exif.getAttribute(Exif.TAG_OR B4A Question Camera EX wrong orientation - Addo (first post)    Apr 18, 2018 i will have a problem here this is real time camera app if i save each preview the phone memory will be eatin very fast as i see i should save the preview to desk to be able to use ExifData B4A Question SimpleMediaManager metadata or EXIF - Erel (first post)    May 19, 2022 This is the relevant code in SMM that reads the orientation:
Dim MetadataReader As JavaObject
Dim ExifReader As JavaObject
ExifReader.InitializeNewInstance("com.drew.metadata.exif.ExifReader", Null)
Dim readers As List = Array(ExifReader)
Try
Dim Metadata As JavaObject = Met B4A Question Access Exif data in SMM - gunnarjonsson    Apr 05, 2023 Hi All,
I saw en example how image orientation was accessed in SMM.
#if B4A
If B4ASdkVersion >= 24 Then
Dim ExifInterface As JavaObject
ExifInterface.InitializeNewInstance("android.media.ExifInterface", Array(In))
Dim orientation As Int = ExifInterface.RunMethod("getAttr B4A Library JpegUtils library gives access to Exif data - b2mvga (first post)    Aug 30, 2016 Sorry open this old topic... but... I search in all page and not found the library file download link...
I need use the ExifData in my app but I cant´t find the jpegutils library... Page: 1   2   3   4   5   6   7   Powered by ColBERT |