这是基于vue-vben-admin 模板适用于abp Vnext的前端管理项目
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

1.1 KiB

LINGYUN.Abp.OssManagement.Imaging

Object Storage Management Image Processing Module

Features

  • Provides basic image processing functionality for object storage
  • Supports image format conversion
  • Supports image resizing and cropping
  • Supports watermark addition
  • Supports image quality adjustment
  • Supports image metadata processing

Configuration

Module reference as needed:

[DependsOn(typeof(AbpOssManagementImagingModule))]
public class YouProjectModule : AbpModule
{
    // other
}

Image Processing Features

Supports the following image processing operations:

  • resize: Adjust image size
  • crop: Crop image
  • rotate: Rotate image
  • watermark: Add watermark
  • format: Convert image format
  • quality: Adjust image quality

Usage Example

Image processing parameters are passed through URL query string:

http://your-domain/api/oss-management/objects/my-image.jpg?process=image/resize,w_100,h_100/watermark,text_Hello
  • LINGYUN.Abp.OssManagement.ImageSharp: Provides ImageSharp-based implementation