Searched defs:ydpi (Results 1 - 4 of 4) sorted by relevance

/inkscape/src/helper/
H A Dpixbuf-ops.cpp69 unsigned width, unsigned height, double xdpi, double ydpi,
74 width, height, xdpi, ydpi, bgcolor, items));
93 @param ydpi
98 unsigned width, unsigned height, double xdpi, double ydpi,
123 Geom::Scale scale(Inkscape::Util::Quantity::convert(xdpi, "px", "in"), Inkscape::Util::Quantity::convert(ydpi, "px", "in"));
67 sp_export_jpg_file(SPDocument *doc, gchar const *filename, double x0, double y0, double x1, double y1, unsigned width, unsigned height, double xdpi, double ydpi, unsigned long bgcolor, double quality,GSList *items) argument
96 sp_generate_internal_bitmap(SPDocument *doc, gchar const * , double x0, double y0, double x1, double y1, unsigned width, unsigned height, double xdpi, double ydpi, unsigned long , GSList *items_only) argument
H A Dpng-write.cpp127 gchar const *filename, unsigned long int width, unsigned long int height, double xdpi, double ydpi,
253 png_set_pHYs(png_ptr, info_ptr, unsigned(xdpi / 0.0254 + 0.5), unsigned(ydpi / 0.0254 + 0.5), PNG_RESOLUTION_METER);
386 unsigned long int width, unsigned long int height, double xdpi, double ydpi,
393 width, height, xdpi, ydpi, bgcolor, status, data, force_overwrite, items_only);
398 unsigned long width, unsigned long height, double xdpi, double ydpi,
473 write_status = sp_png_write_rgba_striped(doc, filename, width, height, xdpi, ydpi, sp_export_get_rows, &ebp);
126 sp_png_write_rgba_striped(SPDocument *doc, gchar const *filename, unsigned long int width, unsigned long int height, double xdpi, double ydpi, int (* get_rows)(guchar const **rows, void **to_free, int row, int num_rows, void *data), void *data) argument
384 sp_export_png_file(SPDocument *doc, gchar const *filename, double x0, double y0, double x1, double y1, unsigned long int width, unsigned long int height, double xdpi, double ydpi, unsigned long bgcolor, unsigned int (*status) (float, void *), void *data, bool force_overwrite, const std::vector<SPItem*> &items_only) argument
396 sp_export_png_file(SPDocument *doc, gchar const *filename, Geom::Rect const &area, unsigned long width, unsigned long height, double xdpi, double ydpi, unsigned long bgcolor, unsigned (*status)(float, void *), void *data, bool force_overwrite, const std::vector<SPItem*> &items_only) argument
/inkscape/src/ui/dialog/
H A Dexport.cpp300 * There's no way to set ydpi currently, so we use the defaultxdpi value here, too...
302 ydpi_adj = createSpinbutton ( "ydpi", prefs->getDouble("/dialogs/export/defaultxdpi/value", DPI_BASE),
799 float xdpi = 0.0, ydpi = 0.0; local
805 sp_document_get_export_hints (doc, filename, &xdpi, &ydpi);
817 sp_selection_get_export_hints (SP_ACTIVE_DESKTOP->getSelection(), filename, &xdpi, &ydpi);
854 if (FALSE && ydpi != 0.0) {
855 setValue(ydpi_adj, ydpi);
1051 const gchar *dpi_hint = item->getRepr()->attribute("inkscape:export-xdpi"); // only xdpi, ydpi is always the same now
1119 float const ydpi = getValue(ydpi_adj); local
1164 Geom::Rect(Geom::Point(x0, y0), Geom::Point(x1, y1)), width, height, xdpi, ydpi,
1573 float y0, y1, ydpi, height; local
1651 float ydpi = getValue(ydpi_adj); local
[all...]
/inkscape/src/
H A Dselection-chemistry.cpp3469 void sp_selection_get_export_hints(Inkscape::Selection *selection, Glib::ustring &filename, float *xdpi, float *ydpi) argument
3504 dpi_string = repr->attribute("inkscape:export-ydpi");
3506 *ydpi = atof(dpi_string);
3513 void sp_document_get_export_hints(SPDocument *doc, Glib::ustring &filename, float *xdpi, float *ydpi) argument
3531 dpi_string = repr->attribute("inkscape:export-ydpi");
3533 *ydpi = atof(dpi_string);

Completed in 35 milliseconds