I am trying to resize a picture, but on mouse up, the picture just moves to the new position without resizing.
<img id=image1
ngDraggable
mwlResizable
[enableGhostResize]="true"
[resizeEdges]="{bottom: true, right: true, top: true, left: true}"
(resizeEnd)="onResizeEnd($event)"
src="{{user.picture}}">
ponent.ts:
import { ResizeEvent } from "angular-resizable-element";
export class Component{
onResizeEnd(event: ResizeEvent): void {
console.log('Element was resized', event);
}
}
app.module:
...
import {ResizableModule} from "angular-resizable-element";
@NgModule({
declarations: [
AppComponent,
MainComponent
],
imports: [
BrowserModule,
HttpClientModule,
AngularDraggableModule,
ResizableModule
],
providers: [GetJsonService],
bootstrap: [AppComponent]
})
export class AppModule { }
I did everything by the book
I am trying to resize a picture, but on mouse up, the picture just moves to the new position without resizing.
<img id=image1
ngDraggable
mwlResizable
[enableGhostResize]="true"
[resizeEdges]="{bottom: true, right: true, top: true, left: true}"
(resizeEnd)="onResizeEnd($event)"
src="{{user.picture}}">
ponent.ts:
import { ResizeEvent } from "angular-resizable-element";
export class Component{
onResizeEnd(event: ResizeEvent): void {
console.log('Element was resized', event);
}
}
app.module:
...
import {ResizableModule} from "angular-resizable-element";
@NgModule({
declarations: [
AppComponent,
MainComponent
],
imports: [
BrowserModule,
HttpClientModule,
AngularDraggableModule,
ResizableModule
],
providers: [GetJsonService],
bootstrap: [AppComponent]
})
export class AppModule { }
I did everything by the book
Share Improve this question edited Apr 14, 2018 at 9:59 David Walschots 12.7k5 gold badges38 silver badges59 bronze badges asked Apr 13, 2018 at 15:59 Yarden SaadaYarden Saada 1361 silver badge4 bronze badges 2- 1 Please provide a MCVE. – Iavor Commented Apr 13, 2018 at 16:05
- 1 @lavor Just updated the question to more details – Yarden Saada Commented Apr 13, 2018 at 16:16
1 Answer
Reset to default 14In case its still useful for anyone. You need to apply width and height in onResizeEnd function:
Change ponent code to this:
import { ResizeEvent } from "angular-resizable-element";
export class Component{
style: {};
onResizeEnd(event: ResizeEvent): void {
this.style = {
width: `${event.rectangle.width}px`,
height: `${event.rectangle.height}px`
};
}
}
Change HTML code to this:
<img id=image1
ngDraggable
mwlResizable
[enableGhostResize]="true"
[resizeEdges]="{bottom: true, right: true, top: true, left: true}"
(resizeEnd)="onResizeEnd($event)"
src="{{user.picture}}" [ngStyle]="style">