/* Dia -- an diagram creation/manipulation program * Copyright (C) 1998 Alexander Larsson * * This program 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; either version 2 of the License, or * (at your option) any later version. * * This program 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, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ /* The eps_dump_truetype_body function and much inspiration for font dumping * came from ttfps, which bears the following license notice: Copyright (c) 1997 by Juliusz Chroboczek Copying ******* This software is provided with no guarantee, not even of any kind. Feel free to do whatever you wish with it as long as you don't ask me to maintain it. */ /* The Document Structure Definitions used for the output is available at * http://www-cdf.fnal.gov/offline/PostScript/psstruct.ps * (Appendix G of the Red and White Book) */ /* Note: There is a use of setmatrix in ellipse, which is supposed to be * avoided. Could it be? */ /* Note that the EPS renderer now has two phases: One to collect font * info (and conceivably more, like color defs), and one to actually render. */ #include #include #include #include #ifdef HAVE_UNISTD_H #include #endif #include #include #include #include "intl.h" #include "render_eps.h" #include "message.h" #include "diagramdata.h" #include "font.h" #include "diapsrenderer.h" #ifdef HAVE_FREETYPE #include "diapsft2renderer.h" #endif static void export_eps(DiagramData *data, const gchar *filename, const gchar *diafilename, void* user_data); static void export_render_eps(DiaPsRenderer *renderer, DiagramData *data, const gchar *filename, const gchar *diafilename, void* user_data); #ifdef HAVE_FREETYPE static void export_ft2_eps(DiagramData *data, const gchar *filename, const gchar *diafilename, void* user_data); static void export_ft2_eps(DiagramData *data, const gchar *filename, const gchar *diafilename, void* user_data) { export_render_eps(g_object_new (DIA_TYPE_PS_FT2_RENDERER, NULL), data, filename, diafilename, user_data); } #endif static void export_eps(DiagramData *data, const gchar *filename, const gchar *diafilename, void* user_data) { export_render_eps(g_object_new (DIA_TYPE_PS_RENDERER, NULL), data, filename, diafilename, user_data); } static void export_render_eps(DiaPsRenderer *renderer, DiagramData *data, const gchar *filename, const gchar *diafilename, void* user_data) { FILE *outfile; outfile = g_fopen(filename, "w"); if (outfile == NULL) { message_error(_("Can't open output file %s: %s\n"), dia_message_filename(filename), strerror(errno)); g_object_unref(renderer); return; } renderer->file = outfile; renderer->scale = 28.346 * data->paper.scaling; renderer->extent = data->extents; renderer->pstype = (guint)user_data; if (renderer->pstype & PSTYPE_EPSI) { /* Must store the diagram for making a preview */ renderer->diagram = data; } if (renderer->file) { renderer->title = g_strdup (diafilename); data_render(data, DIA_RENDERER(renderer), NULL, NULL, NULL); } g_object_unref (renderer); fclose(outfile); } DiaRenderer * new_psprint_renderer(DiagramData *dia, FILE *file) { DiaPsRenderer *renderer; #ifdef HAVE_FREETYPE renderer = g_object_new (DIA_TYPE_PS_FT2_RENDERER, NULL); #else renderer = g_object_new (DIA_TYPE_PS_RENDERER, NULL); #endif renderer->file = file; renderer->pstype = PSTYPE_PS;; return DIA_RENDERER(renderer); } static const gchar *eps_extensions[] = { "eps", NULL }; #if 0 static const gchar *epsi_extensions[] = { "epsi", NULL }; #endif #ifdef HAVE_FREETYPE DiaExportFilter eps_ft2_export_filter = { N_("Encapsulated Postscript (using Pango fonts)"), eps_extensions, export_ft2_eps, GINT_TO_POINTER(PSTYPE_EPS), /* user_data */ "eps-pango" }; /* Disabled until we can actually make the preview. */ # if 0 DiaExportFilter epsi_ft2_export_filter = { N_("Encapsulated Postscript with preview (using Pango fonts)"), epsi_extensions, export_ft2_eps, GINT_TO_POINTER(PSTYPE_EPSI), /* user_data */ "epsi-pango" }; # endif #endif DiaExportFilter eps_export_filter = { N_("Encapsulated Postscript (using PostScript Latin-1 fonts)"), eps_extensions, export_eps, GINT_TO_POINTER(PSTYPE_EPS), /* user_data */ "eps-builtin" }; /* Commented out until we can actually make the preview. DiaExportFilter epsi_export_filter = { N_("Encapsulated Postscript with preview (using PostScript Latin-1 fonts)"), epsi_extensions, export_eps, PSTYPE_EPSI, "epsi-builtin" }; */