Searched refs:resolution (Results 1 - 8 of 8) sorted by relevance
/inkscape/src/display/ |
H A D | nr-filter.cpp | 87 // Filter resolution, negative value here stands for "automatic" 125 std::pair<double,double> resolution local 127 if (!(resolution.first > 0 && resolution.second > 0)) { 128 // zero resolution - clear source graphic and return 136 units.set_resolution(resolution.first, resolution.second); 444 std::pair<double,double> resolution; local 453 resolution.first = _x_pixels; 454 resolution [all...] |
/inkscape/share/extensions/ |
H A D | gimp_xcf.py | 70 dest="resolution", default="96", 71 help="File resolution") 143 resolution = '--export-dpi=' + self.options.resolution 162 command = "inkscape -i \"%s\" -j %s %s -e \"%s\" %s %s" % (id, area, opacity, filename, svg_file, resolution) 210 (gimp-image-set-resolution img %s %s) 241 """ % (self.options.resolution, self.options.resolution, filelist, namelist, hGList, vGList, gridSpacingFunc, gridOriginFunc, xcf, xcf)
|
H A D | jessyInk_export.py | 73 self.OptionParser.add_option('--resolution', action = 'store', type = 'string', dest = 'resolution', default = '') 145 proc = subprocess.Popen([self.inkscapeCommand + " --file=" + svgFile + " --without-gui --export-dpi=" + str(self.options.resolution) + " --export-" + ext + "=" + outFile], shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
H A D | render_alphabetsoup.py | 367 resolution = 8 368 for i in range( 0, 18 * resolution ): 369 y = 1.0/resolution * (i + 0.5) * zoom
|
/inkscape/src/extension/internal/ |
H A D | cairo-renderer-pdf-out.cpp | 61 bool texttopath, bool omittext, bool filtertobitmap, int resolution, 99 ctx->setBitmapResolution(resolution); 176 new_bitmapResolution = mod->get_param_int("resolution"); 179 g_warning("Parameter <resolution> might not exist"); 256 "<param name=\"resolution\" gui-text=\"" N_("Resolution for rasterization (dpi):") "\" type=\"int\" min=\"1\" max=\"10000\">96</param>\n" 60 pdf_render_document_to_file(SPDocument *doc, gchar const *filename, unsigned int level, bool texttopath, bool omittext, bool filtertobitmap, int resolution, const gchar * const exportId, bool exportDrawing, bool exportCanvas, float bleedmargin_px) argument
|
H A D | cairo-ps-out.cpp | 69 bool filtertobitmap, int resolution, const gchar * const exportId, bool exportDrawing, bool exportCanvas, float bleedmargin_px, bool eps = false) 102 ctx->setBitmapResolution(resolution); 167 new_bitmapResolution = mod->get_param_int("resolution"); 256 new_bitmapResolution = mod->get_param_int("resolution"); 339 "<param name=\"resolution\" gui-text=\"" N_("Resolution for rasterization (dpi):") "\" type=\"int\" min=\"1\" max=\"10000\">96</param>\n" 381 "<param name=\"resolution\" gui-text=\"" N_("Resolution for rasterization (dpi):") "\" type=\"int\" min=\"1\" max=\"10000\">96</param>\n" 68 ps_print_document_to_file(SPDocument *doc, gchar const *filename, unsigned int level, bool texttopath, bool omittext, bool filtertobitmap, int resolution, const gchar * const exportId, bool exportDrawing, bool exportCanvas, float bleedmargin_px, bool eps = false) argument
|
H A D | cairo-render-context.h | 106 void setBitmapResolution(int resolution);
|
H A D | cairo-render-context.cpp | 451 void CairoRenderContext::setBitmapResolution(int resolution) argument 453 _bitmapresolution = resolution;
|
Completed in 879 milliseconds