summaryrefslogtreecommitdiff
path: root/fitz/res_image.c
blob: 3ccc01dcf9d328c947567ee4655a1d2566599448 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#include "fitz_base.h"
#include "fitz_res.h"

fz_image *
fz_keepimage(fz_image *image)
{
	image->refs ++;
	return image;
}

void
fz_dropimage(fz_image *image)
{
	if (image && --image->refs == 0)
	{
		if (image->freefunc)
			image->freefunc(image);
		if (image->cs)
			fz_dropcolorspace(image->cs);
		fz_free(image);
	}
}