summaryrefslogtreecommitdiffstats
path: root/src/sp-image.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* changes_2013_05_22a.patch:David Mathog2013-06-191-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | 1. Resolves issue of bug #988601 message 170 (Support of 'Unset' styles in EMF export). 2. Implements CSS 3 (and CSS 2) text-decoration support. Note that it does not yet provide any method of adding these features - at present it just shows whatever is in the SVG. This new code is also used to display EMF/WMF strike-through and underline text decorations when these files are read in. Those decorations may also be written out to EMF/WMF. Other text decoration features, like overline, or dotted lines, are dropped. For SVG text-decoration -line, -style, -color are all implemented. CSS3 provides two ways to represent the same state, this code uses the compound text-decoration method rather than the 3 fields method. Also it leaves out keywords that are not needed and would break backwards compatibility. For instance: text-decoration: underline solid is valid, but would break CSS2. Solid is the default, so that sort of case is written as: text-decoration: underline If the state is CSS3 specific all of the needed fields are of course include, like text-decoration: underline wavy red 3. It incorporates the fix for bug 1181326 (Text edit mishandles span of just colored spaces) 4. It incorporates further changes to text editing so that style can be changed on spans consisting of only spaces when text decorations are present in the span. 5. It incorporates code to disable text decorations when text so marked is mapped onto a path. 6. Fixed more bugs in Hebrew language support than I can remember. Hebrew language export/import to EMF now works quite well. (See the examples in libTERE v 0.7.) WMF does not support unicode and for all intents and purposes Inkscape has no way to read or write Hebrew to it. Some of more important things that now work that didn't (or didn't always): Hebrew diacritical marks, R/L/center justification, and bidirectional text. The Hebrew fonts "Ezra SIL" and "EZRA SIL SR" should be installed before viewing the libTERE examples, otherwise font substitutions will cause some text shifts. 7. Implemented font failover in Text Reassemble, which makes the process more robust. (Again, see the examples in libTERE. ) (bzr r11668.1.71)
* Fix for 871563 : JPG images are recompressed with lower quality when embeddedJohn Smith2013-05-111-2/+6
| | | (bzr r12325)
* Checking file presence before calling lstat (should fix Bug #785701 Inkscape ↵Kris De Gussem2013-04-031-6/+13
| | | | | freezes at opening) (bzr r12263)
* Clean up more GObject type definitionsAlex Valavanis2013-01-231-43/+15
| | | (bzr r12055)
* Warning and dead code cleanup.Jon A. Cruz2013-01-111-12/+0
| | | (bzr r12014)
* Fix for Bug #768149 (Incorrect Image URL can cause Loop) by Kris.Nicolas Dufour2012-11-201-36/+8
| | | (bzr r11885)
* code cleanup: add own includes to cpp files or make the functions static if ↵Campbell Barton2012-10-041-4/+4
| | | | | they are not used elsewhere. (bzr r11735)
* Fix for 367607 : Remove deprecated GTK+ symbols - Deprecated *_unref symbols ↵John Smith2012-04-021-3/+3
| | | | | replaced with g_object_unref (bzr r11139)
* Enable LCMS2 for other than OSX, where it still has some issues. Fixes bug ↵Jon A. Cruz2012-02-131-15/+21
| | | | | | | | #885324. Fixed bugs: - https://launchpad.net/bugs/885324 (bzr r10969)
* Warning and uninitialized variable cleanup.Jon A. Cruz2012-01-081-8/+3
| | | (bzr r10860)
* Warning cleanup.Jon A. Cruz2011-10-021-1/+1
| | | (bzr r10655)
* Remove NRRect use from the extension systemKrzysztof Kosi??ski2011-08-271-2/+2
| | | (bzr r10582.1.2)
* Refactor SPItem bounding box methods: remove NRRect usage and make codeKrzysztof Kosi??ski2011-08-271-15/+8
| | | | | using them more obvious. Fix filter region computation. (bzr r10582.1.1)
* Merge rendering cache branch (GSoC 2011)Krzysztof Kosi??ski2011-08-251-14/+15
|\ | | | | (bzr r10579)
| * Rewrite NRArena -> Inkscape::Drawing. Call render and updateKrzysztof Kosi??ski2011-08-071-3/+3
| | | | | | | | | | methods on the Drawing rather than on the root DrawingItem. (bzr r10347.1.25)
| * Rewrite NRArenaItem hierarchy into C++Krzysztof Kosi??ski2011-08-061-14/+15
| | | | | | (bzr r10347.1.21)
* | Refactoring of the snapping preferences; mainly about storing all toggles in ↵Diederik van Lierop2011-08-221-12/+14
|/ | | | | a single array, instead of each having its own member variable (bzr r10569)
* - rename SPItem::i2d_affine to i2dt_affine, to clarify that it is ↵Johan B. C. Engelen2011-07-171-1/+1
| | | | | | | item-to-desktop, not item-to-document. This should make it easier to spot bugs. - tag some instances where the document-to-desktop transform has been hardcoded (bzr r10466)
* Cleanup of oudated/redundant SP_ITEM() macro use.Jon A. Cruz2011-07-161-3/+2
| | | (bzr r10461)
* Merge from trunk to pull in fix for LP #806105Krzysztof Kosi??ski2011-07-131-4/+5
|\ | | | | (bzr r10347.1.13)
| * Refactored to abstract lcms usage more. Added CMSSystem class.Jon A. Cruz2011-07-101-5/+5
| | | | | | (bzr r10437)
| * Next step in refactoring color management. More to come.Jon A. Cruz2011-07-091-0/+1
| | | | | | (bzr r10429)
* | Remove more of libnrKrzysztof Kosi??ski2011-06-231-1/+2
|/ | | (bzr r10347.1.2)
* Merge from trunkKrzysztof Kosi??ski2011-06-191-45/+26
|\ | | | | (bzr r9508.1.89)
| * Merge gtk header cleanup by Alex Valavanis. Fixes bug #709847, bug #747512, ↵Jon A. Cruz2011-06-041-1/+1
| | | | | | | | | | | | | | | | | | | | bug #792263. Fixed bugs: - https://launchpad.net/bugs/709847 - https://launchpad.net/bugs/747512 - https://launchpad.net/bugs/792263 (bzr r10255)
| * Adding initial cut of resource manager.Jon A. Cruz2011-05-061-45/+26
| | | | | | (bzr r10198)
* | Merge from trunkKrzysztof Kosi??ski2011-04-071-19/+23
|\| | | | | (bzr r9508.1.73)
| * Conditional code to handle data change in libpng > 1.5. Fixes bug #721029.Jon A. Cruz2011-02-211-2/+6
| | | | | | | | | | | | Fixed bugs: - https://launchpad.net/bugs/721029 (bzr r10061)
| * Finished cleanup of outated SP_OBJECT_DOCUMENT C macro.Jon A. Cruz2011-02-211-9/+9
| | | | | | (bzr r10060)
| * update to latest 2geom !Johan B. C. Engelen2011-02-021-8/+8
| | | | | | (bzr r10025)
* | Merge from trunk (again)Krzysztof Kosi??ski2010-12-151-16/+23
|\| | | | | (bzr r9508.1.72)
| * Merge and cleanup of GSoC C++-ification project.Jon A. Cruz2010-12-121-16/+23
| |\ | | | | | | (bzr r9945.1.1)
| | * SPObject c++ification finalized along with the beginning of XML ↵Abhishek Sharma Public2010-07-121-7/+7
| | | | | | | | | | | | | | | Privatisation tweaks (bzr r9546.1.6)
| | * C++ification of SPObject continued along with the onset of XML ↵Abhishek Sharma Public2010-07-061-3/+9
| | | | | | | | | | | | | | | Privatisation. Users may checkout [grep -Ir XML Tree *] in the source code and all the places where the XML node/Tree is being used shall be reflected. (bzr r9546.1.5)
| | * C++fied SPDocument addedAbhishek Sharma Public2010-07-011-2/+2
| | | | | | | | | (bzr r9546.1.2)
| | * This is the first c++ification commit from me. It handles sp-line, ↵Abhishek Sharma Public2010-06-291-3/+3
| |/ | | | | | | | | sp-polyline, sp-item and marks the onset of document c++ification as well. Users can check performace increase with [/usr/bin/time -v inkscape_binary_with_commandline_options]. (bzr r9546.1.1)
* | Fix performance regression when displaying large imagesKrzysztof Kosi??ski2010-08-091-6/+12
| | | | | | (bzr r9508.1.54)
* | Wholesale cruft removal part 2Krzysztof Kosi??ski2010-08-041-14/+5
| | | | | | (bzr r9508.1.45)
* | Handle preserveAspectRatio for imagesKrzysztof Kosi??ski2010-08-031-117/+72
| | | | | | (bzr r9508.1.41)
* | Fix iconsKrzysztof Kosi??ski2010-06-291-10/+6
| | | | | | (bzr r9508.1.7)
* | Bitmap image renderingKrzysztof Kosi??ski2010-06-291-5/+10
|/ | | (bzr r9508.1.6)
* Fix snapping regression introduced by rev. #9118Diederik van Lierop2010-04-221-1/+1
| | | | | | Fixed bugs: - https://launchpad.net/bugs/562205 (bzr r9364)
* Fix loading of non-PNG images.Jon A. Cruz2010-03-171-6/+3
| | | (bzr r9197)
* Follow-on cleanup for bug #271401. Isolates setjmp(), removes early return, ↵Jon A. Cruz2010-03-171-184/+176
| | | | | | | | and allows partial loading of broken PNG images. Fixed bugs: - https://launchpad.net/bugs/271401 (bzr r9196)
* Always embed bitmap copies created with Alt+B.Krzysztof Kosi??ski2010-03-051-0/+34
| | | | | | Fixed bugs: - https://launchpad.net/bugs/169108 (bzr r9144)
* Fix crash when trying to import a corrupted PNG file.Krzysztof Kosi??ski2010-01-311-0/+10
| | | | | | Fixed bugs: - https://launchpad.net/bugs/271401 (bzr r9040)
* Refactoring the snapping API (making it easier to maintain and understand ↵Diederik van Lierop2010-01-091-9/+7
| | | | | for the devs) (bzr r8960)
* disable debug messagesbuliabyak2009-12-161-1/+1
| | | (bzr r8892)
* enabling all icc-color related debug messagesFelipe Corr??a da Silva Sanches2009-08-011-2/+9
| | | (bzr r8050.1.5)
* Bitmap images with filters are now updated as the filter is modifiedNiko Kiirala2009-05-171-0/+18
| | | (bzr r7891)