emf-print.cpp revision 089478b5b462b98a7ecb34496c6f15eb315b9a18
/** @file
* @brief Enhanced Metafile printing
*/
/* Authors:
* Ulf Erikson <ulferikson@users.sf.net>
* Jon A. Cruz <jon@joncruz.org>
* Abhishek Sharma
* David Mathog
*
* Copyright (C) 2006-2009 Authors
*
* Released under GNU GPL, read the file 'COPYING' for more information
*/
/*
* References:
* - How to Create & Play Enhanced Metafiles in Win32
* - INFO: Windows Metafile Functions & Aldus Placeable Metafiles
* - Metafile Functions
* - Metafile Structures
*/
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include "2geom/sbasis-to-bezier.h"
#include "2geom/svg-elliptical-arc.h"
#include "2geom/pathvector.h"
#include "2geom/bezier-curve.h"
#include "2geom/hvlinesegment.h"
#include "helper/geom-curves.h"
#include "sp-item.h"
#include "style.h"
#include "inkscape-version.h"
#include "sp-root.h"
#include "unit-constants.h"
#include "document.h"
#include "path-prefix.h"
#include "sp-pattern.h"
#include "sp-image.h"
#include "sp-gradient.h"
#include "sp-radial-gradient.h"
#include "sp-linear-gradient.h"
#include "splivarot.h" // pieces for union on shapes
#include "2geom/svg-path-parser.h" // to get from SVG text to Geom::Path
#include "display/canvas-bpath.h" // for SPWindRule
#include "emf-print.h"
#include <string.h>
extern "C" {
#include "libunicode-convert/unicode-convert.h"
}
namespace Inkscape {
namespace Extension {
namespace Internal {
#define PXPERMETER 2835
struct FFNEXUS {
char *fontname; //Font name
double f1; //Vertical (rotating) offset factor (* font height)
double f2; //Vertical (nonrotating) offset factor (* font height)
double f3; //Horizontal (nonrotating) offset factor (* font height)
};
struct GRADVALUES{
double r; // radius or unused
void *grad; // to access the stops information
int mode; // DRAW_LINEAR_GRADIENT or DRAW_RADIAL_GRADIENT, if GRADVALUES is valid, else any value
};
/* globals */
static double PX2WORLD = 20.0f;
static U_XFORM worldTransform;
static FFNEXUS *emf_short_fflist = NULL; //only those fonts so far encountered. This is SHARED with wmf-print.cpp
static FFNEXUS *emf_long_fflist = NULL; //all the fonts described in ...\share\extensions\fontfix.conf
static GRADVALUES gv;
char fontname[128];
if(emf_long_fflist)return;
#ifdef WIN32
#else
#endif
//open the input
}
if(instr[0]=='#')continue;
// not a comment, get the 4 values from the line
if(elements!=4){
g_error("Expected \"f1 f2 f3 Fontname\" but did not find it in file: %s\n", path_to_ffconf.c_str());
}
if(ptr){
}
else {
}
}
}
/* Looks for the fontname in the long list. If it does not find it, it adds the default values
to the short list with this fontname. If it does find it, then it adds the specified values.
*/
void PrintEmf::search_long_fflist(const char *fontname, double *f1, double *f2, double *f3){ //this is not called by any other source files
if(!emf_long_fflist){
g_error("Programming error search_long_fflist called before read_system_fflist\n");
}
while(ptr){
}
//tmp points at either the found name, or the default, the first entry in long_fflist
if(!emf_short_fflist){
}
else {
}
}
/* Looks for the fontname in the short list. If it does not find it, it looks in the long_fflist.
Either way it returns the f1, f2, f3 parameters for the font, even if these are for the default.
*/
void PrintEmf::search_short_fflist(const char *fontname, double *f1, double *f2, double *f3){ //this is not called by any other source files
if(!emf_long_fflist){
g_error("Programming error search_short_fflist called before read_system_fflist\n");
}
// This speeds things up a lot - if the same font is called twice in a row, pull it out immediately
while(ptr){
}
//reach this point only if there is no match
}
void PrintEmf::smuggle_adxky_out(const char *string, uint32_t **adx, double *ky, int *ndx, float scale){
float fdx;
int i;
if(!*ndx)return; // this could happen with an empty string
cptr += 7;
}
cptr++; // skip 2nd fake terminator
}
/* convert an 0RGB color to EMF U_COLORREF.
inverse of sethexcolor() in emf-inout.cpp
*/
(color >> 0) & 0xFF
);
return(out);
}
/* Translate inkscape weights to EMF weights.
*/
// 400 is tested first, as it is the most common case
return(U_FW_NORMAL);
}
{
// all of the class variables are initialized elsewhere, many in PrintEmf::Begin,
}
{
/* restore default signal handling for SIGPIPE */
#endif
return;
}
{
return TRUE;
}
{
char *rec;
// width and height in px
// initialize a few global variables
if(nv){
char *p2;
}
bool pageBoundingBox;
if (pageBoundingBox) {
} else {
}
// dwInchesX x dwInchesY in micrometer units, dpi=90 -> 3543.3 dpm
(void) drawing_size((int) ceil(dwInchesX*25.4), (int) ceil(dwInchesY*25.4), 3.543307, &rclBounds, &rclFrame);
// set up the reference device as 100 X A4 horizontal, (1200 dpi/25.4 -> dpmm). Extra digits maintain dpi better in EMF
int MMX = 21600;
int MMY = 27900;
// set up the description: (version string)0(file)00
char buff[1024];
if (p)
p++;
else
p = ansi_uri;
// construct the EMRHEADER record and append it to the EMF in memory
g_error("Fatal programming error in PrintEmf::begin at EMRHEADER");
}
// Simplest mapping mode, supply all coordinates in pixels
g_error("Fatal programming error in PrintEmf::begin at EMRSETMAPMODE");
}
// Correct for dpi in EMF (1200) vs dpi in Inkscape (always 90).
// Also correct for the scaling in PX2WORLD, which is set to 20.
worldTransform.eDx = 0;
worldTransform.eDy = 0;
g_error("Fatal programming error in PrintEmf::begin at EMRMODIFYWORLDTRANSFORM");
}
if (1) {
g_error("Fatal programming error in PrintEmf::begin at textcomment_set 1");
}
snprintf(buff, sizeof(buff)-1, "Drawing=%.1lfx%.1lfpx, %.1lfx%.1lfmm", _width, _height, dwInchesX * MM_PER_IN, dwInchesY * MM_PER_IN);
g_error("Fatal programming error in PrintEmf::begin at textcomment_set 1");
}
}
/* set some parameters, else the program that reads the EMF may default to other values */
g_error("Fatal programming error in PrintEmf::text at U_EMRSETBKMODE_set");
}
g_error("Fatal programming error in PrintEmf::text at U_EMRSETPOLYFILLMODE_set");
}
// Text alignment: (Never changes)
// - (x,y) coordinates received by this filter are those of the point where the text
// actually starts, and already takes into account the text object's alignment;
// - for this reason, the EMF text alignment must always be TA_BASELINE|TA_LEFT.
g_error("Fatal programming error in PrintEmf::text at U_EMRSETTEXTALIGN_set");
}
g_error("Fatal programming error in PrintEmf::text at U_EMRSETTEXTCOLOR_set");
}
g_error("Fatal programming error in PrintEmf::text at U_EMRSETROP2_set");
}
/* miterlimit is set with eah pen, so no need to check for it changes as in WMF */
return 0;
}
{
char *rec;
if (!et) return 0;
// earlier versions had flush of fill here, but it never executed and was removed
g_error("Fatal programming error in PrintEmf::finish");
}
return 0;
}
const char * /*comment*/)
{
if (!et) return 0;
// earlier versions had flush of fill here, but it never executed and was removed
return 0;
}
// Extract hatchType, hatchColor from a name like
// EMFhatch<hatchType>_<hatchColor>
// Where the first one is a number and the second a color in hex.
// hatchType and hatchColor have been set with defaults before this is called.
//
void PrintEmf::hatch_classify(char *name, int *hatchType, U_COLORREF *hatchColor, U_COLORREF *bkColor){
int val;
// name should be EMFhatch or WMFhatch but *MFhatch will be accepted
val = 0;
name++;
}
*hatchType = -1;
}
else {
name++;
}
else {
usebk = true;
}
}
/* Everything > U_HS_SOLIDCLR is solid, just specify the color in the brush rather than messing around with background or textcolor */
}
//
// Recurse down from a brush pattern, try to figure out what it is.
// If an image is found set a pointer to the epixbuf, else set that to NULL
// If a pattern is found with a name like [EW]MFhatch3_3F7FFF return hatchType=3, hatchColor=3F7FFF (as a uint32_t),
// otherwise hatchType is set to -1 and hatchColor is not defined.
//
void PrintEmf::brush_classify(SPObject *parent, int depth, GdkPixbuf **epixbuf, int *hatchType, U_COLORREF *hatchColor, U_COLORREF *bkColor){
if(depth==0){
*hatchType = -1;
*hatchColor = U_RGB(0,0,0);
}
depth++;
// first look along the pattern chain, if there is one
if(SP_IS_PATTERN(parent)){
for (SPPattern *pat_i = SP_PATTERN(parent); pat_i != NULL; pat_i = pat_i->ref ? pat_i->ref->getObject() : NULL) {
if(SP_IS_IMAGE(pat_i)){
return;
}
if(*hatchType != -1)return;
// still looking? Look at this pattern's children, if there are any
}
}
}
else if(SP_IS_IMAGE(parent)){
return;
}
else { // some inkscape rearrangements pass through nodes between pattern and image which are not classified as either.
}
}
}
//swap R/B in 4 byte pixel
char tmp;
}
}
/* opacity weighting of two colors as float. v1 is the color, op is its opacity, v2 is the background color */
}
if(last>=1){
float rgbs[3];
float rgbe[3];
/* Replace opacity at start & stop with that fraction background color, then average those two for final color. */
);
}
else {
}
return cr;
}
if(mode==DRAW_RADIAL_GRADIENT){
if (rg->gradientTransform_set) {
}
}
else if(mode==DRAW_LINEAR_GRADIENT){
gv.r = 0; // unused
if (lg->gradientTransform_set) {
}
}
else {
g_error("Fatal programming error, hold_gradient() in emf-print.cpp called with invalid draw mode");
}
return 1;
}
// fcolor is defined when gradients are being expanded, it is the color of one stripe or ring.
{
float rgb[3];
char *rec;
int hatchType;
if (!et) return 0;
// set a default fill in case we can't figure out a better way to do it
fmode = U_ALTERNATE;
else { hatchColor = U_RGB(0, 0, 0); }
fmode = style->fill_rule.computed == 0 ? U_WINDING : (style->fill_rule.computed == 2 ? U_ALTERNATE : U_ALTERNATE);
}
else { // pattern
}
}
if(FixPPTPatternAsHatch){
}
}
}
// currently we do not do anything with gradients, the code below just sets the color to the average of the stops
if (SP_IS_LINEARGRADIENT (paintserver)) {
}
else if (SP_IS_RADIALGRADIENT (paintserver)) {
}
else {
// default fill
}
if(rg){
}
else if(lg){
}
}
}
else { // if (!style)
// default fill
}
switch(fill_mode){
case DRAW_LINEAR_GRADIENT: // fill with average color unless gradients are converted to slices
case DRAW_RADIAL_GRADIENT: // ditto
case DRAW_PAINT:
case DRAW_PATTERN:
// SVG text has no background attribute, so OPAQUE mode ALWAYS cancels after the next draw, otherwise it would mess up future text output.
if(usebk){
g_error("Fatal programming error in PrintEmf::create_brush at U_EMRSETBKCOLOR_set");
}
g_error("Fatal programming error in PrintEmf::create_brush at U_EMRSETBKMODE_set");
}
}
g_error("Fatal programming error in PrintEmf::create_brush at createbrushindirect_set");
}
break;
case DRAW_IMAGE:
char *px;
char *rgba_px;
int numCt;
// Not sure why the next swap is needed because the preceding does it, and the code is identical
// to that in stretchdibits_set, which does not need this.
Bmih = bitmapinfoheader_set(width, height, 1, colortype, U_BI_RGB, 0, PXPERMETER, PXPERMETER, numCt, 0);
g_error("Fatal programming error in PrintEmf::create_brush at createdibpatternbrushpt_set");
}
break;
}
g_error("Fatal programming error in PrintEmf::create_brush at selectobject_set");
}
if(fmode != hpolyfillmode){
g_error("Fatal programming error in PrintEmf::create_brush at U_EMRSETPOLYdrawmode_set");
}
}
return 0;
}
void PrintEmf::destroy_brush()
{
char *rec;
// before an object may be safely deleted it must no longer be selected
// select in a stock object to deselect this one, the stock object should
// never be used because we always select in a new one before drawing anythingrestore previous brush, necessary??? Would using a default stock object not work?
g_error("Fatal programming error in PrintEmf::destroy_brush at selectobject_set");
}
if (hbrush){
g_error("Fatal programming error in PrintEmf::destroy_brush");
}
hbrush = 0;
}
}
{
U_NUM_STYLEENTRY n_dash = 0;
int linestyle = U_PS_SOLID;
int linecap = 0;
int linejoin = 0;
int hatchType;
char *rgba_px;
int numCt=0;
if (!et) return 0;
// set a default stroke in case we can't figure out a better way to do it
hatchColor = U_RGB(0, 0, 0);
if (style) {
float rgb[3];
if(pixbuf){
// Not sure why the next swap is needed because the preceding does it, and the code is identical
// to that in stretchdibits_set, which does not need this.
Bmih = bitmapinfoheader_set(width, height, 1, colortype, U_BI_RGB, 0, PXPERMETER, PXPERMETER, numCt, 0);
}
else { // pattern
if(usebk){ // OPAQUE mode ALWAYS cancels after the next draw, otherwise it would mess up future text output.
g_error("Fatal programming error in PrintEmf::create_pen at U_EMRSETBKCOLOR_set");
}
g_error("Fatal programming error in PrintEmf::create_pen at U_EMRSETBKMODE_set");
}
}
}
}
if(FixPPTPatternAsHatch){
}
}
}
// currently we do not do anything with gradients, the code below has no net effect.
if (SP_IS_LINEARGRADIENT (paintserver)) {
if (lg->gradientTransform_set) {
}
}
else if (SP_IS_RADIALGRADIENT (paintserver)) {
yhandle_point += c;
xhandle_point += c;
if (rg->gradientTransform_set) {
c = c * rg->gradientTransform;
}
}
else {
// default fill
}
}
}
else {
// default fill
}
using Geom::X;
using Geom::Y;
if(!style->stroke_width.computed){return 0;} //if width is 0 do not (reset) the pen, it should already be NULL_PEN
{
if(FixPPTDashLine){ // will break up line into many smaller lines. Override gradient if that was set, cannot do both.
}
else {
int i = 0;
i++;
}
if (linestyle == U_PS_USERSTYLE) {
}
}
}
}
elp = extlogpen_set(
dash);
}
else { // if (!style)
linejoin=0;
elp = extlogpen_set(
1,
U_RGB(0,0,0),
0,
NULL);
}
g_error("Fatal programming error in PrintEmf::create_pen at extcreatepen_set");
}
g_error("Fatal programming error in PrintEmf::create_pen at selectobject_set");
}
if (linejoin == U_PS_JOIN_MITER) {
g_error("Fatal programming error in PrintEmf::create_pen at U_EMRSETMITERLIMIT_set");
}
}
return 0;
}
// set the current pen to the stock object NULL_PEN and then delete the defined pen object, if there is one.
void PrintEmf::destroy_pen()
{
// before an object may be safely deleted it must no longer be selected
// select in a stock object to deselect this one, the stock object should
// never be used because we always select in a new one before drawing anythingrestore previous brush, necessary??? Would using a default stock object not work?
g_error("Fatal programming error in PrintEmf::destroy_pen at selectobject_set");
}
if (hpen){
g_error("Fatal programming error in PrintEmf::destroy_pen");
}
hpen = 0;
}
}
unsigned int PrintEmf::bind(Inkscape::Extension::Print * /*mod*/, Geom::Affine const &transform, float /*opacity*/)
{
if (!m_tr_stack.empty()) {
} else {
}
return 1;
}
{
m_tr_stack.pop();
return 1;
}
#define clrweight(a,b,t) ((1-t)*((double) a) + (t)*((double) b))
);
return result;
}
// return the color between c1 and c2, c1 for t=0, c2 for t=1.0
// now handle the opacity, mix the RGB with background at the weighted opacity
return result;
}
/* convert from center ellipse to SVGEllipticalArc ellipse
From:
http://www.w3.org/TR/SVG/implnote.html#ArcConversionEndpointToCenter
A point (x,y) on the arc can be found by:
{x,y} = {cx,cy} + {cosF,-sinF,sinF,cosF} x {rxcosT,rysinT}
where
{cx,cy} is the center of the ellipse
F is the rotation angle of the X axis of the ellipse from the true X axis
T is the rotation angle around the ellipse
{,,,} is the rotation matrix
rx,ry are the radii of the ellipse's axes
For SVG parameterization need two points.
Arbitrarily we can use T=0 and T=pi
Since the sweep is 180 the flags are always 0:
F is in RADIANS, but the SVGEllipticalArc needs degrees!
*/
Geom::PathVector PrintEmf::center_ellipse_as_SVG_PathV(Geom::Point ctr, double rx, double ry, double F){
using Geom::X;
using Geom::Y;
char text[256];
sprintf(text," M %f,%f A %f %f %f 0 0 %f %f A %f %f %f 0 0 %f %f z",x1,y1, rx,ry,F*360./(2.*M_PI),x2,y2, rx,ry,F*360./(2.*M_PI),x1,y1);
return outres;
}
/* rx2,ry2 must be larger than rx1,ry1!
angle is in RADIANS
*/
Geom::PathVector PrintEmf::center_elliptical_ring_as_SVG_PathV(Geom::Point ctr, double rx1, double ry1, double rx2, double ry2, double F){
using Geom::X;
using Geom::Y;
char text[512];
sprintf(text," M %f,%f A %f %f %f 0 1 %f %f A %f %f %f 0 1 %f %f z M %f,%f A %f %f %f 0 0 %f %f A %f %f %f 0 0 %f %f z",
return outres;
}
/* Elliptical hole in a large square extending from -50k to +50k */
Geom::PathVector PrintEmf::center_elliptical_hole_as_SVG_PathV(Geom::Point ctr, double rx, double ry, double F){
using Geom::X;
using Geom::Y;
char text[256];
sprintf(text," M %f,%f A %f %f %f 0 0 %f %f A %f %f %f 0 0 %f %f z M 50000,50000 50000,-50000 -50000,-50000 -50000,50000 z",
return outres;
}
/* rectangular cutter.
ctr "center" of rectangle (might not actually be in the center with respect to leading/trailing edges
pos vector from center to leading edge
neg vector from center to trailing edge
width vector to side edge
*/
Geom::PathVector PrintEmf::rect_cutter(Geom::Point ctr, Geom::Point pos, Geom::Point neg, Geom::Point width){
return outres;
}
/* Convert from SPWindRule to livarot's FillRule
This is similar to what sp_selected_path_boolop() does
*/
else { fr = fill_nonZero; }
return fr;
}
{
using Geom::X;
using Geom::Y;
use_fill = true;
use_stroke = false;
fill_transform = tf;
/*
Handle gradients. Uses modified livarot as 2geom boolops is currently broken.
Can handle gradients with multiple stops.
The overlap is needed to avoid antialiasing artifacts when edges are not strictly aligned on pixel boundaries.
There is an inevitable loss of accuracy saving through an EMF file because of the integer coordinate system.
Keep the overlap quite large so that loss of accuracy does not remove an overlap.
*/
destroy_pen(); //this sets the NULL_PEN, otherwise gradient slices may display with boundaries, see longer explanation below
float rgb[3];
double divisions= 128.0;
int nstops;
int istop = 1;
float opa; // opacity at stop
doff = 0.0;
doff_base = 0.0;
double start;
double stop;
/* radial gradient might stop part way through the shape, fill with outer color from there to "infinity".
Do this first so that outer colored ring will overlay it.
*/
pathvc = center_elliptical_hole_as_SVG_PathV(gv.p1, rx*(1.0 - overlap/range), ry*(1.0 - overlap/range), asin(xuv[Y]));
pathvc = center_elliptical_ring_as_SVG_PathV(gv.p1, rx*start/range, ry*start/range, rx*stop/range, ry*stop/range, asin(xuv[Y]));
istop++;
}
}
}
double start;
double stop;
/* before lower end of gradient, overlap first slice position */
/* after high end of gradient, overlap last slice poosition */
Geom::PathVector pathvr = sp_pathvector_boolop(pathvc, pathv, bool_op_inters, (FillRule) fill_nonZero, frb);
istop++;
}
}
}
else {
g_error("Fatal programming error in PrintEmf::fill, invalid gradient type detected");
}
use_fill = false; // gradients handled, be sure stroke does not use stroke and fill
}
else {
/*
Inkscape was not calling create_pen for objects with no border.
This was because it never called stroke() (next method).
PPT, and presumably others, pick whatever they want for the border if it is not specified, so no border can
become a visible border.
To avoid this force the pen to NULL_PEN if we can determine that no pen will be needed after the fill.
*/
destroy_pen(); //this sets the NULL_PEN
}
/* postpone fill in case stroke also required AND all stroke paths closed
Dashes converted to line segments will "open" a closed path.
*/
bool all_closed = true;
}
}
if (
){
use_fill = false;
}
}
return 0;
}
{
use_stroke = true;
// use_fill was set in ::fill, if it is needed
// convert the path, gets its complete length, and then make a new path with parameter length instead of t
Geom::Piecewise<Geom::D2<Geom::SBasis> > tmp_pathpw3; // new (discontinuous) path, composed of dots/dashes
int i=0; //dash index
double tlength; // length of tmp_pathpw
double elength; // end of gragment
}
// go around the dash array repeatedly until the entire path is consumed (but not beyond).
else { first_frag = fragment; }
if(i>=n_dash)i=0;
}
}
else {
}
use_stroke = false;
use_fill = false;
if(usebk){ // OPAQUE was set, revert to TRANSPARENT
usebk = false;
g_error("Fatal programming error in PrintEmf::stroke at U_EMRSETBKMODE_set");
}
}
return 0;
}
// Draws simple_shapes, those with closed EMR_* primitives, like polygons, rectangles and ellipses.
// These use whatever the current pen/brush are and need not be followed by a FILLPATH or STROKEPATH.
// For other paths it sets a few flags and returns.
{
int nodes = 0;
int moves = 0;
int lines = 0;
int curves = 0;
{
moves++;
nodes++;
{
nodes++;
}
}
if (!nodes)
return false;
int i = 0;
/**
* For all Subpaths in the <path>
*/
{
using Geom::X;
using Geom::Y;
i = i + 1;
/**
* For all segments in the subpath
*/
{
if ( is_straight_curve(*cit) )
{
//Geom::Point p0 = cit->initialPoint();
//p0[X] = (p0[X] * PX2WORLD);
//p0[Y] = (p0[Y] * PX2WORLD);
//int32_t const x0 = (int32_t) round(p0[X]);
//int32_t const y0 = (int32_t) round(p0[Y]);
i = i + 1;
}
{
//Geom::Point p0 = points[0];
//p0[X] = (p0[X] * PX2WORLD);
//p0[Y] = (p0[Y] * PX2WORLD);
//int32_t const x0 = (int32_t) round(p0[X]);
//int32_t const y0 = (int32_t) round(p0[Y]);
i = i + 3;
}
}
}
bool done = false;
bool polygon = false;
bool rectangle = false;
bool ellipse = false;
polygon = true;
// if (nodes==5) { // disable due to LP Bug 407394
// if (lpPoints[0].x == lpPoints[3].x && lpPoints[1].x == lpPoints[2].x &&
// lpPoints[0].y == lpPoints[1].y && lpPoints[2].y == lpPoints[3].y)
// {
// rectangle = true;
// }
// }
}
// if (lpPoints[0].x == lpPoints[1].x && lpPoints[1].x == lpPoints[11].x &&
// lpPoints[5].x == lpPoints[6].x && lpPoints[6].x == lpPoints[7].x &&
// lpPoints[2].x == lpPoints[10].x && lpPoints[3].x == lpPoints[9].x && lpPoints[4].x == lpPoints[8].x &&
// lpPoints[2].y == lpPoints[3].y && lpPoints[3].y == lpPoints[4].y &&
// lpPoints[8].y == lpPoints[9].y && lpPoints[9].y == lpPoints[10].y &&
// lpPoints[5].y == lpPoints[1].y && lpPoints[6].y == lpPoints[0].y && lpPoints[7].y == lpPoints[11].y)
// { // disable due to LP Bug 407394
// ellipse = true;
// }
}
g_error("Fatal programming error in PrintEmf::print_simple_shape at selectobject_set pen");
}
}
g_error("Fatal programming error in PrintEmf::print_simple_shape at selectobject_set brush");
}
}
if (polygon) {
if (rectangle){
U_RECTL rcl = rectl_set((U_POINTL) {lpPoints[0].x, lpPoints[0].y}, (U_POINTL) {lpPoints[2].x, lpPoints[2].y});
}
else {
}
}
else if (ellipse) {
U_RECTL rcl = rectl_set((U_POINTL) {lpPoints[6].x, lpPoints[3].y}, (U_POINTL) {lpPoints[0].x, lpPoints[9].y});
}
}
done = true;
// replace the handle we moved above, assuming there was something set already
g_error("Fatal programming error in PrintEmf::print_simple_shape at selectobject_set pen");
}
}
g_error("Fatal programming error in PrintEmf::print_simple_shape at selectobject_set brush");
}
}
}
delete[] lpPoints;
return done;
}
/** Some parts based on win32.cpp by Lauris Kaplinski <lauris@kaplinski.com>. Was a part of Inkscape
in the past (or will be in the future?) Not in current trunk. (4/19/2012)
Limitations of this code:
1. Transparency is lost on export. (Apparently a limitation of the EMF format.)
2. Probably messes up if row stride != w*4
3. There is still a small memory leak somewhere, possibly in a pixbuf created in a routine
that calls this one and passes px, but never removes the rest of the pixbuf. The first time
this is called it leaked 5M (in one test) and each subsequent call leaked around 200K more.
If this routine is reduced to
if(1)return(0);
and called for a single 1280 x 1024 image then the program leaks 11M per call, or roughly the
size of two bitmaps.
*/
unsigned char *rgba_px, /** array of pixel values, Gdk::Pixbuf bitmap format */
unsigned int w, /** width of bitmap */
unsigned int h, /** height of bitmap */
unsigned int rs, /** row stride (normally w*4) */
{
g_error("Fatal programming error in PrintEmf::image at EMRHEADER");
}
char *px;
int numCt;
if(!FixImageRot){ /* Rotate images - some programs cannot read them in correctly if they are rotated */
tmpTransform.eDx = (pLL2[Geom::X] - pLL2prime[Geom::X]) * PX2WORLD; //map pLL2 (now in EMF coordinates) back onto itself after the rotation
g_error("Fatal programming error in PrintEmf::image at U_EMRSAVEDC_set");
}
g_error("Fatal programming error in PrintEmf::image at EMRMODIFYWORLDTRANSFORM");
}
}
U_RCL_DEF, //! Bounding rectangle in device units
Dest, //! Destination UL corner in logical units
cDest, //! Destination W & H in logical units
Src, //! Source UL corner in logical units
cSrc, //! Source W & H in logical units
U_DIB_RGB_COLORS, //! DIBColors Enumeration
U_SRCCOPY, //! RasterOPeration Enumeration
Bmi, //! (Optional) bitmapbuffer (U_BITMAPINFO section)
h*rs, //! size in bytes of px
px //! (Optional) bitmapbuffer (U_BITMAPINFO section)
);
g_error("Fatal programming error in PrintEmf::image at U_EMRSTRETCHDIBITS_set");
}
if(!FixImageRot){
g_error("Fatal programming error in PrintEmf::image at U_EMRRESTOREDC_set");
}
}
return 0;
}
// may also be called with a simple_shape or an empty path, whereupon it just returns without doing anything
{
if (use_fill){ destroy_brush(); } // these must be cleared even if nothing is drawn or hbrush,hpen fill up
if (use_stroke){ destroy_pen(); }
return TRUE;
}
/* inkscape to EMF scaling is done below, but NOT the rotation/translation transform,
that is handled by the EMF MODIFYWORLDTRANSFORM record
*/
rec = U_EMRBEGINPATH_set();
g_error("Fatal programming error in PrintEmf::print_pathv at U_EMRBEGINPATH_set");
}
/**
* For all Subpaths in the <path>
*/
{
using Geom::X;
using Geom::Y;
g_error("Fatal programming error in PrintEmf::print_pathv at U_EMRMOVETOEX_set");
}
/**
* For all segments in the subpath
*/
{
if ( is_straight_curve(*cit) )
{
//Geom::Point p0 = cit->initialPoint();
//p0[X] = (p0[X] * PX2WORLD);
//p0[Y] = (p0[Y] * PX2WORLD);
//int32_t const x0 = (int32_t) round(p0[X]);
//int32_t const y0 = (int32_t) round(p0[Y]);
g_error("Fatal programming error in PrintEmf::print_pathv at U_EMRLINETO_set");
}
}
{
//Geom::Point p0 = points[0];
//p0[X] = (p0[X] * PX2WORLD);
//p0[Y] = (p0[Y] * PX2WORLD);
//int32_t const x0 = (int32_t) round(p0[X]);
//int32_t const y0 = (int32_t) round(p0[Y]);
g_error("Fatal programming error in PrintEmf::print_pathv at U_EMRPOLYBEZIERTO_set");
}
}
else
{
g_warning("logical error, because pathv_to_linear_and_cubic_beziers was used");
}
}
rec = U_EMRCLOSEFIGURE_set();
g_error("Fatal programming error in PrintEmf::print_pathv at U_EMRCLOSEFIGURE_set");
}
}
}
g_error("Fatal programming error in PrintEmf::print_pathv at U_EMRENDPATH_set");
}
if (use_fill && !use_stroke){
g_error("Fatal programming error in PrintEmf::fill at U_EMRFILLPATH_set");
}
}
else if (use_fill && use_stroke) {
g_error("Fatal programming error in PrintEmf::stroke at U_EMRSTROKEANDFILLPATH_set");
}
}
else if (!use_fill && use_stroke){
g_error("Fatal programming error in PrintEmf::stroke at U_EMRSTROKEPATH_set");
}
}
// clean out brush and pen, but only after all parts of the draw complete
if (use_fill){
}
if (use_stroke){
destroy_pen();
}
return TRUE;
}
{
}
unsigned int PrintEmf::text(Inkscape::Extension::Print * /*mod*/, char const *text, Geom::Point const &p,
{
if (!et) return 0;
int fix90n=0;
double rotb = -std::atan2(tf[1], tf[0]); // rotation for baseline offset for superscript/subscript, used below
double ky;
// the dx array is smuggled in like: text<nul>w1 w2 w3 ...wn<nul><nul>, where the widths are floats 7 characters wide, including the space
int ndx;
smuggle_adxky_out(text, &adx, &ky, &ndx, PX2WORLD * std::min(tf.expansionX(),tf.expansionY())); // side effect: free() adx
char *text2 = strdup(text); // because U_Utf8ToUtf16le calls iconv which does not like a const char *
//translates Unicode to NonUnicode, if possible. If any translate, all will, and all to
//the same font, because of code in Layout::print
//PPT gets funky with text within +-1 degree of a multiple of 90, but only for SOME fonts.Snap those to the central value
//Some funky ones: Arial, Times New Roman
//Some not funky ones: Symbol and Verdana.
//Without a huge table we cannot catch them all, so just the most common problem ones.
if(FixPPTCharPos){
switch(newfont){
case CVTSYM:
break;
case CVTZDG:
break;
case CVTWDG:
break;
default: //also CVTNON
break;
}
}
}
}
/* Note that text font sizes are stored into the EMF as fairly small integers and that limits their precision.
The EMF output files produced here have been designed so that the integer valued pt sizes
land right on an integer value in the EMF file, so those are exact. However, something like 18.1 pt will be
somewhat off, so that when it is read back in it becomes 18.11 pt. (For instance.)
*/
int textheight = round(-style->font_size.computed * PX2WORLD * std::min(tf.expansionX(),tf.expansionY()));
if (!hfont) {
// Get font face name. Use changed font name if unicode mapped to one
// of the special fonts.
// Scale the text to the minimum stretch. (It tends to stay within bounding rectangles even if
// it was streteched asymmetrically.) Few applications support text from EMF which is scaled
0,
g_error("Fatal programming error in PrintEmf::text at extcreatefontindirectw_set");
}
}
g_error("Fatal programming error in PrintEmf::text at selectobject_set");
}
float rgb[3];
// only change the text color when it needs to be changed
g_error("Fatal programming error in PrintEmf::text at U_EMRSETTEXTCOLOR_set");
}
}
//Handle super/subscripts and vertical kerning
/* Previously used this, but vertical kerning was not supported
p2[Geom::X] -= style->baseline_shift.computed * std::sin( rotb );
p2[Geom::Y] -= style->baseline_shift.computed * std::cos( rotb );
*/
//Conditionally handle compensation for PPT EMF import bug (affects PPT 2003-2010, at least)
if(FixPPTCharPos){
dx= 0.0;
}
dy= 0.0;
}
else {
}
}
// The number of characters in the string is a bit fuzzy. ndx, the number of entries in adx is
// the number of VISIBLE characters, since some may combine from the UTF (8 originally,
// now 16) encoding. Conversely strlen() or wchar16len() would give the absolute number of
// encoding characters. Unclear if emrtext wants the former or the latter but for now assume the former.
// This is currently being smuggled in from caller as part of text, works
// MUCH better than the fallback hack below
// uint32_t *adx = dx_set(textheight, U_FW_NORMAL, slen); // dx is needed, this makes one up
char *rec2 = emrtext_set( (U_POINTL) {xpos, ypos}, ndx, 2, unicode_text, U_ETO_NONE, U_RCL_DEF, adx);
g_error("Fatal programming error in PrintEmf::text at U_EMREXTTEXTOUTW_set");
}
// Must deselect an object before deleting it. Put the default font (back) in.
g_error("Fatal programming error in PrintEmf::text at selectobject_set");
}
if(hfont){
g_error("Fatal programming error in PrintEmf::text at deleteobject_set");
}
}
return 0;
}
{
/* EMF print */
"<name>Enhanced Metafile Print</name>\n"
"<id>org.inkscape.print.emf</id>\n"
"<param name=\"destination\" type=\"string\"></param>\n"
"<param name=\"textToPath\" type=\"boolean\">true</param>\n"
"<param name=\"pageBoundingBox\" type=\"boolean\">true</param>\n"
"<param name=\"FixPPTCharPos\" type=\"boolean\">false</param>\n"
"<param name=\"FixPPTDashLine\" type=\"boolean\">false</param>\n"
"<param name=\"FixPPTGrad2Polys\" type=\"boolean\">false</param>\n"
"<param name=\"FixPPTPatternAsHatch\" type=\"boolean\">false</param>\n"
"<param name=\"FixImageRot\" type=\"boolean\">false</param>\n"
"<print/>\n"
"</inkscape-extension>", new PrintEmf());
return;
}
} /* namespace Internal */
} /* namespace Extension */
} /* namespace Inkscape */
/*
Local Variables:
mode:c++
c-file-style:"stroustrup"
c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
indent-tabs-mode:nil
fill-column:99
End:
*/
// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:fileencoding=utf-8:textwidth=99 :