Home
last modified time | relevance | path

Searched refs:exifInfo (Results 1 – 25 of 45) sorted by relevance

12

/dports/print/scribus-devel/scribus-1.5.7/scribus/ui/
H A Dimageinfodialog.cpp36 timeInfo = new QLabel( info->exifInfo.dateTime, GenGroup); in ImageInfoDialog()
75 Comment = new QLabel(info->exifInfo.comment, ExGroup); in ImageInfoDialog()
79 UserComment = new QLabel(info->exifInfo.userComment, ExGroup); in ImageInfoDialog()
87 Artist = new QLabel(info->exifInfo.artist, ExGroup); in ImageInfoDialog()
93 Model = new QLabel(info->exifInfo.cameraName, ExGroup); in ImageInfoDialog()
97 Manufact = new QLabel(info->exifInfo.cameraVendor, ExGroup); in ImageInfoDialog()
103 if (info->exifInfo.ExposureTime != 0) in ImageInfoDialog()
105 float exposureTime = info->exifInfo.ExposureTime; in ImageInfoDialog()
120 …ApertureFNumber = new QLabel(QString::asprintf("f/%3.1f", info->exifInfo.ApertureFNumber), ExGroup… in ImageInfoDialog()
124 ISOequivalent = new QLabel(QString::asprintf("%2d", info->exifInfo.ISOequivalent), ExGroup); in ImageInfoDialog()
H A Dpicsearch.cpp89 if ((im.imgInfo.exifDataValid) && (!im.imgInfo.exifInfo.thumbnail.isNull())) in createPreview()
91 ix = im.imgInfo.exifInfo.width; in createPreview()
92 iy = im.imgInfo.exifInfo.height; in createPreview()
/dports/print/scribus-devel/scribus-1.5.7/scribus/imagedataloaders/
H A Dscimgdataloader_jpeg.cpp139 m_imageInfoRecord.exifInfo.thumbnail = QImage(); in loadPicture()
193 m_imageInfoRecord.exifInfo.thumbnail = QImage(); in loadPicture()
196 m_imageInfoRecord.exifInfo.comment = ExifInf.getComment(); in loadPicture()
197 m_imageInfoRecord.exifInfo.width = ExifInf.getWidth(); in loadPicture()
198 m_imageInfoRecord.exifInfo.height = ExifInf.getHeight(); in loadPicture()
240 m_imageInfoRecord.exifInfo.thumbnail = QImage(); in loadPicture()
358 …m_image = QImage(m_imageInfoRecord.exifInfo.width, m_imageInfoRecord.exifInfo.height, QImage::Form… in loadPicture()
359 m_imageInfoRecord.exifInfo.width = cinfo.output_width; in loadPicture()
360 m_imageInfoRecord.exifInfo.height = cinfo.output_height; in loadPicture()
383 m_image = m_imageInfoRecord.exifInfo.thumbnail.copy(); in loadPicture()
[all …]
H A Dscimgdataloader_kra.cpp194 m_imageInfoRecord.exifInfo.height = docElem.attribute("height", "0").toInt(); in loadPicture()
195 m_imageInfoRecord.exifInfo.width = docElem.attribute("width", "0").toInt(); in loadPicture()
210 m_imageInfoRecord.exifInfo.thumbnail = m_image; in loadPicture()
227 m_imageInfoRecord.exifInfo.height = docElem.attribute("height", "0").toInt(); in loadPicture()
228 m_imageInfoRecord.exifInfo.width = docElem.attribute("width", "0").toInt(); in loadPicture()
241 …m_image = QImage(m_imageInfoRecord.exifInfo.width, m_imageInfoRecord.exifInfo.height, QImage::Form… in loadPicture()
H A Dscimgdataloader_ora.cpp69 m_imageInfoRecord.exifInfo.height = docElem.attribute("h", "0").toInt(); in loadPicture()
70 m_imageInfoRecord.exifInfo.width = docElem.attribute("w", "0").toInt(); in loadPicture()
77 m_imageInfoRecord.exifInfo.thumbnail = m_image; in loadPicture()
99 m_imageInfoRecord.exifInfo.height = docElem.attribute("h", "0").toInt(); in loadPicture()
100 m_imageInfoRecord.exifInfo.width = docElem.attribute("w", "0").toInt(); in loadPicture()
103 …m_image = QImage(m_imageInfoRecord.exifInfo.width, m_imageInfoRecord.exifInfo.height, QImage::Form… in loadPicture()
H A Dscimgdataloader.cpp252 m_imageInfoRecord.exifInfo.thumbnail = imth.rgbSwapped(); in parseResourceData()
254 m_imageInfoRecord.exifInfo.thumbnail = imth; in parseResourceData()
255 m_imageInfoRecord.exifInfo.width = imth.width(); in parseResourceData()
256 m_imageInfoRecord.exifInfo.height = imth.height(); in parseResourceData()
H A Dscimgdataloader_tiff.cpp718 m_imageInfoRecord.exifInfo.comment = QString(description); in loadPicture()
720 m_imageInfoRecord.exifInfo.width = widtht; in loadPicture()
721 m_imageInfoRecord.exifInfo.height = heightt; in loadPicture()
722 m_imageInfoRecord.exifInfo.dateTime = QString(datetime); in loadPicture()
723 m_imageInfoRecord.exifInfo.artist = QString(artist); in loadPicture()
724 m_imageInfoRecord.exifInfo.thumbnail = QImage(); in loadPicture()
756 m_imageInfoRecord.exifInfo.width = widtht; in loadPicture()
757 m_imageInfoRecord.exifInfo.height = heightt; in loadPicture()
776 if (!m_imageInfoRecord.exifInfo.thumbnail.isNull()) in loadPicture()
780 …r_image.create(m_imageInfoRecord.exifInfo.thumbnail.width(), m_imageInfoRecord.exifInfo.thumbnail.… in loadPicture()
[all …]
H A Dscimgdataloader_psd.cpp188 if (!m_imageInfoRecord.exifInfo.thumbnail.isNull()) in loadPicture()
192 …r_image.create(m_imageInfoRecord.exifInfo.thumbnail.width(), m_imageInfoRecord.exifInfo.thumbnail.… in loadPicture()
197 …r_image.create(m_imageInfoRecord.exifInfo.thumbnail.width(), m_imageInfoRecord.exifInfo.thumbnail.… in loadPicture()
203 for (int yit = 0; yit < m_imageInfoRecord.exifInfo.thumbnail.height(); ++yit) in loadPicture()
205 s = (QRgb*)(m_imageInfoRecord.exifInfo.thumbnail.scanLine( yit )); in loadPicture()
207 for (int xit =0 ; xit < m_imageInfoRecord.exifInfo.thumbnail.width(); ++xit) in loadPicture()
232 m_imageInfoRecord.exifInfo.width = header.width; in loadPicture()
233 m_imageInfoRecord.exifInfo.height = header.height; in loadPicture()
237 m_imageInfoRecord.exifInfo.width = header.width; in loadPicture()
238 m_imageInfoRecord.exifInfo.height = header.height; in loadPicture()
[all …]
/dports/multimedia/kodi/xbmc-19.3-Matrix/xbmc/pictures/
H A Dlibexif.cpp19 bool process_jpeg(const char *filename, ExifInfo_t *exifInfo, IPTCInfo_t *iptcInfo) in process_jpeg() argument
21 if (!exifInfo || !iptcInfo) return false; in process_jpeg()
23 memset(exifInfo, 0, sizeof(ExifInfo_t)); in process_jpeg()
27 memcpy(exifInfo, jpeg.GetExifInfo(), sizeof(ExifInfo_t)); in process_jpeg()
/dports/graphics/kphotoalbum/kphotoalbum-5.8.1/Exif/
H A DGrid.cpp112 StringSet Exif::Grid::exifGroups(const QMap<QString, QStringList> &exifInfo) in exifGroups() argument
115 …for (QMap<QString, QStringList>::ConstIterator it = exifInfo.begin(); it != exifInfo.end(); ++it) { in exifGroups()
121 …ngList> Exif::Grid::itemsForGroup(const QString &group, const QMap<QString, QStringList> &exifInfo) in itemsForGroup() argument
124 …for (QMap<QString, QStringList>::ConstIterator it = exifInfo.begin(); it != exifInfo.end(); ++it) { in itemsForGroup()
H A DGrid.h43 StringSet exifGroups(const QMap<QString, QStringList> &exifInfo);
44 …ring, QStringList> itemsForGroup(const QString &group, const QMap<QString, QStringList> &exifInfo);
/dports/japanese/xv/xv-3.10a/
H A Dxvjpeg.c83 static byte *exifInfo; variable
520 exifInfo = (byte *) NULL;
542 if (exifInfo) free(exifInfo);
546 pinfo->exifInfo = (byte *) NULL;
550 exifInfo = (byte *) NULL;
762 pinfo->exifInfo = exifInfo;
771 exifInfo = (byte *) NULL;
850 if (!exifInfo) {
851 exifInfo = (byte *) malloc((size_t) length);
854 else exifInfo = (byte *) realloc(exifInfo, exifInfoSize + length);
[all …]
/dports/graphics/xv-m17n/xv-3.10a/
H A Dxvjpeg.c83 static byte *exifInfo; variable
520 exifInfo = (byte *) NULL;
542 if (exifInfo) free(exifInfo);
546 pinfo->exifInfo = (byte *) NULL;
550 exifInfo = (byte *) NULL;
762 pinfo->exifInfo = exifInfo;
771 exifInfo = (byte *) NULL;
850 if (!exifInfo) {
851 exifInfo = (byte *) malloc((size_t) length);
854 else exifInfo = (byte *) realloc(exifInfo, exifInfoSize + length);
[all …]
/dports/graphics/xv/xv-3.10a/
H A Dxvjpeg.c83 static byte *exifInfo; variable
520 exifInfo = (byte *) NULL;
542 if (exifInfo) free(exifInfo);
546 pinfo->exifInfo = (byte *) NULL;
550 exifInfo = (byte *) NULL;
762 pinfo->exifInfo = exifInfo;
771 exifInfo = (byte *) NULL;
850 if (!exifInfo) {
851 exifInfo = (byte *) malloc((size_t) length);
854 else exifInfo = (byte *) realloc(exifInfo, exifInfoSize + length);
[all …]
/dports/print/scribus-devel/scribus-1.5.7/scribus/plugins/picbrowser/
H A Dloadimage.cpp142 if ((image.imgInfo.exifDataValid) && (!image.imgInfo.exifInfo.thumbnail.isNull())) in processLoadImageJob()
144 ix = image.imgInfo.exifInfo.width; in processLoadImageJob()
145 iy = image.imgInfo.exifInfo.height; in processLoadImageJob()
/dports/graphics/dcp2icc/dcp2icc-0.1/XMP-Toolkit-SDK-4.4.2/source/XMPFiles/FileHandlers/
H A DPSD_Handler.cpp265 PSIR_Manager::ImgRsrcInfo iptcInfo, exifInfo; in ProcessXMP() local
267 bool haveExif = psir.GetImgRsrc ( kPSIR_Exif, &exifInfo ); in ProcessXMP()
279 exif.ParseMemoryStream ( exifInfo.dataPtr, exifInfo.dataLen ); in ProcessXMP()
/dports/textproc/exempi/exempi-2.5.2/XMPFiles/source/FileHandlers/
H A DPSD_Handler.cpp206 PSIR_Manager::ImgRsrcInfo iptcInfo, exifInfo; in ProcessXMP() local
208 bool haveExif = psir.GetImgRsrc ( kPSIR_Exif, &exifInfo ); in ProcessXMP()
211 if ( haveExif ) exif.ParseMemoryStream ( exifInfo.dataPtr, exifInfo.dataLen ); in ProcessXMP()
/dports/graphics/libopenraw/libopenraw-0.3.0/lib/
H A Dciffcontainer.cpp250 auto exifInfo = getExifInfo(); in getCameraSettings() local
251 auto& propsRecs = exifInfo->records(); in getCameraSettings()
259 file()->seek(exifInfo->offset() + iter->second.offset(), SEEK_SET); in getCameraSettings()
/dports/print/scribus-devel/scribus-1.5.7/scribus/
H A Dscimagestructs.cpp99 exifInfo.init(); in init()
137 es << exifInfo; in serialize()
185 es >> exifInfo; in deserialize()
/dports/textproc/exempi/exempi-2.5.2/XMPFiles/source/FormatSupport/
H A DReconcileTIFF.cpp330 if ( exifInfo.dataLen == 0 ) return false; // Ignore empty Exif values. in IsValueDifferent()
332 …if ( ReconcileUtils::IsUTF8 ( exifInfo.dataPtr, exifInfo.dataLen ) ) { // ! Note that ASCII is UTF… in IsValueDifferent()
333 exifValue->assign ( (char*)exifInfo.dataPtr, exifInfo.dataLen ); in IsValueDifferent()
336 ReconcileUtils::LocalToUTF8 ( exifInfo.dataPtr, exifInfo.dataLen, exifValue ); in IsValueDifferent()
2277 TIFF_Manager::TagInfo exifInfo; in Import3WayDateTime() local
2291 } else if ( haveExif && (exifInfo.type == kTIFF_ASCIIType) ) { in Import3WayDateTime()
2302 (! XMP_LitNMatch ( (char*)exifInfo.dataPtr, (char*)infoFromXMP.dataPtr, exifInfo.dataLen )) ) { in Import3WayDateTime()
2303 ImportTIFF_Date ( exif, exifInfo, xmp, xmpNS, xmpProp ); in Import3WayDateTime()
2345 TIFF_Manager::TagInfo exifInfo; in Import3WayItems() local
2364 for ( XMP_Uns32 i = 0; i < exifInfo.dataLen-1; ++i ) { in Import3WayItems()
[all …]
/dports/graphics/kphotoalbum/kphotoalbum-5.8.1/DB/
H A DImageInfo.cpp404 DB::FileInfo exifInfo = DB::FileInfo::read(fullPath, mode); in readExif() local
408 const ImageDate newDate(exifInfo.dateTime()); in readExif()
414 setAngle(exifInfo.angle()); in readExif()
420 QString desc = exifInfo.description(); in readExif()
438 DB::ImageDB::instance()->exifDB()->add(exifInfo.getFileName(), exifInfo.getExifData()); in readExif()
/dports/graphics/krita/krita-4.4.8/libs/impex/
H A DExifCheck.h48 return eIV.exifInfo(); in checkNeeded()
/dports/graphics/krita/krita-4.4.8/libs/image/
H A Dkis_exif_info_visitor.h96 inline KisMetaData::Store* exifInfo() in exifInfo() function
/dports/graphics/art/ART-1.9.3/rtgui/
H A Dfilecatalog.cc453 exifInfo = Gtk::manage(new Gtk::ToggleButton ()); in FileCatalog()
454 exifInfo->set_image (*Gtk::manage(new RTImage ("info.png"))); in FileCatalog()
455 exifInfo->set_relief (Gtk::RELIEF_NONE); in FileCatalog()
456 exifInfo->set_tooltip_markup (M("FILEBROWSER_SHOWEXIFINFO")); in FileCatalog()
457 exifInfo->set_active( options.showFileNames ); in FileCatalog()
459 buttonBar->pack_start (*exifInfo, Gtk::PACK_SHRINK); in FileCatalog()
614 options.filmStripShowFileNames = exifInfo->get_active(); in exifInfoButtonToggled()
616 options.showFileNames = exifInfo->get_active(); in exifInfoButtonToggled()
889 exifInfo->set_active( options.filmStripShowFileNames ); in enableTabMode()
897 exifInfo->set_active( options.showFileNames ); in enableTabMode()
[all …]
/dports/graphics/rawtherapee/rawtherapee-5.8/rtgui/
H A Dfilecatalog.cc401 exifInfo = Gtk::manage(new Gtk::ToggleButton ()); in FileCatalog()
402 exifInfo->set_image (*Gtk::manage(new RTImage ("info.png"))); in FileCatalog()
403 exifInfo->set_relief (Gtk::RELIEF_NONE); in FileCatalog()
404 exifInfo->set_tooltip_markup (M("FILEBROWSER_SHOWEXIFINFO")); in FileCatalog()
405 exifInfo->set_active( options.showFileNames ); in FileCatalog()
407 buttonBar->pack_start (*exifInfo, Gtk::PACK_SHRINK); in FileCatalog()
517 options.filmStripShowFileNames = exifInfo->get_active(); in exifInfoButtonToggled()
519 options.showFileNames = exifInfo->get_active(); in exifInfoButtonToggled()
687 exifInfo->set_active( options.filmStripShowFileNames ); in enableTabMode()
695 exifInfo->set_active( options.showFileNames ); in enableTabMode()
[all …]

12