mirror of
				https://github.com/imgproxy/imgproxy.git
				synced 2025-10-30 23:08:02 +02:00 
			
		
		
		
	
		
			
				
	
	
		
			30 lines
		
	
	
		
			682 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			682 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package processing
 | |
| 
 | |
| import (
 | |
| 	"github.com/imgproxy/imgproxy/v3/imagedata"
 | |
| 	"github.com/imgproxy/imgproxy/v3/options"
 | |
| 	"github.com/imgproxy/imgproxy/v3/vips"
 | |
| )
 | |
| 
 | |
| func trim(pctx *pipelineContext, img *vips.Image, po *options.ProcessingOptions, imgdata *imagedata.ImageData) error {
 | |
| 	if !po.Trim.Enabled {
 | |
| 		return nil
 | |
| 	}
 | |
| 
 | |
| 	// We need to import color profile before trim
 | |
| 	if err := importColorProfile(pctx, img, po, imgdata); err != nil {
 | |
| 		return err
 | |
| 	}
 | |
| 
 | |
| 	if err := img.Trim(po.Trim.Threshold, po.Trim.Smart, po.Trim.Color, po.Trim.EqualHor, po.Trim.EqualVer); err != nil {
 | |
| 		return err
 | |
| 	}
 | |
| 	if err := img.CopyMemory(); err != nil {
 | |
| 		return err
 | |
| 	}
 | |
| 
 | |
| 	pctx.trimmed = true
 | |
| 
 | |
| 	return nil
 | |
| }
 |