2010-10-14 08:27:31 +02:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2012-06-21 14:30:25 +01:00
|
|
|
/*
|
|
|
|
* This file is part of the LibreOffice project.
|
|
|
|
*
|
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
*
|
|
|
|
* This file incorporates work covered by the following license notice:
|
|
|
|
*
|
|
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
* contributor license agreements. See the NOTICE file distributed
|
|
|
|
* with this work for additional information regarding copyright
|
|
|
|
* ownership. The ASF licenses this file to you under the Apache
|
|
|
|
* License, Version 2.0 (the "License"); you may not use this file
|
|
|
|
* except in compliance with the License. You may obtain a copy of
|
|
|
|
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
|
|
|
|
*/
|
2010-01-26 11:23:25 +01:00
|
|
|
|
|
|
|
#include <premac.h>
|
2007-07-05 08:10:56 +00:00
|
|
|
#include <Carbon/Carbon.h>
|
|
|
|
#include <QuickTime/QuickTime.h>
|
|
|
|
#include <postmac.h>
|
2013-06-17 22:12:07 +03:00
|
|
|
|
2012-08-13 11:21:13 +02:00
|
|
|
#include <string.h>
|
2007-07-05 08:10:56 +00:00
|
|
|
|
2010-02-19 11:45:31 +01:00
|
|
|
#include "PictToBmpFlt.hxx"
|
|
|
|
|
2013-01-10 16:28:40 +00:00
|
|
|
bool ImageToPNG( com::sun::star::uno::Sequence<sal_Int8>& rImgData,
|
|
|
|
com::sun::star::uno::Sequence<sal_Int8>& rPngData,
|
2010-01-26 11:23:25 +01:00
|
|
|
NSBitmapImageFileType eInFormat)
|
|
|
|
{
|
2013-06-17 22:12:07 +03:00
|
|
|
(void) eInFormat; // Really not needed? Weird.
|
2010-01-26 11:23:25 +01:00
|
|
|
|
2015-06-08 16:29:41 +02:00
|
|
|
NSData* pData = [NSData dataWithBytesNoCopy: const_cast<sal_Int8 *>(rImgData.getConstArray()) length: rImgData.getLength() freeWhenDone: 0];
|
2013-01-10 16:28:40 +00:00
|
|
|
if( !pData)
|
|
|
|
return false;
|
2010-01-26 11:23:25 +01:00
|
|
|
|
2013-01-10 16:28:40 +00:00
|
|
|
NSBitmapImageRep* pRep =[NSBitmapImageRep imageRepWithData: pData];
|
2015-06-10 13:31:07 +02:00
|
|
|
if( !pRep)
|
2013-01-10 16:28:40 +00:00
|
|
|
return false;
|
2010-01-26 11:23:25 +01:00
|
|
|
|
2015-06-10 13:31:07 +02:00
|
|
|
NSData* pOut = [pRep representationUsingType: NSPNGFileType properties: @{ }];
|
2013-01-10 16:28:40 +00:00
|
|
|
if( !pOut)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
const size_t nPngSize = [pOut length];
|
|
|
|
rPngData.realloc( nPngSize);
|
|
|
|
[pOut getBytes: rPngData.getArray() length: nPngSize];
|
|
|
|
return (nPngSize > 0);
|
2010-01-26 11:23:25 +01:00
|
|
|
}
|
|
|
|
|
2013-01-10 16:28:40 +00:00
|
|
|
bool PNGToImage( com::sun::star::uno::Sequence<sal_Int8>& rPngData,
|
|
|
|
com::sun::star::uno::Sequence<sal_Int8>& rImgData,
|
2010-01-26 11:23:25 +01:00
|
|
|
NSBitmapImageFileType eOutFormat
|
|
|
|
)
|
|
|
|
{
|
2013-01-10 16:28:40 +00:00
|
|
|
NSData* pData = [NSData dataWithBytesNoCopy: const_cast<sal_Int8*>(rPngData.getConstArray()) length: rPngData.getLength() freeWhenDone: 0];
|
|
|
|
if( !pData)
|
|
|
|
return false;
|
2010-01-26 11:23:25 +01:00
|
|
|
|
2014-02-21 23:46:33 +01:00
|
|
|
NSBitmapImageRep* pRep = [NSBitmapImageRep imageRepWithData: pData];
|
|
|
|
if( !pRep)
|
2013-01-10 16:28:40 +00:00
|
|
|
return false;
|
|
|
|
|
2015-06-09 12:47:34 +03:00
|
|
|
NSData* pOut = [pRep representationUsingType: eOutFormat properties: @{ }];
|
2013-01-10 16:28:40 +00:00
|
|
|
if( !pOut)
|
|
|
|
return false;
|
2010-01-26 11:23:25 +01:00
|
|
|
|
2013-01-10 16:28:40 +00:00
|
|
|
const size_t nImgSize = [pOut length];
|
|
|
|
rImgData.realloc( nImgSize);
|
|
|
|
[pOut getBytes: rImgData.getArray() length: nImgSize];
|
|
|
|
return (nImgSize > 0);
|
2010-01-26 11:23:25 +01:00
|
|
|
}
|
2010-10-14 08:27:31 +02:00
|
|
|
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|