- Timestamp:
- 2013-04-06T15:07:36+02:00 (12 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/tools
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/tools/ImageProvider.java
r5762 r5830 867 867 width = (int) Math.round(realWidth * scaleX); 868 868 } 869 if (width == 0 || height == 0) { 870 return null; 871 } 869 872 BufferedImage img = new BufferedImage(width, height, BufferedImage.TYPE_INT_ARGB); 870 873 Graphics2D g = img.createGraphics(); -
trunk/src/org/openstreetmap/josm/tools/ImageResource.java
r4961 r5830 55 55 if (svg != null) { 56 56 img = ImageProvider.createImageFromSvg(svg, dim); 57 if (img == null) { 58 return null; 59 } 57 60 imgCache.put(dim, img); 58 61 return new ImageIcon(img);
Note:
See TracChangeset
for help on using the changeset viewer.