Version: 0.1.7 (using KDE 3.5.9) OS: Linux Installed from: Mandriva RPMs Mandriva 2008.1 kde 3.5.9 digikam 9.5b1 kipi-plugins 0.1.7(svn) in the template there is no availability to unactivate zip operation then if i have a 959 KB original picture with 85 i get a 350 KB picture with 0 30 with 99 i get 1158 no mean to upload the original picture in the contrary of Picasa software
Jain, What's is zip for picasaweb ? Gilles Caulier
Mandriva 2008.1 kde 3.5.9 digikam 9.5b3 kipi-plugins 0.1.7 now there is a check box "resize" i did not check "resize" result : my still 1,2 MB is resized to 902 kB !
I can confirm this by reviewing the code: image is always rewritten with appropriate image quality and not uploaded as-is if no resize is specified. From picasawebtalker.cpp: if (rawFilesExt.toUpper().contains(fileInfo.suffix().toUpper())) KDcrawIface::KDcraw::loadDcrawPreview(image, photoPath); else image.load(photoPath); if (!image.isNull()) { path = KStandardDirs::locateLocal("tmp", QFileInfo(photoPath).baseName().trimmed() + ".jpg"); if (rescale && (image.width() > maxDim || image.height() > maxDim)) image = image.scaled(maxDim, maxDim, Qt::KeepAspectRatio, Qt::SmoothTransformation); image.save(path, "JPEG", imageQuality);
SVN commit 942897 by lure: Do not rewrite photos to temporary file before upload if no resize was selected by user. Only need temporary file if resize was requested and for extraction of preview image from RAW. BUG: 175221 M +3 -2 NEWS M +28 -16 picasawebexport/picasawebtalker.cpp WebSVN link: http://websvn.kde.org/?view=rev&revision=942897