Fix file path of cropped image
This commit is contained in:
parent
4a69e4e8d6
commit
95499d1130
|
@ -226,7 +226,7 @@ sub crop
|
||||||
my $oh = shift;
|
my $oh = shift;
|
||||||
|
|
||||||
my $cropped = $image;
|
my $cropped = $image;
|
||||||
$cropped =~ s#^.*/([^/]*)\.([^\.]+)$#$1-cropped.$2#;
|
$cropped =~ s#^.*/([^/]*)\.([^\.]+)$#$self->{'path'}$1-cropped.$2#;
|
||||||
|
|
||||||
#$image = "/tmp/Pharma-out.png.jpg";
|
#$image = "/tmp/Pharma-out.png.jpg";
|
||||||
use Image::Magick;
|
use Image::Magick;
|
||||||
|
@ -355,9 +355,9 @@ sub run
|
||||||
}
|
}
|
||||||
$self->set_background($target,$cropped);
|
$self->set_background($target,$cropped);
|
||||||
if ($self->{crop}) {
|
if ($self->{crop}) {
|
||||||
$self->do_log('LOG_DEBUG', "Deleting $cropped");
|
|
||||||
# Give swaybg a second, otherwise the file will be missing before it ends
|
# Give swaybg a second, otherwise the file will be missing before it ends
|
||||||
sleep(2);
|
sleep(1);
|
||||||
|
$self->do_log('LOG_DEBUG', "Deleting $cropped");
|
||||||
unlink($cropped) || $self->do_log("LOG_WARNING", "Failed to delete $cropped after setting: $!");
|
unlink($cropped) || $self->do_log("LOG_WARNING", "Failed to delete $cropped after setting: $!");
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in New Issue