Add ExifTool subprocess call to process image metadata. import SwiftUI struct AlbumDetail: View { var album: Album var body: some View { List(album.songs) { song in HStack { Image(album.cover) VStack(alignment: .leading) { Text(song.title) Text(song.artist.name) .foregroundStyle(.secondary) } } } } } _Originally posted by @joseguizar95-art in https://github.com/microsoft/markitdown/pull/1680_f
Add ExifTool subprocess call to process image metadata.
import SwiftUI
struct AlbumDetail: View {
var album: Album
}
_Originally posted by @joseguizar95-art in https://github.com/microsoft/markitdown/pull/1680_f