summaryrefslogtreecommitdiff
path: root/amiga/thumbnail.c
blob: ac19873acad966bc318dfdc36dd4f0b96c4aaab9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
/*
 * Copyright 2008,2009 Chris Young <chris@unsatisfactorysoftware.co.uk>
 *
 * This file is part of NetSurf, http://www.netsurf-browser.org/
 *
 * NetSurf is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; version 2 of the License.
 *
 * NetSurf 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 General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

#include "desktop/browser.h"
#include <proto/graphics.h>
#include <proto/Picasso96API.h>
#include <intuition/intuition.h>
#include <graphics/blitattr.h>
#include <graphics/composite.h>
#include "amiga/gui.h"
#include "amiga/bitmap.h"
#include "amiga/options.h"
#include "content/urldb.h"

bool thumbnail_create(struct content *content, struct bitmap *bitmap,
	const char *url)
{
	struct BitScaleArgs bsa;

	bitmap->nativebm = p96AllocBitMap(bitmap->width,bitmap->height,32,
	BMF_CLEAR | BMF_DISPLAYABLE | BMF_INTERLEAVED,glob.bm,RGBFB_A8R8G8B8);

	bitmap->nativebmwidth = bitmap->width;
	bitmap->nativebmheight = bitmap->height;
	ami_clearclipreg(currp);
	content_redraw(content, 0, 0, content->width, content->width,
	0, 0, content->width, content->width, 1.0, 0xFFFFFF);

	if(GfxBase->lib_Version >= 53) // AutoDoc says v52, but this function isn't in OS4.0, so checking for v53 (OS4.1)
	{
		uint32 flags = COMPFLAG_IgnoreDestAlpha | COMPFLAG_SrcAlphaOverride;
		if(option_scale_quality) flags |= COMPFLAG_SrcFilter;

		CompositeTags(COMPOSITE_Src,glob.bm,bitmap->nativebm,
					COMPTAG_ScaleX,COMP_FLOAT_TO_FIX(bitmap->width/content->width),
					COMPTAG_ScaleY,COMP_FLOAT_TO_FIX(bitmap->height/content->width),
					COMPTAG_Flags,flags,
					COMPTAG_DestX,0,
					COMPTAG_DestY,0,
					COMPTAG_DestWidth,bitmap->width,
					COMPTAG_DestHeight,bitmap->height,
					COMPTAG_OffsetX,0,
					COMPTAG_OffsetY,0,
					TAG_DONE);
	}
	else
	{
		bsa.bsa_SrcX = 0;
		bsa.bsa_SrcY = 0;
		bsa.bsa_SrcWidth = content->width;
		bsa.bsa_SrcHeight = content->width;
		bsa.bsa_DestX = 0;
		bsa.bsa_DestY = 0;
	//	bsa.bsa_DestWidth = width;
	//	bsa.bsa_DestHeight = height;
		bsa.bsa_XSrcFactor = content->width;
		bsa.bsa_XDestFactor = bitmap->width;
		bsa.bsa_YSrcFactor = content->width;
		bsa.bsa_YDestFactor = bitmap->height;
		bsa.bsa_SrcBitMap = glob.bm;
		bsa.bsa_DestBitMap = bitmap->nativebm;
		bsa.bsa_Flags = 0;
		if(option_scale_quality) bsa.bsa_Flags = BSAF_AVERAGE;

		BitMapScale(&bsa);
	}

	if (url) urldb_set_thumbnail(url, bitmap);

	return true;
}