/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /************************************************************************* * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 3 * only, as published by the Free Software Foundation. * * OpenOffice.org is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License version 3 for more details * (a copy is included in the LICENSE file that accompanied this code). * * You should have received a copy of the GNU Lesser General Public License * version 3 along with OpenOffice.org. If not, see * * for a copy of the LGPLv3 License. * ************************************************************************/ // MARKER(update_precomp.py): autogen include statement, do not remove #include "precompiled_sd.hxx" #include "SlsBitmapCompressor.hxx" #include #include #include #include namespace sd { namespace slidesorter { namespace cache { //===== NoBitmapCompression =================================================== /** This dummy replacement simply stores a shared pointer to the original preview bitmap. */ class NoBitmapCompression::DummyReplacement : public BitmapReplacement { public: Bitmap maPreview; Size maOriginalSize; DummyReplacement (const Bitmap& rPreview) : maPreview(rPreview) { } virtual ~DummyReplacement(void) {} virtual sal_Int32 GetMemorySize (void) const { return maPreview.GetSizeBytes(); } }; ::boost::shared_ptr NoBitmapCompression::Compress (const Bitmap& rBitmap) const { return ::boost::shared_ptr(new DummyReplacement(rBitmap)); } Bitmap NoBitmapCompression::Decompress (const BitmapReplacement& rBitmapData) const { return dynamic_cast(rBitmapData).maPreview; } bool NoBitmapCompression::IsLossless (void) const { return true; } //===== CompressionByDeletion ================================================= ::boost::shared_ptr CompressionByDeletion::Compress (const Bitmap& ) const { return ::boost::shared_ptr(); } Bitmap CompressionByDeletion::Decompress (const BitmapReplacement& ) const { // Return a NULL pointer. This will eventually lead to a request for // the creation of a new one. return Bitmap(); } bool CompressionByDeletion::IsLossless (void) const { return false; } //===== ResolutionReduction =================================================== /** Store a scaled down bitmap together with the original size. */ class ResolutionReduction::ResolutionReducedReplacement : public BitmapReplacement { public: Bitmap maPreview; Size maOriginalSize; virtual ~ResolutionReducedReplacement(); virtual sal_Int32 GetMemorySize (void) const; }; ResolutionReduction::ResolutionReducedReplacement::~ResolutionReducedReplacement() { } sal_Int32 ResolutionReduction::ResolutionReducedReplacement::GetMemorySize (void) const { return maPreview.GetSizeBytes(); } ::boost::shared_ptr ResolutionReduction::Compress ( const Bitmap& rBitmap) const { ResolutionReducedReplacement* pResult = new ResolutionReducedReplacement(); pResult->maPreview = rBitmap; Size aSize (rBitmap.GetSizePixel()); pResult->maOriginalSize = aSize; if (aSize.Width()>0 && aSize.Width()maPreview.Scale(Size(mnWidth,nHeight)); } return ::boost::shared_ptr(pResult); } Bitmap ResolutionReduction::Decompress (const BitmapReplacement& rBitmapData) const { Bitmap aResult; const ResolutionReducedReplacement* pData ( dynamic_cast(&rBitmapData)); if ( ! pData->maPreview.IsEmpty()) { aResult = pData->maPreview; if (pData->maOriginalSize.Width() > mnWidth) aResult.Scale(pData->maOriginalSize); } return aResult; } bool ResolutionReduction::IsLossless (void) const { return false; } //===== PNGCompression ======================================================== class PngCompression::PngReplacement : public BitmapReplacement { public: void* mpData; sal_Int32 mnDataSize; Size maImageSize; PngReplacement (void) : mpData(NULL), mnDataSize(0), maImageSize(0,0) {} virtual ~PngReplacement (void) { delete [] (char*)mpData; } virtual sal_Int32 GetMemorySize (void) const { return mnDataSize; } }; ::boost::shared_ptr PngCompression::Compress (const Bitmap& rBitmap) const { ::vcl::PNGWriter aWriter (rBitmap); SvMemoryStream aStream (32768, 32768); aWriter.Write(aStream); PngReplacement* pResult = new PngReplacement(); pResult->maImageSize = rBitmap.GetSizePixel(); pResult->mnDataSize = aStream.Tell(); pResult->mpData = new char[pResult->mnDataSize]; memcpy(pResult->mpData, aStream.GetData(), pResult->mnDataSize); return ::boost::shared_ptr(pResult); } Bitmap PngCompression::Decompress ( const BitmapReplacement& rBitmapData) const { Bitmap aResult; const PngReplacement* pData (dynamic_cast(&rBitmapData)); if (pData != NULL) { SvMemoryStream aStream (pData->mpData, pData->mnDataSize, STREAM_READ); ::vcl::PNGReader aReader (aStream); aResult = aReader.Read().GetBitmap(); } return aResult; } bool PngCompression::IsLossless (void) const { return true; } } } } // end of namespace ::sd::slidesorter::cache /* vim:set shiftwidth=4 softtabstop=4 expandtab: */