Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 298671 | Differences between
and this patch

Collapse All | Expand All

(-)vips-7.20.6.orig/libvips/colour/im_icc_transform.c (-14 / +4 lines)
Lines 63-69 Link Here
63
im_icc_transform( IMAGE *in, IMAGE *out, 
63
im_icc_transform( IMAGE *in, IMAGE *out, 
64
	const char *input_profile_filename,
64
	const char *input_profile_filename,
65
	const char *output_profile_filename,
65
	const char *output_profile_filename,
66
	int intent )
66
	VipsIntent intent )
67
{
67
{
68
	im_error( "im_icc_transform", "%s",
68
	im_error( "im_icc_transform", "%s",
69
		_( "lcms library not linked to this VIPS" ) );
69
		_( "lcms library not linked to this VIPS" ) );
Lines 73-79 Link Here
73
73
74
int
74
int
75
im_icc_import( IMAGE *in, IMAGE *out, 
75
im_icc_import( IMAGE *in, IMAGE *out, 
76
	const char *input_profile_filename, int intent )
76
	const char *input_profile_filename, VipsIntent intent )
77
{
77
{
78
	im_error( "im_icc_import", "%s",
78
	im_error( "im_icc_import", "%s",
79
		_( "lmcs library not linked to this VIPS" ) );
79
		_( "lmcs library not linked to this VIPS" ) );
Lines 82-88 Link Here
82
}
82
}
83
83
84
int
84
int
85
im_icc_import_embedded( IMAGE *in, IMAGE *out, int intent )
85
im_icc_import_embedded( IMAGE *in, IMAGE *out, VipsIntent intent )
86
{
86
{
87
	im_error( "im_icc_import", "%s",
87
	im_error( "im_icc_import", "%s",
88
		_( "lmcs library not linked to this VIPS" ) );
88
		_( "lmcs library not linked to this VIPS" ) );
Lines 92-98 Link Here
92
92
93
int
93
int
94
im_icc_export_depth( IMAGE *in, IMAGE *out, int depth,
94
im_icc_export_depth( IMAGE *in, IMAGE *out, int depth,
95
	const char *output_profile_filename, int intent )
95
	const char *output_profile_filename, VipsIntent intent )
96
{
96
{
97
	im_error( "im_icc_export_depth", "%s", 
97
	im_error( "im_icc_export_depth", "%s", 
98
		_( "lmcs library not linked to this VIPS" ) );
98
		_( "lmcs library not linked to this VIPS" ) );
Lines 101-116 Link Here
101
}
101
}
102
102
103
int
103
int
104
im_icc_export( IMAGE *in, IMAGE *out, 
105
	const char *output_profile_filename, int intent )
106
{
107
	im_error( "im_icc_export", "%s", 
108
		_( "lmcs library not linked to this VIPS" ) );
109
110
	return( -1 );
111
}
112
113
int
114
im_icc_ac2rc( IMAGE *in, IMAGE *out, const char *profile_filename )
104
im_icc_ac2rc( IMAGE *in, IMAGE *out, const char *profile_filename )
115
{
105
{
116
	im_error( "im_icc_ac2rc", "%s", 
106
	im_error( "im_icc_ac2rc", "%s", 

Return to bug 298671