중앙에 있는 이미지를 자르는 방법 Flutter- 간단한 가이드

패키지 에 필요한 가져오기 문을 추가합니다 image.

import 'dart:io';  
import 'package:image/image.dart' as img;  
import 'package:path_provider/path_provider.dart';  

중앙 이미지를 자르고 저장하는 기능을 만듭니다.

Future<void> cropAndSaveCenteredImage(String imagePath, double cropWidth, double cropHeight, String fileName) async {  
  // Read the image from the file path  
  File imageFile = File(imagePath);  
  List<int> imageBytes = await imageFile.readAsBytes();  
  img.Image image = img.decodeImage(imageBytes);  
  
  // Calculate the center position for cropping  
  int centerX = image.width ~/ 2;  
  int centerY = image.height ~/ 2;  
  
  // Calculate the crop rectangle based on the center position  
  int cropX =(centerX- cropWidth ~/ 2).clamp(0, image.width);  
  int cropY =(centerY- cropHeight ~/ 2).clamp(0, image.height);  
  
  // Crop the image  
  img.Image croppedImage = img.copyCrop(image, cropX, cropY, cropWidth.toInt(), cropHeight.toInt());  
  
  // Get the document directory to save the image  
  Directory directory = await getApplicationDocumentsDirectory();  
  String filePath = '${directory.path}/$fileName.png';  
  
  // Save the image to file  
  File file = File(filePath);  
  await file.writeAsBytes(img.encodePng(croppedImage));  
  
  // Display the file path  
  print('Image saved to: $filePath');  
}  

이미지 파일 경로, 자르기 너비, 자르기 높이 및 원하는 파일 이름을 사용하여 함수를 호출합니다.

void main() async {  
  // Replace 'image_path.png' with the actual path of your image file  
  String imagePath = 'image_path.png';  
  
  // Define the desired crop width and height  
  double cropWidth = 200.0;  
  double cropHeight = 200.0;  
  
  // Define the desired filename(without the extension)  
  String fileName = 'cropped_image';  
  
  // Crop and save the centered image with the specified filename  
  await cropAndSaveCenteredImage(imagePath, cropWidth, cropHeight, fileName);  
}  

'image_path.png' 이미지 파일의 실제 경로로 바꾸십시오. 이 코드는 이미지를 읽고 중심 위치를 계산하고 주변에 자르기 사각형을 만든 다음 패키지를 사용하여 이미지를 자릅니다 image. 자른 이미지는 응용 프로그램의 문서 디렉토리에 사용자 지정 파일 이름을 가진 새 PNG 이미지 파일로 저장됩니다. 파일 경로는 참조용으로 콘솔에 인쇄됩니다.

다시 말하지만 파일 및 이미지로 작업할 때 적절한 오류 처리를 사용하고 null 값을 확인해야 합니다.