From 7e9866358d46080aa5c4adeb830fbad43896724d Mon Sep 17 00:00:00 2001 From: bulia byak Date: Sat, 7 Nov 2009 23:59:36 +0000 Subject: revert the PS rotation part of Adrian's patch for 437550, see discussion in the bug (bzr r8820) --- src/extension/internal/cairo-render-context.cpp | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) (limited to 'src/extension/internal/cairo-render-context.cpp') diff --git a/src/extension/internal/cairo-render-context.cpp b/src/extension/internal/cairo-render-context.cpp index cae496543..1594ced7d 100644 --- a/src/extension/internal/cairo-render-context.cpp +++ b/src/extension/internal/cairo-render-context.cpp @@ -768,15 +768,7 @@ CairoRenderContext::setupSurface(double width, double height) #endif #ifdef CAIRO_HAS_PS_SURFACE case CAIRO_SURFACE_TYPE_PS: - if (!_eps && width > height) { - surface = cairo_ps_surface_create_for_stream(Inkscape::Extension::Internal::_write_callback, _stream, height, width); - cairo_matrix_init (&ctm, 0, -1, 1, 0, 0, 0); - cairo_matrix_translate (&ctm, -width, 0); - cairo_ps_surface_dsc_begin_page_setup (surface); - cairo_ps_surface_dsc_comment (surface, "%%PageOrientation: Landscape"); - } else { - surface = cairo_ps_surface_create_for_stream(Inkscape::Extension::Internal::_write_callback, _stream, width, height); - } + surface = cairo_ps_surface_create_for_stream(Inkscape::Extension::Internal::_write_callback, _stream, width, height); if(CAIRO_STATUS_SUCCESS != cairo_surface_status(surface)) { return FALSE; } -- cgit v1.2.3