icc.c 2.97 KB
Newer Older
1 2 3
/*
 * MSCMS - Color Management System for Wine
 *
4
 * Copyright 2004, 2005 Hans Leidekker
5 6 7 8 9 10 11 12 13 14 15 16 17
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library 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 for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
18
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19 20 21 22 23 24 25 26 27 28 29 30 31
 */

#include "config.h"

#include <stdarg.h>

#include "windef.h"
#include "winbase.h"
#include "wingdi.h"
#include "winuser.h"
#include "winternl.h"
#include "icm.h"

32
#include "mscms_priv.h"
33

34
#ifdef HAVE_LCMS
35 36 37 38 39 40 41 42

static inline void MSCMS_adjust_endianess32( ULONG *ptr )
{
#ifndef WORDS_BIGENDIAN
    *ptr = RtlUlongByteSwap(*ptr);
#endif
}

43
void MSCMS_get_profile_header( const icProfile *iccprofile, PROFILEHEADER *header )
44 45 46 47 48 49 50 51 52 53
{
    unsigned int i;

    memcpy( header, iccprofile, sizeof(PROFILEHEADER) );

    /* ICC format is big-endian, swap bytes if necessary */
    for (i = 0; i < sizeof(PROFILEHEADER) / sizeof(ULONG); i++)
        MSCMS_adjust_endianess32( (ULONG *)header + i );
}

54
void MSCMS_set_profile_header( icProfile *iccprofile, const PROFILEHEADER *header )
55 56 57 58 59 60 61 62 63 64 65
{
    unsigned int i;
    icHeader *iccheader = (icHeader *)iccprofile;

    memcpy( iccheader, header, sizeof(icHeader) );

    /* ICC format is big-endian, swap bytes if necessary */
    for (i = 0; i < sizeof(icHeader) / sizeof(ULONG); i++)
        MSCMS_adjust_endianess32( (ULONG *)iccheader + i );
}

66
DWORD MSCMS_get_tag_count( const icProfile *iccprofile )
67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
{
    ULONG count = iccprofile->count;

    MSCMS_adjust_endianess32( &count );
    return count;
}

void MSCMS_get_tag_by_index( icProfile *iccprofile, DWORD index, icTag *tag )
{
    icTag *tmp = (icTag *)((char *)&iccprofile->data + index * sizeof(icTag));

    tag->sig = tmp->sig;
    tag->offset = tmp->offset;
    tag->size = tmp->size;

    MSCMS_adjust_endianess32( (ULONG *)&tag->sig );
83 84
    MSCMS_adjust_endianess32( &tag->offset );
    MSCMS_adjust_endianess32( &tag->size );
85 86
}

87
void MSCMS_get_tag_data( const icProfile *iccprofile, const icTag *tag, DWORD offset, void *buffer )
88
{
89
    memcpy( buffer, (const char *)iccprofile + tag->offset + offset, tag->size - offset );
90
}
91

92
void MSCMS_set_tag_data( icProfile *iccprofile, const icTag *tag, DWORD offset, const void *buffer )
93 94 95 96
{
    memcpy( (char *)iccprofile + tag->offset + offset, buffer, tag->size - offset );
}

97
DWORD MSCMS_get_profile_size( const icProfile *iccprofile )
98
{
99
    DWORD size = ((const icHeader *)iccprofile)->size;
100

101
    MSCMS_adjust_endianess32( &size );
102 103 104
    return size;
}

105
#endif /* HAVE_LCMS */