Summary: | [wish] support of the "open raster" *.ora files | ||
---|---|---|---|
Product: | [Unmaintained] kdelibs | Reporter: | David REVOY <info> |
Component: | kimgio | Assignee: | Halla Rempt <halla> |
Status: | RESOLVED FIXED | ||
Severity: | wishlist | CC: | cfeck, halla, jononor, kapillamba4, rafael.linux.user |
Priority: | NOR | ||
Version: | unspecified | ||
Target Milestone: | --- | ||
Platform: | Ubuntu | ||
OS: | Linux | ||
Latest Commit: | http://commits.kde.org/calligra/35dfa7d318e0c6906497463c7c95cdf59b5ce1ea | Version Fixed In: | |
Sentry Crash Report: |
Description
David REVOY
2012-01-03 20:44:43 UTC
Would it be acceptable to have the OpenRaster loader be part of the Calligra/Krita installation, in other words, Gwenview could load OpenRaster files, if (and only if) Krita is installed? This is the case for the thumbnailer currently. Very acceptable, as most of user in this case are poeple who have Krita / Mypaint installed at least on their operating system. It can use calligraconverter --batch "input.ora" "output-temp.png" to read. For the thumbnail, the ones already inside the *.ora files are fines. While I'm at it ; could it be done for *.kra files ? ( krita files ) they have exactly the same structure ( zip with thumbnail folder for thumb ) and can also be converted with calligraconverter Thanks Git commit 86abb9fb182509dbb553d7c940d91fcf9d6c046b by Boudewijn Rempt. Committed on 19/12/2013 at 13:50. Pushed by rempt into branch 'master'. Add qimageio plugins for kra and ora files M +1 -0 krita/plugins/CMakeLists.txt M +0 -2 krita/plugins/formats/ora/CMakeLists.txt M +1 -0 krita/plugins/formats/ora/ora_converter.cc A +17 -0 krita/plugins/kimgio/CMakeLists.txt A +104 -0 krita/plugins/kimgio/kra.cpp [License: Public Domain LGPL (v2+)] A +7 -0 krita/plugins/kimgio/kra.desktop A +30 -0 krita/plugins/kimgio/kra.h [License: LGPL (v2+)] A +120 -0 krita/plugins/kimgio/ora.cpp [License: Public Domain LGPL (v2+)] A +7 -0 krita/plugins/kimgio/ora.desktop A +30 -0 krita/plugins/kimgio/ora.h [License: LGPL (v2+)] M +2 -0 krita/ui/CMakeLists.txt M +31 -0 krita/ui/kis_doc2.cc M +3 -0 krita/ui/kis_doc2.h R +0 -0 krita/ui/ora/ora_load_context.cc [from: krita/plugins/formats/ora/ora_load_context.cc - 100% similarity] R +2 -1 krita/ui/ora/ora_load_context.h [from: krita/plugins/formats/ora/ora_load_context.h - 092% similarity] R +0 -0 krita/ui/ora/ora_save_context.cc [from: krita/plugins/formats/ora/ora_save_context.cc - 100% similarity] R +2 -1 krita/ui/ora/ora_save_context.h [from: krita/plugins/formats/ora/ora_save_context.h - 092% similarity] M +2 -2 libs/main/KoDocument.h http://commits.kde.org/calligra/86abb9fb182509dbb553d7c940d91fcf9d6c046b Git commit 35dfa7d318e0c6906497463c7c95cdf59b5ce1ea by Boudewijn Rempt. Committed on 19/12/2013 at 13:50. Pushed by rempt into branch 'calligra/2.8'. Add qimageio plugins for kra and ora files M +1 -0 krita/plugins/CMakeLists.txt M +0 -2 krita/plugins/formats/ora/CMakeLists.txt M +1 -0 krita/plugins/formats/ora/ora_converter.cc A +17 -0 krita/plugins/kimgio/CMakeLists.txt A +104 -0 krita/plugins/kimgio/kra.cpp [License: Public Domain LGPL (v2+)] A +7 -0 krita/plugins/kimgio/kra.desktop A +30 -0 krita/plugins/kimgio/kra.h [License: LGPL (v2+)] A +120 -0 krita/plugins/kimgio/ora.cpp [License: Public Domain LGPL (v2+)] A +7 -0 krita/plugins/kimgio/ora.desktop A +30 -0 krita/plugins/kimgio/ora.h [License: LGPL (v2+)] M +2 -0 krita/ui/CMakeLists.txt M +31 -0 krita/ui/kis_doc2.cc M +3 -0 krita/ui/kis_doc2.h R +0 -0 krita/ui/ora/ora_load_context.cc [from: krita/plugins/formats/ora/ora_load_context.cc - 100% similarity] R +2 -1 krita/ui/ora/ora_load_context.h [from: krita/plugins/formats/ora/ora_load_context.h - 092% similarity] R +0 -0 krita/ui/ora/ora_save_context.cc [from: krita/plugins/formats/ora/ora_save_context.cc - 100% similarity] R +2 -1 krita/ui/ora/ora_save_context.h [from: krita/plugins/formats/ora/ora_save_context.h - 092% similarity] M +2 -2 libs/main/KoDocument.h http://commits.kde.org/calligra/35dfa7d318e0c6906497463c7c95cdf59b5ce1ea Boudewijn, thanks for this. Could you please check if this also fixes bug 220335 (being able to view .ora thumbnails)? If not, maybe it just need to be added to kde-runtime/kioslave/thumbnail/imagethumbnail.desktop *** Bug 337271 has been marked as a duplicate of this bug. *** *** Bug 220335 has been marked as a duplicate of this bug. *** |