Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Points in shape editor #555

Merged
merged 11 commits into from
Oct 4, 2024
8 changes: 5 additions & 3 deletions omero_figure/scripts/omero/figure_scripts/Figure_To_Pdf.py
Original file line number Diff line number Diff line change
Expand Up @@ -465,7 +465,7 @@ def draw_ellipse(self, shape):
cy = self.page_height - c['y']
rx = shape['radiusX'] * self.scale
ry = shape['radiusY'] * self.scale
rotation = (shape['rotation'] + self.panel['rotation']) * -1
rotation = (shape.get('rotation', 0) + self.panel['rotation']) * -1
r, g, b, a = self.get_rgba(shape['strokeColor'])
self.canvas.setStrokeColorRGB(r, g, b, alpha=a)

Expand Down Expand Up @@ -761,7 +761,7 @@ def draw_ellipse(self, shape):
cy = ctr['y']
rx = self.scale * shape['radiusX']
ry = self.scale * shape['radiusY']
rotation = (shape['rotation'] + self.panel['rotation']) * -1
rotation = (shape.get('rotation', 0) + self.panel['rotation']) * -1

width = int((rx * 2) + w)
height = int((ry * 2) + w)
Expand All @@ -772,7 +772,9 @@ def draw_ellipse(self, shape):
rgba = ShapeToPdfExport.get_rgba_int(shape['strokeColor'])
ellipse_draw.ellipse((0, 0, width, height), fill=rgba)
rgba = self.get_rgba_int(shape.get('fillColor', '#00000000'))
ellipse_draw.ellipse((w, w, width - w, height - w), fill=rgba)
# when rx is ~zero (for a Point, scaled down) don't need inner ellipse
if (width - w) >= w:
ellipse_draw.ellipse((w, w, width - w, height - w), fill=rgba)
temp_ellipse = temp_ellipse.rotate(rotation, resample=Image.BICUBIC,
expand=True)
# Use ellipse as mask, so transparent part is not pasted
Expand Down
4 changes: 4 additions & 0 deletions src/css/figure.css
Original file line number Diff line number Diff line change
Expand Up @@ -1259,6 +1259,10 @@
.ellipse-icon{
background-image: url("../images/ellipse-icon-16.png");
}
.point-icon{
background-image: url("../images/point-icon-24.png");
background-position: center;
}
.polygon-icon{
background-image: url("../images/polygon-icon-16.png");
}
Expand Down
Binary file added src/images/point-icon-24.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions src/js/shapeEditorTest.js
Original file line number Diff line number Diff line change
Expand Up @@ -247,6 +247,11 @@ $(function() {
"y": 260.5,
"x": 419});

shapeManager.addShapeJson({"type": "Point",
"strokeWidth": 2,
"y": 30,
"x": 30});

var s = shapeManager.addShapeJson({"type": "Line",
"strokeColor": "#00ff00",
"strokeWidth": 2,
Expand Down
Loading