summaryrefslogtreecommitdiff
path: root/test/png-flatten.c
diff options
context:
space:
mode:
authorCarl Worth <cworth@cworth.org>2006-01-17 16:59:08 +0000
committerCarl Worth <cworth@cworth.org>2006-01-17 16:59:08 +0000
commitb5c5fb613d5d554f6ebb3e1a10dbb1e7038b47c7 (patch)
treedc9d64144bce8a1fa1b005485f4ba709eac086d1 /test/png-flatten.c
parent0b48d620f11a1efb611d2ad6888c8e5d8f64db03 (diff)
downloadcairo-b5c5fb613d5d554f6ebb3e1a10dbb1e7038b47c7.tar.gz
Big change to the test infrastructure and supporting internals. The goal now is to test both a COLOR_ALPHA and a COLOR content for each surface backend, (since the semantics are different and we probably need to support both in each backend.
The PS/PDF backends don't allow a content to be passed in right now, so they fail against the rgb24 tests, but the trivial addition to the constructors will allow them to pass all tests with both content values. And new constructors (currently internal only) to create an image surface with a cairo_content_t rather than a cairo_format_t. Add a cairo_content_t argument to the constructor. Add a cairo_content_t to the constructor and use this content value when constructing intermediate image surfaces in acquire_source, show_page, copy_page, and snapshot. Add image flattening by compositing over white, as is done in cairo-ps-surface.c. Track changes to cairo-paginates-surface which now requires a cairo_content_t value (no change to public PS/PDF constructors yet). Track change in meta-surface and paginated-surface interfaces by now accepting a cairo_content_t rather than a cairo_format_t. Ignore new output files (argb32 from pdf and ps as well as rgb24 from test-fallback, test-meta, and test-paginated). Add new utility for flattening PNG images in order to generate the -argbf-ref.png images. Add image_diff_flattened for comparing flattened output from PS and PDF backend with ARGB reference images by first blending the reference images over white. Get rid of conditional, format-specific background-color initialization before running tests. Now uses ARGB(0,0,0,0) in all cases. Switch from specifying tests with a format value to specifying tests with a content value. Add support for a 'fake' COLOR_ALPHA_FLATTENED content for testing the PS and PDF output against a flattened version of the argb32 reference images (first blended over white). Track change in cairo_ps_surface_create (now requires cairo_content_t value). Adjust tests that draw in default (black) to first paint white so that the results are visible. Adjust ARGB32 reference images for new white background for changed tests. Adjust RGB24 reference images for new black background due to changed initialization (and the tests themselves being unchanged).
Diffstat (limited to 'test/png-flatten.c')
-rw-r--r--test/png-flatten.c77
1 files changed, 77 insertions, 0 deletions
diff --git a/test/png-flatten.c b/test/png-flatten.c
new file mode 100644
index 000000000..2ce804ea6
--- /dev/null
+++ b/test/png-flatten.c
@@ -0,0 +1,77 @@
+/*
+ * Copyright © 2005 Red Hat, Inc.
+ *
+ * Permission to use, copy, modify, distribute, and sell this software
+ * and its documentation for any purpose is hereby granted without
+ * fee, provided that the above copyright notice appear in all copies
+ * and that both that copyright notice and this permission notice
+ * appear in supporting documentation, and that the name of
+ * Red Hat, Inc. not be used in advertising or publicity pertaining to
+ * distribution of the software without specific, written prior
+ * permission. Red Hat, Inc. makes no representations about the
+ * suitability of this software for any purpose. It is provided "as
+ * is" without express or implied warranty.
+ *
+ * RED HAT, INC. DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS
+ * SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS, IN NO EVENT SHALL RED HAT, INC. BE LIABLE FOR ANY SPECIAL,
+ * INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER
+ * RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
+ * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
+ * IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+ *
+ * Author: Carl Worth <cworth@cworth.org>
+ */
+
+#include <stdio.h>
+
+#include <cairo.h>
+
+int
+main (int argc, char *argv[])
+{
+ cairo_t *cr;
+ cairo_surface_t *argb, *rgb24;
+ cairo_status_t status;
+ const char *input, *output;
+
+ if (argc != 3) {
+ fprintf (stderr, "usage: %s input.png output.png", argv[0]);
+ fprintf (stderr, "Loads a PNG image (potentially with alpha) and writes out a flattened (no alpha)\nPNG image by first blending over white.\n");
+ return 1;
+ }
+
+ input = argv[1];
+ output = argv[2];
+
+ argb = cairo_image_surface_create_from_png (input);
+ status = cairo_surface_status (argb);
+ if (status) {
+ fprintf (stderr, "%s: Error: Failed to load %s: %s\n",
+ argv[0], input, cairo_status_to_string (status));
+ return 1;
+ }
+
+ rgb24 = cairo_image_surface_create (CAIRO_FORMAT_RGB24,
+ cairo_image_surface_get_width (argb),
+ cairo_image_surface_get_height (argb));
+
+ cr = cairo_create (rgb24);
+
+ cairo_set_source_rgb (cr, 1.0, 1.0, 1.0); /* white */
+ cairo_paint (cr);
+
+ cairo_set_source_surface (cr, argb, 0, 0);
+ cairo_paint (cr);
+
+ cairo_destroy (cr);
+
+ status = cairo_surface_write_to_png (rgb24, output);
+ if (status) {
+ fprintf (stderr, "%s: Error: Failed to write %s: %s\n",
+ argv[0], output, cairo_status_to_string (status));
+ return 1;
+ }
+
+ return 0;
+}