mirror of
				https://github.com/imgproxy/imgproxy.git
				synced 2025-10-30 23:08:02 +02:00 
			
		
		
		
	expand => extend
This commit is contained in:
		| @@ -329,7 +329,7 @@ func transformImage(ctx context.Context, img *vipsImage, data []byte, po *proces | ||||
| 		} | ||||
| 	} | ||||
|  | ||||
| 	if po.Expand && (po.Width > img.Width() || po.Height > img.Height()) { | ||||
| 	if po.Extend && (po.Width > img.Width() || po.Height > img.Height()) { | ||||
| 		if err = img.Embed(gravityCenter, po.Width, po.Height, 0, 0, po.Background); err != nil { | ||||
| 			return err | ||||
| 		} | ||||
|   | ||||
| @@ -103,7 +103,7 @@ type processingOptions struct { | ||||
| 	Dpr        float64 | ||||
| 	Gravity    gravityOptions | ||||
| 	Enlarge    bool | ||||
| 	Expand     bool | ||||
| 	Extend     bool | ||||
| 	Crop       cropOptions | ||||
| 	Format     imageType | ||||
| 	Quality    int | ||||
| @@ -316,10 +316,10 @@ func applyEnlargeOption(po *processingOptions, args []string) error { | ||||
|  | ||||
| func applyExtendOption(po *processingOptions, args []string) error { | ||||
| 	if len(args) > 1 { | ||||
| 		return fmt.Errorf("Invalid expand arguments: %v", args) | ||||
| 		return fmt.Errorf("Invalid extend arguments: %v", args) | ||||
| 	} | ||||
|  | ||||
| 	po.Expand = args[0] != "0" | ||||
| 	po.Extend = args[0] != "0" | ||||
|  | ||||
| 	return nil | ||||
| } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user