art-den
art-den
Look at https://github.com/pedrocr/rawloader/pull/37#issue-1174991177
`NativeExitItem` store raw EXIF blob copied from `TiffEntry`. Blob is parsed only if you call getters (`ExifInfo::get_uint`, `ExifInfo::get_rational` etc). This is more safe if you don't want use EXIF data...
By the way, how to test this library? Is there a set of RAW files to check if I broke something?
I have added exif support to almost all formats. I want to test it before submitting a pull request
Same problem for me. Debug Visualizer is not usable for rust now (
The output for command ``` denis@denis-xubuntu:~/Projects/astra_lite$ cross-util -v run --target x86_64-unknown-linux-gnu -- "stat /home/denis/Projects/astra_lite/target/x86_64-unknown-linux-gnu/release/astra_lite" ``` is ``` + /usr/bin/podman + /usr/bin/podman version -f '{{ .Server.Os }},,,{{ .Server.Arch }}' + /usr/bin/podman...
"Visual Studio 2015 - Windows XP (v140_xp)" platform toolset in project options helps with this problem
But `TextDomain::init` and `gettext` and are called **before** `Application::new` in my example
Too much magic here )) I redid example like ```rust TextDomain::new("electra_stacking_gui") .prepend(r"D:\test_mo\share") .locale_category(LocaleCategory::LcAll) .skip_system_data_paths() .locale("en_US.UTF-8") .init() .unwrap(); let text = gettext("test"); println!("text = {}", text); ... GTK code here ```...
I write simple C test ```c #include #include #include #include int main(int argc, char *argv[]) { setlocale(LC_ALL, "en_EN.UTF-8"); bindtextdomain ("electra_stacking_gui", "D:\\test_mo\\share\\locale"); bind_textdomain_codeset("electra_stacking_gui", "UTF-8"); textdomain("electra_stacking_gui"); printf("text = %s\n", gettext("test")); GtkApplication *app...