Τρόπος περικοπής εικόνων στο κέντρο 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 με το προσαρμοσμένο όνομα αρχείου στον κατάλογο εγγράφων της εφαρμογής. Η διαδρομή του αρχείου θα εκτυπωθεί στην κονσόλα για αναφορά.

Και πάλι, θυμηθείτε να χρησιμοποιήσετε τον κατάλληλο χειρισμό σφαλμάτων και να ελέγξετε για μηδενικές τιμές όταν εργάζεστε με αρχεία και εικόνες.