Chilkat Examples

ChilkatHOME.NET Core C#Android™AutoItCC#C++Chilkat2-PythonCkPythonClassic ASPDataFlexDelphi ActiveXDelphi DLLGoJavaLianjaMono C#Node.jsObjective-CPHP ActiveXPHP ExtensionPerlPowerBuilderPowerShellPureBasicRubySQL ServerSwift 2Swift 3,4,5...TclUnicode CUnicode C++VB.NETVBScriptVisual Basic 6.0Visual FoxProXojo Plugin

Objective-C Web API Examples

Primary Categories

ABN AMRO
AWS Secrets Manager
AWS Security Token Service
AWS Translate
Activix CRM
Adyen
Alibaba Cloud OSS
Amazon Cognito
Amazon DynamoDB
Amazon MWS
Amazon Pay
Amazon Rekognition
Amazon SP-API
Amazon Voice ID
Aruba Fatturazione
Azure Maps
Azure Monitor
Azure OAuth2
Azure Storage Accounts
Backblaze S3
Banco Inter
Belgian eHealth Platform
Bitfinex v2 REST
Bluzone
BrickLink
Bunny CDN
CallRail
CardConnect
Cerved
ClickBank
Clickatell
Cloudfare
Constant Contact
DocuSign
Duo Auth MFA
ETrade
Ecwid
Egypt ITIDA
Egypt eReceipt
Etsy
Facebook
Faire
Frame.io
GeoOp
GetHarvest
Global Payments
Google People
Google Search Console
Google Translate
Google Vision
Hungary NAV Invoicing
IBM Text to Speech
Ibanity
IntakeQ
Jira
Lightspeed
MYOB
Magento
Mailgun

Mastercard
MedTunnel
MercadoLibre
MessageMedia
Microsoft Calendar
Microsoft Group
Microsoft Tasks and Plans
Microsoft Teams
Moody's
Okta OAuth/OIDC
OneLogin OIDC
OneNote
OpenAI ChatGPT
PRODA
PayPal
Paynow.pl
Peoplevox
Populi
QuickBooks
Rabobank
Refinitiv
Royal Mail OBA
SCiS Schools Catalogue
SII Chile
SMSAPI
SOAP finkok.com
SendGrid
Shippo
Shopify
Shopware
Shopware 6
SimpleTexting
Square
Stripe
SugarCRM
TicketBAI
Trello
Twilio
Twitter API v2
Twitter v1
UPS
UniPin
VoiceBase
Vonage
WaTrend
Walmart v3
Wasabi
WhatsApp
WiX
WooCommerce
WordPress
Xero
Yahoo Mail
Yapily
Yousign
ZATCA
Zendesk
Zoom
_Miscellaneous_
eBay
effectconnect
hacienda.go.cr

 

 

 

(Objective-C) Download Web Page to MHT and Extract Images (all in memory)

Downloads a web page to an MHT archive (in memory) and then extracts each image to a byte array in memory.

Chilkat Objective-C Library Downloads

MAC OS X (Cocoa) Libs

iOS Libs

#import <NSString.h>
#import <CkoMht.h>
#import <CkoEmail.h>
#import <CkoStringBuilder.h>

// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.

// Note: This URL exists at the time of writing and testing this example (on 12-June-2020)
// However, it will surely not continue to exist for very long.
// You should choose a different URL.  (Any web page with images will do.)
NSString *url = @"https://www.fendi.com/it/abbigliamento-uomo/cravatta-fxc160a3nwf0qg2";

CkoMht *mht = [[CkoMht alloc] init];

// Downloads to an MHT string.
// MHT is just MIME, which is the same format as an email but with different semantics.
NSString *mhtStr = [mht GetMHT: url];
if (mht.LastMethodSuccess == NO) {
    NSLog(@"%@",mht.LastErrorText);
    return;
}

// We can still treat the MHT MIME as an email and iterate over the "related items".
CkoEmail *email = [[CkoEmail alloc] init];
BOOL success = [email SetFromMimeText: mhtStr];
if (success == NO) {
    NSLog(@"%@",email.LastErrorText);
    return;
}

int numRelatedItems = [email.NumRelatedItems intValue];
int i = 0;
CkoStringBuilder *sbContentType = [[CkoStringBuilder alloc] init];
while (i < numRelatedItems) {
    [sbContentType SetString: [email GetRelatedContentType: [NSNumber numberWithInt: i]]];
    NSLog(@"%@%@",@"Content-Type: ",[sbContentType GetAsString]);

    if ([sbContentType StartsWith: @"image/" caseSensitive: NO] == YES) {
        // We have an image.
        // Get the image data.
        NSData imageData = [email GetRelatedData: [NSNumber numberWithInt: i]];

        // Do what you need with the image data..
    }

    i = i + 1;
}
 

© 2000-2024 Chilkat Software, Inc. All Rights Reserved.