Example #1
0
int
main(void)
{
    try {
	/* This is where the data files are. Adjust as necessary.*/
	const wstring searchpath = L"../data";

	PDFlib p;
	const wstring imagefile = L"nesrin.jpg";
	int font, image, spot, icc;
	wostringstream optlist;

	//  This means we must check return values of load_font() etc.
	p.set_parameter(L"errorpolicy", L"return");

	p.set_parameter(L"SearchPath", searchpath);

	if (p.begin_document(L"starter_pdfx3.pdf", L"pdfx=PDF/X-3:2003")
                                                                    == -1) {
	    wcerr << L"Error: " << p.get_errmsg() << endl;
            return 2;
	}

	p.set_info(L"Creator", L"PDFlib starter sample");
	p.set_info(L"Title", L"starter_pdfx3");

	/*
	 * You can use one of the Standard output intents (e.g. for SWOP
	 * printing) which do not require an ICC profile:

	p.load_iccprofile(L"CGATS TR 001", L"usage=outputintent");

	 * However, if you use ICC or Lab color you must load an ICC
	 * profile as output intent:
	 */
	if (p.load_iccprofile(L"ISOcoated.icc", L"usage=outputintent") == -1) {
	    wcerr << L"Error: " << p.get_errmsg() << endl;
	    wcerr << L"Please install the ICC profile package from " <<
		L"www.pdflib.com to run the PDF/X starter sample." << endl;
	    return 2;
	}

	p.begin_page_ext(595, 842, L"");

	/* Font embedding is required for PDF/X */
	font = p.load_font(L"LuciduxSans-Oblique", L"winansi", L"embedding");
	if (font == -1) {
	    wcerr << L"Error: " << p.get_errmsg() << endl;
            return 2;
	}
	p.setfont(font, 24);

	spot = p.makespotcolor(L"PANTONE 123 C");
	p.setcolor(L"fill", L"spot", spot, 1.0, 0.0, 0.0);
	p.fit_textline(L"PDF/X-3:2003 starter", 50, 700, L"");

	/* The RGB image below needs an ICC profile; we use sRGB. */
	icc = p.load_iccprofile(L"sRGB", L"");
        optlist.str(L"");
        optlist << L"iccprofile=" << icc;
	image = p.load_image(L"auto", imagefile, optlist.str());

	if (image == -1) {
	    wcerr << L"Error: " << p.get_errmsg() << endl;
            return 2;
	}

	p.fit_image(image, 0.0, 0.0, L"scale=0.5");
	p.end_page_ext(L"");
	p.end_document(L"");
    }
    catch (PDFlib::Exception &ex) {
	wcerr << L"PDFlib exception occurred:" << endl
	      << L"[" << ex.get_errnum() << L"] " << ex.get_apiname()
	      << L": " << ex.get_errmsg() << endl;
	return 2;
    }

    return 0;
}
Example #2
0
int
main(void)
{
    try {

        /* This is where the data files are. Adjust as necessary. */
        const wstring searchpath = L"../data";
        const wstring outfile = L"starter_color.pdf";

        PDFlib p;
        int font, spot;
        int y = 800, x = 50, xoffset1=80, xoffset2 = 100, yoffset = 70, r = 30;
        double icchandle;

        p.set_parameter(L"SearchPath", searchpath);

        /* This means we must check return values of load_font() etc. */
        p.set_parameter(L"errorpolicy", L"return");

        if (p.begin_document(outfile, L"") == -1) {
            wcerr << L"Error: " << p.get_errmsg() << endl;
            return 2;
        }

        p.set_info(L"Creator", L"PDFlib starter sample");
        p.set_info(L"Title", L"starter_color");

        /* Load the font */
        font = p.load_font(L"Helvetica", L"winansi", L"");

        if (font == -1) {
            wcerr << L"Error: " << p.get_errmsg() << endl;
            return 2;
        }

        /* Start the page */
        p.begin_page_ext(0, 0, L"width=a4.width height=a4.height");

        p.setfont(font, 14);


        /* -------------------------------------------------------------------
         * Use default colors
         *
         * If no special color is set the default values will be used. The
         * default values are restored at the beginning of the page.
         * 0=black in the Gray color space is the default fill and stroke
         * color in many cases, as shown in our sample.
         * -------------------------------------------------------------------
         */

        /* Fill a circle with the default black fill color */
        p.circle(x, y-=yoffset, r);
        p.fill();

        /* Output text with default black fill color */
        p.fit_textline( L"Circle and text filled with default color {gray 0}",
                x+xoffset2, y, L"");

        p.fit_textline(L"1.",  x+xoffset1, y, L"");

        /* -------------------------------------------------------------------
         * Use the Gray color space
         *
         * Gray color is defined by Gray values between 0=black and 1=white.
         * -------------------------------------------------------------------
         */

        /* Using setcolor(), set the current fill color to a light gray
         * represented by (0.5, 0, 0, 0) which defines 50% gray. Since gray
         * colors are defined by only one value, the last three function
         * parameters must be set to 0.
         */
        p.setcolor(L"fill", L"gray", 0.5, 0, 0, 0);

        /* Fill a circle with the current fill color defined above */
        p.circle(x, y-=yoffset, r);
        p.fill();

        /* Output text with the current fill color */
        p.fit_textline(L"Circle and text filled with {gray 0.5}",
                x+xoffset2, y, L"");

        /* Alternatively, you can set the fill color in the call to
         * fit_textline() using the L"fillcolor" option. This case applies the
         * fill color just the single function call. The current fill color
         * won't be affected.
         */
        p.fit_textline(L"2.", x+xoffset1, y, L"fillcolor={gray 0.5}");


        /* --------------------------------------------------------------------
         * Use the RGB color space
         *
         * RGB color is defined by RGB triples, i.e. three values between 0 and
         * 1 specifying the percentage of red, green, and blue.
         * (0, 0, 0) is black and (1, 1, 1) is white. The commonly used RGB
         * color values in the range 0...255 must be divided by 255 in order to
         * scale them to the range 0...1 as required by PDFlib.
         * --------------------------------------------------------------------
         */

        /* Use setcolor() to set the fill color to a grass-green
         * represented by (0.1, 0.95, 0.3, 0) which defines 10% red, 95% green,
         * 30% blue. Since RGB colors are defined by only three values, the last
         * function parameter must be set to 0.
         */
        p.setcolor(L"fill", L"rgb", 0.1, 0.95, 0.3, 0);

        /* Draw a circle with the current fill color defined above */
        p.circle(x, y-=yoffset, r);
        p.fill();

        /* Output a text line with the RGB fill color defined above */
        p.fit_textline(L"Circle and text filled with {rgb 0.1 0.95 0.3}",
                x+xoffset2, y, L"");

        /* Alternatively, you can set the fill color in the call to
         * fit_textline() using the L"fillcolor" option. This case applies the
         * fill color just the single function call. The current fill color
         * won't be affected.
         */
        p.fit_textline(L"3.", x+xoffset1, y, L"fillcolor={rgb 0.1 0.95 0.3}");


        /* --------------------------------------------------------------------
         * Use the CMYK color space
         *
         * CMYK color is defined by four CMYK values between 0 = no color and
         * 1 = full color representing cyan, magenta, yellow, and black values;
         * (0, 0, 0, 0) is white and (0, 0, 0, 1) is black.
         * --------------------------------------------------------------------
         */

        /* Use setcolor() to set the current fill color to a pale
         * orange, represented by (0.1, 0.7, 0.7, 0.1) which defines 10% Cyan,
         * 70% Magenta, 70% Yellow, and 10% Black.
         */
        p.setcolor(L"fill", L"cmyk", 0.1, 0.7, 0.7, 0.1);

        /* Fill a circle with the current fill color defined above */
        p.circle(x, y-=yoffset, r);
        p.fill();

        /* Output a text line with the CMYK fill color defined above */
        p.fit_textline(L"Circle and text filled with {cmyk 0.1 0.7 0.7 0.1}",
                x+xoffset2, y, L"");

        /* Alternatively, you can set the fill color in the call to
         * fit_textline() using the L"fillcolor" option. This case applies the
         * fill color just the single function call. The current fill color
         * won't be affected.
         */
        p.fit_textline(L"4.", x+xoffset1, y,
                                L"fillcolor={cmyk 0.1 0.7 0.7 0.1}");


        /* --------------------------------------------------------------------
         * Use a Lab color
         *
         * Device-independent color in the CIE L*a*b* color space is specified
         * by a luminance value in the range 0-100 and two color values in the
         * range -127 to 128. The first value contains the green-red axis,
         * while the second value contains the blue-yellow axis.
         * --------------------------------------------------------------------
         */

        /* Set the current fill color to a loud blue, represented by
         * (100, -127, -127, 0). Since Lab colors are defined by only three
         * values, the last function parameter must be set to 0.
         */
        p.setcolor(L"fill", L"lab", 100, -127, -127, 0);

        /* Fill a circle with the fill color defined above */
        p.circle(x, y-=yoffset, r);
        p.fill();

        /* Output a text line with the Lab fill color defined above */
        p.fit_textline(L"Circle and text filled with {lab 100 -127 -127}",
                x+xoffset2, y, L"");

        /* Alternatively, you can set the fill color in the call to
         * fit_textline() using the L"fillcolor" option. This case applies the
         * fill color just the single function call. The current fill color
         * won't be affected.
         */
        p.fit_textline(L"5.", x+xoffset1, y, L"fillcolor={lab 100 -127 -127}");


        /* ---------------------------------------------------------------
         * Use an ICC based color
         *
         * ICC-based colors are specified with the help of an ICC profile.
         * ---------------------------------------------------------------
         */

        /* Load the sRGB profile. sRGB is guaranteed to be always available */
        icchandle = p.load_iccprofile(L"sRGB", L"usage=iccbased");

        /* Set the sRGB profile. (Accordingly, you can use
         * L"setcolor:iccprofilergb" or L"setcolor:iccprofilegray" with an
         * appropriate profile)
         */
        p.set_value(L"setcolor:iccprofilergb", icchandle);

        /* Use setcolor() with the L"iccbasedrgb" color space to set the current
         * fill and stroke color to a grass-green, represented
         * by the RGB color values (0.1 0.95 0.3 0) which define 10% Red,
         * 95% Green, and 30% Blue. Since iccbasedrgb colors are defined by only
         * three values, the last function parameter must be set to 0.
         */
        p.setcolor(L"fill", L"iccbasedrgb", 0.1, 0.95, 0.3, 0);

        /* Fill a circle with the ICC based RGB fill color defined above */
        p.circle(x, y-=yoffset, r);
        p.fill();

        /* Output a text line with the ICC based RGB fill color defined above */
        p.fit_textline(
                L"Circle and text filled with {iccbasedrgb 0.1 0.95 0.3}",
                x+xoffset2, y, L"");

        /* Alternatively, you can set the fill color in the call to
         * fit_textline() using the L"fillcolor" option. This case applies the
         * fill color just the single function call. The current fill color
         * won't be affected.
         */
        p.fit_textline(L"6.", x+xoffset1, y,
                L"fillcolor={iccbasedrgb 0.1 0.95 0.3}");


        /* --------------------------------------------------------------------
         * Use a spot color
         *
         * Spot color (separation color space) is a predefined or arbitrarily
         * named custom color with an alternate representation in one of the
         * other color spaces above; this is generally used for preparing
         * documents which are intended to be printed on an offset printing
         * machine with one or more custom colors. The tint value (percentage)
         * ranges from 0 = no color to 1 = maximum intensity of the spot color.
         * --------------------------------------------------------------------
         */

        /* Define the spot color L"PANTONE 281 U" from the builtin color
         * library PANTONE
         */
        spot = p.makespotcolor(L"PANTONE 281 U");

        /* Set the spot color L"PANTONE 281 U" with a tint value of 1 (=100%)
         * and output some text. Since spot colors are defined by only two
         * values, the last two function parameters must be set to 0.
         */
        p.setcolor(L"fill", L"spot", spot, 1.0, 0, 0);

        /* Fill a circle with the ICC based RGB fill color defined above */
        p.circle(x, y-=yoffset, r);
        p.fill();

        p.fit_textline(
                L"Circle and text filled with {spotname {PANTONE 281 U} 1}",
                x+xoffset2, y, L"");

        /* Alternatively, you can set the fill color in the call to
         * fit_textline() using the L"fillcolor" option. This case applies the
         * fill color just the single function call. The current fill color
         * won't be affected.
         */
        p.fit_textline(L"7.", x+xoffset1, y,
            L"fillcolor={spotname {PANTONE 281 U} 1}");

        /* or */
        wostringstream buf;
        buf.str(L"");
        buf << L"fillcolor={spot " << spot << L" 1}";
        p.fit_textline(L"7.", x+xoffset1, y, buf.str());


        /* ----------------------------------------------------------
         * For using the Pattern color space, see the Cookbook topics
         * graphics/fill_pattern and images/background_pattern.
         * ----------------------------------------------------------
         */

        /* ---------------------------------------------------------
         * For using the Shading color space, see the Cookbook topic
         * color/color_gradient.
         * ---------------------------------------------------------
         */

        p.end_page_ext(L"");

        p.end_document(L"");
    }
    catch (PDFlib::Exception &ex) {
        wcerr << L"PDFlib exception occurred:" << endl
              << L"[" << ex.get_errnum() << L"] " << ex.get_apiname()
              << L": " << ex.get_errmsg() << endl;
        return 2;
    }

    return 0;
}