पैकेज के लिए आवश्यक आयात विवरण जोड़ें 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
पैकेज का उपयोग करके छवि को क्रॉप करेगा। क्रॉप की गई छवि को एप्लिकेशन की दस्तावेज़ निर्देशिका में कस्टम फ़ाइल नाम के साथ एक नई पीएनजी छवि फ़ाइल के रूप में सहेजा जाएगा। आपके संदर्भ के लिए फ़ाइल पथ कंसोल में मुद्रित किया जाएगा।
फिर, फ़ाइलों और छवियों के साथ काम करते समय उचित त्रुटि प्रबंधन का उपयोग करना और शून्य मानों की जांच करना याद रखें।